├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ └── nodejs.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── Dockerfile ├── Procfile ├── README.md ├── additional-documentation └── summary.json ├── apps ├── .gitkeep └── server │ ├── .eslintrc.json │ ├── data-containers │ ├── README.md │ ├── acl-action.json │ ├── acl-possession.json │ ├── acl-resource.json │ ├── acl-role.json │ ├── acl.json │ ├── experiment.json │ ├── experiment_cvep.json │ ├── experiment_cvep_output.json │ ├── experiment_erp.json │ ├── experiment_erp_output.json │ ├── experiment_erp_output_dependency.json │ ├── experiment_fvep.json │ ├── experiment_fvep_output.json │ ├── experiment_rea.json │ ├── experiment_rea_output.json │ ├── experiment_result.json │ ├── experiment_stop_condition.json │ ├── experiment_tvep.json │ ├── experiment_tvep_output.json │ ├── group.json │ ├── refresh_token.json │ ├── sequence.json │ └── user.json │ ├── environments │ ├── dev.env │ ├── overrides │ │ ├── heroku.env │ │ └── rpi.env │ ├── production.env │ └── qa.env │ ├── ipc-client.js │ ├── jest.config.js │ ├── project.json │ ├── schemas │ ├── experiment-cvep.json │ ├── experiment-erp.json │ ├── experiment-fvep.json │ ├── experiment-rea.json │ ├── experiment-result.json │ ├── experiment-tvep.json │ └── sequence.json │ ├── src │ ├── app │ │ ├── .gitkeep │ │ ├── app.module.ts │ │ ├── class-validator-exception.factory.ts │ │ ├── cors.middleware.ts │ │ ├── empty.module.ts │ │ ├── error.middleware.ts │ │ ├── middleware │ │ │ └── http-logger.middleware.ts │ │ ├── migrations │ │ │ └── 1624546147368-Initialization.ts │ │ └── schema.specs.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ └── main.ts │ ├── test │ ├── commands │ │ └── commands.e2e-old-spec.ts │ ├── experiment-results │ │ └── experiment-results.e2e-old-spec.ts │ ├── experiments │ │ └── experiments.e2e-old-spec.ts │ ├── helpers │ │ ├── auth.ts │ │ ├── cookie-extractor.ts │ │ ├── experiment-result.ts │ │ ├── experiments.ts │ │ ├── functions.ts │ │ ├── index.ts │ │ ├── matchers │ │ │ ├── experiment-output-type.matcher.ts │ │ │ ├── experiment-output.matcher.ts │ │ │ ├── experiment-result-type.matcher.ts │ │ │ ├── experiment-result.matcher.ts │ │ │ ├── experiment-type.matcher.ts │ │ │ ├── experiment.matcher.ts │ │ │ ├── index.ts │ │ │ ├── predicates │ │ │ │ ├── acl.predicate.ts │ │ │ │ ├── index.ts │ │ │ │ ├── predicate.ts │ │ │ │ ├── standard.predicate.ts │ │ │ │ ├── tags.predicate.ts │ │ │ │ ├── used-outputs.predicate.ts │ │ │ │ └── user-groups.perdicate.ts │ │ │ ├── sequence-type.matcher.ts │ │ │ ├── sequence.matcher.ts │ │ │ ├── stimulator-state-data.matcher.ts │ │ │ ├── transforms │ │ │ │ ├── index.ts │ │ │ │ └── transform.ts │ │ │ ├── user-type.matcher.ts │ │ │ └── user.matcher.ts │ │ ├── player.ts │ │ ├── serial.ts │ │ └── stimulator.ts │ ├── jest │ │ ├── call_setup.js │ │ └── jest.setup.ts │ ├── modified-jest.types.d.ts │ ├── resources │ │ ├── acl-action.json │ │ ├── acl-possession.json │ │ ├── acl-resource.json │ │ ├── acl-role.json │ │ ├── acl.json │ │ ├── auth │ │ │ ├── group.json │ │ │ └── user.json │ │ ├── experiment.json │ │ ├── experiment_cvep.json │ │ ├── experiment_cvep_output.json │ │ ├── experiment_erp.json │ │ ├── experiment_erp_output.json │ │ ├── experiment_erp_output_dependency.json │ │ ├── experiment_fvep.json │ │ ├── experiment_fvep_output.json │ │ ├── experiment_rea.json │ │ ├── experiment_rea_output.json │ │ ├── experiment_stop_condition.json │ │ ├── experiment_tvep.json │ │ ├── experiment_tvep_output.json │ │ ├── experiments │ │ │ ├── cvep │ │ │ │ ├── experiment.json │ │ │ │ ├── experiment_cvep.json │ │ │ │ └── experiment_cvep_output.json │ │ │ ├── erp │ │ │ │ ├── experiment.json │ │ │ │ ├── experiment_erp.json │ │ │ │ └── experiment_erp_output.json │ │ │ ├── fvep │ │ │ │ ├── experiment.json │ │ │ │ ├── experiment_fvep.json │ │ │ │ └── experiment_fvep_output.json │ │ │ ├── rea │ │ │ │ ├── experiment.json │ │ │ │ ├── experiment_rea.json │ │ │ │ └── experiment_rea_output.json │ │ │ └── tvep │ │ │ │ ├── experiment.json │ │ │ │ ├── experiment_tvep.json │ │ │ │ └── experiment_tvep_output.json │ │ ├── group.json │ │ ├── player │ │ │ └── experiment_stop_condition.json │ │ ├── refresh_token.json │ │ ├── sequence.json │ │ ├── user.json │ │ └── users │ │ │ ├── group.json │ │ │ └── user.json │ ├── set-environment.ts │ ├── setup-configuration.ts │ ├── setup.ts │ ├── src │ │ ├── auth │ │ │ ├── auth.e2e-spec.ts │ │ │ └── config.json │ │ ├── config.json │ │ ├── experiments │ │ │ ├── config.json │ │ │ ├── cvep │ │ │ │ ├── config.json │ │ │ │ └── experiment-cvep.e2e-spec.ts │ │ │ ├── erp │ │ │ │ ├── config.json │ │ │ │ └── experiment-erp.e2e-spec.ts │ │ │ ├── experiments.e2e-spec.ts │ │ │ ├── fvep │ │ │ │ ├── config.json │ │ │ │ └── experiment-fvep.e2e-spec.ts │ │ │ ├── rea │ │ │ │ ├── config.json │ │ │ │ └── experiment-rea.e2e-spec.ts │ │ │ └── tvep │ │ │ │ ├── config.json │ │ │ │ └── experiment-tvep.e2e-spec.ts │ │ ├── player │ │ │ ├── config.json │ │ │ ├── player.e2e-spec.ts │ │ │ └── prepare.config.json │ │ ├── seed │ │ │ └── seed.e2e-tmp-spec.ts │ │ ├── sequences │ │ │ ├── config.json │ │ │ └── sequences.e2e-spec.ts │ │ ├── serial │ │ │ ├── config.json │ │ │ └── serial.e2e-spec.ts │ │ ├── server.e2e-spec.ts │ │ ├── stimulator │ │ │ ├── config.json │ │ │ └── stimulator.e2e-spec.ts │ │ ├── triggers │ │ │ └── triggers.e2e-spec.ts │ │ └── users │ │ │ ├── config.json │ │ │ └── users.e2e-spec.ts │ └── test-helpers.ts │ ├── triggers │ ├── 001_erp_output_insert.trigger.sql │ ├── 002_erp_output_delete.trigger.sql │ ├── 003_erp_experiment_update.trigger.sql │ ├── 011_tvep_output_insert.trigger.sql │ ├── 012_tvep_output_delete.trigger.sql │ ├── 013_tvep_experiment_update.trigger.sql │ ├── 021_fvep_output_insert.trigger.sql │ ├── 022_fvep_output_delete.trigger.sql │ ├── 023_fvep_experiment_update.trigger.sql │ ├── 031_cvep_output_insert.trigger.sql │ ├── 032_cvep_output_delete.trigger.sql │ ├── 033_cvep_experiment_update.trigger.sql │ ├── 041_rea_output_insert.trigger.sql │ ├── 042_rea_output_delete.trigger.sql │ ├── 043_rea_experiment_update.trigger.sql │ ├── 044_rea_experiment_delete.trigger.sql │ ├── 100_user_insert.trigger.sql │ ├── 111_experiment_insert.trigger.sql │ ├── 121_sequence_insert.trigger.sql │ └── 131_experiment_result_insert.trigger.sql │ ├── tsconfig.app.json │ ├── tsconfig.doc.json │ ├── tsconfig.json │ ├── tsconfig.migrations.json │ └── tsconfig.spec.json ├── jest.config.js ├── jest.preset.js ├── jest ├── call_setup.js └── jest.setup.ts ├── libs ├── .gitkeep ├── stim-feature-acl │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── command │ │ │ │ ├── handlers │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── acl-insert.handler.spec.ts │ │ │ │ │ ├── acl-insert.handler.ts │ │ │ │ │ ├── acl-reload.handler.spec.ts │ │ │ │ │ └── acl-reload.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── acl-delete.command.ts │ │ │ │ │ ├── acl-insert.command.ts │ │ │ │ │ ├── acl-reload.command.ts │ │ │ │ │ └── acl-update.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── acl-application-ready.handler.spec.ts │ │ │ │ │ ├── acl-application-ready.handler.ts │ │ │ │ │ ├── acl-seed-repository.handler.spec.ts │ │ │ │ │ └── acl-seed-repository.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── acl-was-created.event.ts │ │ │ │ │ ├── acl-was-deleted.event.ts │ │ │ │ │ └── acl-was-updated.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── guard │ │ │ │ ├── acl.guard.spec.ts │ │ │ │ ├── acl.guard.ts │ │ │ │ └── index.ts │ │ │ │ ├── query │ │ │ │ ├── handlers │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── get-acl-by-role.handler.spec.ts │ │ │ │ │ ├── get-acl-by-role.handler.ts │ │ │ │ │ ├── get-all-acl-actions.handler.spec.ts │ │ │ │ │ ├── get-all-acl-actions.handler.ts │ │ │ │ │ ├── get-all-acl-possessions.handler.spec.ts │ │ │ │ │ ├── get-all-acl-possessions.handler.ts │ │ │ │ │ ├── get-all-acl-resources.handler.spec.ts │ │ │ │ │ ├── get-all-acl-resources.handler.ts │ │ │ │ │ ├── get-all-acl-roles.handler.spec.ts │ │ │ │ │ ├── get-all-acl-roles.handler.ts │ │ │ │ │ ├── get-all-acl.handler.spec.ts │ │ │ │ │ ├── get-all-acl.handler.ts │ │ │ │ │ ├── get-default-roles.handler.spec.ts │ │ │ │ │ └── get-default-roles.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── get-acl-by-role.query.ts │ │ │ │ │ ├── get-all-acl-actions.query.ts │ │ │ │ │ ├── get-all-acl-possessions.query.ts │ │ │ │ │ ├── get-all-acl-resources.query.ts │ │ │ │ │ ├── get-all-acl-roles.query.ts │ │ │ │ │ ├── get-all-acl.query.ts │ │ │ │ │ └── get-default-roles.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── saga │ │ │ │ └── index.ts │ │ │ │ ├── service │ │ │ │ ├── acl.service.jest.ts │ │ │ │ ├── acl.service.spec.ts │ │ │ │ ├── acl.service.ts │ │ │ │ └── repository-providers.jest.ts │ │ │ │ ├── stim-feature-acl-application-core.module.ts │ │ │ │ └── stim-feature-acl-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── config │ │ │ │ ├── acl.config-constants.ts │ │ │ │ ├── acl.config-descriptor.ts │ │ │ │ ├── acl.config-factory.ts │ │ │ │ └── index.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── decorator │ │ │ │ └── use-acl.decorator.ts │ │ │ │ ├── exception │ │ │ │ ├── .gitkeep │ │ │ │ ├── acl-id-not-found.exception.ts │ │ │ │ ├── acl-not-created.exception.ts │ │ │ │ ├── acl-not-deleted.exception.ts │ │ │ │ ├── acl-not-updated.exception.ts │ │ │ │ └── permission-denied.exception.ts │ │ │ │ ├── model │ │ │ │ ├── dto │ │ │ │ │ └── index.ts │ │ │ │ └── entity │ │ │ │ │ ├── acl-action.entity.ts │ │ │ │ │ ├── acl-possession.entity.ts │ │ │ │ │ ├── acl-resource.entity.ts │ │ │ │ │ ├── acl-role.entity.ts │ │ │ │ │ ├── acl.entity.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── repository │ │ │ │ ├── acl.find-options.ts │ │ │ │ ├── acl.mapping.ts │ │ │ │ ├── acl.repository.ts │ │ │ │ └── index.ts │ │ │ │ ├── seeder │ │ │ │ ├── acl-action.seeder.ts │ │ │ │ ├── acl-possession.seeder.ts │ │ │ │ ├── acl-resource.seeder.ts │ │ │ │ ├── acl-role.seeder.ts │ │ │ │ ├── acl.seeder.ts │ │ │ │ └── index.ts │ │ │ │ ├── stim-feature-acl-domain-core.module.ts │ │ │ │ ├── stim-feature-acl-domain.module.ts │ │ │ │ └── transform │ │ │ │ ├── acl-entity.transform.ts │ │ │ │ └── index.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── acl-actions.controller.spec.ts │ │ │ ├── acl-actions.controller.ts │ │ │ ├── acl-possessions.controller.spec.ts │ │ │ ├── acl-possessions.controller.ts │ │ │ ├── acl-resources.controller.spec.ts │ │ │ ├── acl-resources.controller.ts │ │ │ ├── acl-roles.controller.spec.ts │ │ │ ├── acl-roles.controller.ts │ │ │ └── acl.controller.ts │ │ │ ├── service │ │ │ ├── acl-actions.facade.jest.ts │ │ │ ├── acl-actions.facade.spec.ts │ │ │ ├── acl-actions.facade.ts │ │ │ ├── acl-possessions.facade.jest.ts │ │ │ ├── acl-possessions.facade.spec.ts │ │ │ ├── acl-possessions.facade.ts │ │ │ ├── acl-resources.facade.jest.ts │ │ │ ├── acl-resources.facade.spec.ts │ │ │ ├── acl-resources.facade.ts │ │ │ ├── acl-roles.facade.jest.ts │ │ │ ├── acl-roles.facade.spec.ts │ │ │ ├── acl-roles.facade.ts │ │ │ ├── acl.facade.jest.ts │ │ │ ├── acl.facade.spec.ts │ │ │ └── acl.facade.ts │ │ │ ├── stim-feature-acl-infrastructure-core.module.ts │ │ │ └── stim-feature-acl-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-auth │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── command │ │ │ │ ├── handler │ │ │ │ │ ├── login.handler.spec.ts │ │ │ │ │ ├── login.handler.ts │ │ │ │ │ ├── logout.handler.spec.ts │ │ │ │ │ ├── logout.handler.ts │ │ │ │ │ ├── refresh-jwt.handler.spec.ts │ │ │ │ │ └── refresh-jwt.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── login.command.ts │ │ │ │ │ ├── logout.command.ts │ │ │ │ │ └── refresh-jwt.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ └── index.ts │ │ │ │ ├── guard │ │ │ │ ├── auth.guard.spec.ts │ │ │ │ ├── auth.guard.ts │ │ │ │ ├── is-authorized.guard.spec.ts │ │ │ │ └── is-authorized.guard.ts │ │ │ │ ├── query │ │ │ │ └── index.ts │ │ │ │ ├── service │ │ │ │ ├── auth.service.jest.ts │ │ │ │ ├── auth.service.spec.ts │ │ │ │ ├── auth.service.ts │ │ │ │ ├── repository-providers.jest.ts │ │ │ │ ├── token.service.jest.ts │ │ │ │ ├── token.service.spec.ts │ │ │ │ └── token.service.ts │ │ │ │ ├── stim-feature-auth-application-core.module.ts │ │ │ │ └── stim-feature-auth-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── config │ │ │ │ ├── auth.config-constants.ts │ │ │ │ ├── auth.config-descriptor.ts │ │ │ │ ├── auth.config-factory.ts │ │ │ │ └── index.ts │ │ │ │ ├── exception │ │ │ │ ├── login-failed.exception.ts │ │ │ │ ├── token-expired.exception.ts │ │ │ │ ├── token-not-found.exception.ts │ │ │ │ ├── token-refresh-failed.exception.ts │ │ │ │ └── unauthorized.exception.ts │ │ │ │ ├── model │ │ │ │ ├── decorator │ │ │ │ │ ├── jwt.decorator.ts │ │ │ │ │ ├── refresh-token.decorator.ts │ │ │ │ │ ├── token-refreshed.decorator.ts │ │ │ │ │ ├── user-data.decorator.ts │ │ │ │ │ └── user-groups-data.decorator.ts │ │ │ │ ├── entity │ │ │ │ │ ├── index.ts │ │ │ │ │ └── refresh-token.entity.ts │ │ │ │ ├── jwt-payload.ts │ │ │ │ ├── login-response.ts │ │ │ │ └── token-content.ts │ │ │ │ ├── repository │ │ │ │ ├── index.ts │ │ │ │ └── refresh-token.repository.ts │ │ │ │ ├── seeder │ │ │ │ ├── index.ts │ │ │ │ └── refresh-token.seeder.ts │ │ │ │ ├── stim-feature-auth-domain-core.module.ts │ │ │ │ └── stim-feature-auth-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── auth.controller.spec.ts │ │ │ └── auth.controller.ts │ │ │ ├── service │ │ │ ├── auth.facade.jest.ts │ │ │ ├── auth.facade.spec.ts │ │ │ └── auth.facade.ts │ │ │ ├── stim-feature-auth-infrastructure-core.module.ts │ │ │ └── stim-feature-auth-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-experiment-results │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── experiment-result-delete.handler.spec.ts │ │ │ │ │ ├── experiment-result-delete.handler.ts │ │ │ │ │ ├── experiment-result-insert.handler.spec.ts │ │ │ │ │ ├── experiment-result-insert.handler.ts │ │ │ │ │ ├── experiment-result-update.handler.spec.ts │ │ │ │ │ ├── experiment-result-update.handler.ts │ │ │ │ │ ├── experiment-result-validate.handler.spec.ts │ │ │ │ │ ├── experiment-result-validate.handler.ts │ │ │ │ │ ├── initialize-experiment-results-directory.handler.spec.ts │ │ │ │ │ ├── initialize-experiment-results-directory.handler.ts │ │ │ │ │ ├── to-client │ │ │ │ │ │ ├── send-experiment-result-created-to-client.handler.spec.ts │ │ │ │ │ │ └── send-experiment-result-created-to-client.handler.ts │ │ │ │ │ ├── write-experiment-result-to-file.handler.spec.ts │ │ │ │ │ └── write-experiment-result-to-file.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── experiment-result-delete.command.ts │ │ │ │ │ ├── experiment-result-insert.command.ts │ │ │ │ │ ├── experiment-result-update.command.ts │ │ │ │ │ ├── experiment-result-validate.command.ts │ │ │ │ │ ├── initialize-experiment-results-directory.command.ts │ │ │ │ │ ├── to-client │ │ │ │ │ │ └── send-experiment-result-created-to-client.command.ts │ │ │ │ │ └── write-experiment-result-to-file.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ ├── experiment-result-was-created.handler.ts │ │ │ │ │ ├── experiment-result-was-updated.handler.ts │ │ │ │ │ └── experiment-result-was.deleted.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── experiment-result-was-created.event.ts │ │ │ │ │ ├── experiment-result-was-deleted.event.ts │ │ │ │ │ └── experiment-result-was-updated.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── queries │ │ │ │ ├── handlers │ │ │ │ │ ├── experiment-result-by-id.handler.spec.ts │ │ │ │ │ ├── experiment-result-by-id.handler.ts │ │ │ │ │ ├── experiment-result-data.handler.spec.ts │ │ │ │ │ ├── experiment-result-data.handler.ts │ │ │ │ │ ├── experiment-result-name-exists.handler.spec.ts │ │ │ │ │ ├── experiment-result-name-exists.handler.ts │ │ │ │ │ ├── experiment-results-all.handler.spec.ts │ │ │ │ │ └── experiment-results-all.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── experiment-result-by-id.query.ts │ │ │ │ │ ├── experiment-result-data.query.ts │ │ │ │ │ ├── experiment-result-name-exists.query.ts │ │ │ │ │ └── experiment-results-all.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── sagas │ │ │ │ ├── experiment-results.saga.ts │ │ │ │ └── index.ts │ │ │ │ ├── services │ │ │ │ ├── experiment-results.service.jest.ts │ │ │ │ ├── experiment-results.service.spec.ts │ │ │ │ ├── experiment-results.service.ts │ │ │ │ └── repository-providers.jest.ts │ │ │ │ └── stim-feature-experiment-results-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── exception │ │ │ │ ├── experiment-is-not-initialized.exception.ts │ │ │ │ ├── experiment-result-already-exists.exception.ts │ │ │ │ ├── experiment-result-id-not-found.exception.ts │ │ │ │ ├── experiment-result-not-valid.exception.ts │ │ │ │ ├── experiment-result-was-not-created.exception.ts │ │ │ │ ├── experiment-result-was-not-deleted.exception.ts │ │ │ │ └── experiment-result-was-not-updated.exception.ts │ │ │ │ ├── model │ │ │ │ ├── dto │ │ │ │ │ ├── experiment-result-validator-groups.ts │ │ │ │ │ └── experiment-result.dto.ts │ │ │ │ └── entity │ │ │ │ │ ├── experiment-result.entity.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── repository │ │ │ │ ├── experiment-result.find-options.ts │ │ │ │ ├── experiment-results.mapping.ts │ │ │ │ ├── experiment-results.repository.ts │ │ │ │ └── index.ts │ │ │ │ ├── seeder │ │ │ │ ├── experiment-result.seeder.ts │ │ │ │ └── index.ts │ │ │ │ └── stim-feature-experiment-results-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── experiment-results.controller.spec.ts │ │ │ └── experiment-results.controller.ts │ │ │ ├── service │ │ │ ├── experiment-results.facade.jest.ts │ │ │ ├── experiment-results.facade.spec.ts │ │ │ └── experiment-results.facade.ts │ │ │ └── stim-feature-experiment-results-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-experiments │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── experiment-delete.handler.spec.ts │ │ │ │ │ ├── experiment-delete.handler.ts │ │ │ │ │ ├── experiment-insert.handler.spec.ts │ │ │ │ │ ├── experiment-insert.handler.ts │ │ │ │ │ ├── experiment-update.handler.spec.ts │ │ │ │ │ ├── experiment-update.handler.ts │ │ │ │ │ ├── experiment-validate.handler.spec.ts │ │ │ │ │ ├── experiment-validate.handler.ts │ │ │ │ │ ├── experiments-register-dto.handler.spec.ts │ │ │ │ │ └── experiments-register-dto.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── experiment-delete.command.ts │ │ │ │ │ ├── experiment-insert.command.ts │ │ │ │ │ ├── experiment-update.command.ts │ │ │ │ │ ├── experiment-validate.command.ts │ │ │ │ │ └── experiments-register-dto.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ ├── experiment-ipc-disconnected.handler.spec.ts │ │ │ │ │ ├── experiment-ipc-disconnected.handler.ts │ │ │ │ │ ├── experiment-was-created.handler.ts │ │ │ │ │ ├── experiment-was-updated.handler.ts │ │ │ │ │ ├── experiment-was.deleted.handler.ts │ │ │ │ │ ├── experiments-application-ready.handler.spec.ts │ │ │ │ │ └── experiments-application-ready.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── experiment-was-created.event.ts │ │ │ │ │ ├── experiment-was-deleted.event.ts │ │ │ │ │ └── experiment-was-updated.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── queries │ │ │ │ ├── handlers │ │ │ │ │ ├── experiment-by-id.handler.spec.ts │ │ │ │ │ ├── experiment-by-id.handler.ts │ │ │ │ │ ├── experiment-multimedia.handler.spec.ts │ │ │ │ │ ├── experiment-multimedia.handler.ts │ │ │ │ │ ├── experiment-name-exists.handler.spec.ts │ │ │ │ │ ├── experiment-name-exists.handler.ts │ │ │ │ │ ├── experiments-all.handler.spec.ts │ │ │ │ │ └── experiments-all.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── experiment-by-id.query.ts │ │ │ │ │ ├── experiment-multimedia.query.ts │ │ │ │ │ ├── experiment-name-exists.query.ts │ │ │ │ │ └── experiments-all.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── services │ │ │ │ ├── experiments.service.jest.ts │ │ │ │ ├── experiments.service.spec.ts │ │ │ │ ├── experiments.service.ts │ │ │ │ └── repository-providers.jest.ts │ │ │ │ └── stim-feature-experiments-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── exception │ │ │ │ ├── experiment-already-exists.exception.ts │ │ │ │ ├── experiment-id-not-found.exception.ts │ │ │ │ ├── experiment-not-valid.exception.ts │ │ │ │ ├── experiment-was-not-created.exception.ts │ │ │ │ ├── experiment-was-not-deleted.exception.ts │ │ │ │ └── experiment-was-not-updated.exception.ts │ │ │ │ ├── model │ │ │ │ ├── dto │ │ │ │ │ ├── experiment-cvep.dto.ts │ │ │ │ │ ├── experiment-erp.dto.ts │ │ │ │ │ ├── experiment-fvep.dto.ts │ │ │ │ │ ├── experiment-output.dto.ts │ │ │ │ │ ├── experiment-rea.dto.ts │ │ │ │ │ ├── experiment-tvep.dto.ts │ │ │ │ │ ├── experiment-validation-groups.ts │ │ │ │ │ ├── experiment.dto.ts │ │ │ │ │ └── index.ts │ │ │ │ └── entity │ │ │ │ │ ├── experiment-cvep-output.entity.ts │ │ │ │ │ ├── experiment-cvep.entity.ts │ │ │ │ │ ├── experiment-erp-output-dependency.entity.ts │ │ │ │ │ ├── experiment-erp-output.entity.ts │ │ │ │ │ ├── experiment-erp.entity.ts │ │ │ │ │ ├── experiment-fvep-output.entity.ts │ │ │ │ │ ├── experiment-fvep.entity.ts │ │ │ │ │ ├── experiment-output.entity.ts │ │ │ │ │ ├── experiment-rea-output.entity.ts │ │ │ │ │ ├── experiment-rea.entity.ts │ │ │ │ │ ├── experiment-tvep-output.entity.ts │ │ │ │ │ ├── experiment-tvep.entity.ts │ │ │ │ │ ├── experiment.entity.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── repository │ │ │ │ ├── base-experiment-repository.ts │ │ │ │ ├── custom-experiment-repository.ts │ │ │ │ ├── experiment-cvep.repository.ts │ │ │ │ ├── experiment-erp.repository.ts │ │ │ │ ├── experiment-fvep.repository.ts │ │ │ │ ├── experiment-rea.repository.ts │ │ │ │ ├── experiment-tvep.repository.ts │ │ │ │ ├── experiment.find-options.ts │ │ │ │ ├── experiment.repository.ts │ │ │ │ ├── experiments.mapping.ts │ │ │ │ └── index.ts │ │ │ │ ├── seeder │ │ │ │ ├── experiment-cvep-output.seeder.ts │ │ │ │ ├── experiment-cvep.seeder.ts │ │ │ │ ├── experiment-erp-output-dependency.seeder.ts │ │ │ │ ├── experiment-erp-output.seeder.ts │ │ │ │ ├── experiment-erp.seeder.ts │ │ │ │ ├── experiment-fvep-output.seeder.ts │ │ │ │ ├── experiment-fvep.seeder.ts │ │ │ │ ├── experiment-rea-output.seeder.ts │ │ │ │ ├── experiment-rea.seeder.ts │ │ │ │ ├── experiment-tvep-output.seeder.ts │ │ │ │ ├── experiment-tvep.seeder.ts │ │ │ │ ├── experiment.seeder.ts │ │ │ │ └── index.ts │ │ │ │ └── stim-feature-experiments-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── experiments.controller.spec.ts │ │ │ └── experiments.controller.ts │ │ │ ├── interceptor │ │ │ └── index.ts │ │ │ ├── service │ │ │ ├── experiments.facade.jest.ts │ │ │ ├── experiments.facade.spec.ts │ │ │ └── experiments.facade.ts │ │ │ └── stim-feature-experiments-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-file-browser │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── create-new-folder.handler.spec.ts │ │ │ │ │ ├── create-new-folder.handler.ts │ │ │ │ │ ├── delete-file.handler.spec.ts │ │ │ │ │ ├── delete-file.handler.ts │ │ │ │ │ ├── upload-files.handler.spec.ts │ │ │ │ │ ├── upload-files.handler.ts │ │ │ │ │ ├── write-private-json-file.handler.spec.ts │ │ │ │ │ └── write-private-json-file.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── create-new-folder.command.ts │ │ │ │ │ ├── delete-file.command.ts │ │ │ │ │ ├── upload-files.command.ts │ │ │ │ │ └── write-private-json-file.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── events │ │ │ │ ├── handlers │ │ │ │ │ ├── file-upload-failed.handler.ts │ │ │ │ │ ├── file-was-uploaded.handler.ts │ │ │ │ │ └── folder-was-created.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── file-upload-failed.event.ts │ │ │ │ │ ├── file-was-deleted.event.ts │ │ │ │ │ ├── file-was-uploaded.event.ts │ │ │ │ │ └── folder-was-created.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── queries │ │ │ │ ├── handlers │ │ │ │ │ ├── get-content.handler.spec.ts │ │ │ │ │ ├── get-content.handler.ts │ │ │ │ │ ├── get-public-path.handler.ts │ │ │ │ │ ├── merge-private-path.handler.spec.ts │ │ │ │ │ ├── merge-private-path.handler.ts │ │ │ │ │ ├── merge-public-path.handler.spec.ts │ │ │ │ │ ├── merge-public-path.handler.ts │ │ │ │ │ ├── read-private-json-file.handler.spec.ts │ │ │ │ │ └── read-private-json-file.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── get-content.query.ts │ │ │ │ │ ├── get-public-path.query.ts │ │ │ │ │ ├── merge-private-path.query.ts │ │ │ │ │ ├── merge-public-path.query.ts │ │ │ │ │ └── read-private-json-file.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── saga │ │ │ │ ├── handlers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── impl │ │ │ │ │ └── .gitkeep │ │ │ │ └── index.ts │ │ │ │ ├── service │ │ │ │ ├── file-browser.service.jest.ts │ │ │ │ ├── file-browser.service.spec.ts │ │ │ │ └── file-browser.service.ts │ │ │ │ ├── stim-feature-file-browser-application-core.module.ts │ │ │ │ └── stim-feature-file-browser-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── config │ │ │ │ ├── file-browser-module.config.ts │ │ │ │ ├── file-browser.config-constants.ts │ │ │ │ ├── file-browser.config-descriptor.ts │ │ │ │ ├── file-browser.config-factory.ts │ │ │ │ └── index.ts │ │ │ │ ├── exception │ │ │ │ ├── content-was-not-written.exception.ts │ │ │ │ ├── file-access-restricted.exception.ts │ │ │ │ ├── file-already-exists.exception.ts │ │ │ │ ├── file-not-found.exception.ts │ │ │ │ └── folder-is-unable-to-create.exception.ts │ │ │ │ ├── model │ │ │ │ ├── file-location.ts │ │ │ │ └── uploaded-file-structure.ts │ │ │ │ ├── stim-feature-file-browser-domain-core.module.ts │ │ │ │ └── stim-feature-file-browser-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── file-browser.controller.spec.ts │ │ │ └── file-browser.controller.ts │ │ │ ├── service │ │ │ ├── file-browser-facade.spec.ts │ │ │ ├── file-browser.facade.jest.ts │ │ │ └── file-browser.facade.ts │ │ │ ├── stim-feature-file-browser-infrastructure-core.module.ts │ │ │ └── stim-feature-file-browser-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-ipc │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── base │ │ │ │ │ │ └── base-ipc-blocking.handler.ts │ │ │ │ │ ├── ipc-close.handler.spec.ts │ │ │ │ │ ├── ipc-close.handler.ts │ │ │ │ │ ├── ipc-kill.handler.spec.ts │ │ │ │ │ ├── ipc-kill.handler.ts │ │ │ │ │ ├── ipc-open.handler.spec.ts │ │ │ │ │ ├── ipc-open.handler.ts │ │ │ │ │ ├── ipc-send-stimulator-state-change.handler.spec.ts │ │ │ │ │ ├── ipc-send-stimulator-state-change.handler.ts │ │ │ │ │ ├── ipc-set-experiment-asset.handler.spec.ts │ │ │ │ │ ├── ipc-set-experiment-asset.handler.ts │ │ │ │ │ ├── ipc-set-output-synchronization.handler.spec.ts │ │ │ │ │ ├── ipc-set-output-synchronization.handler.ts │ │ │ │ │ ├── ipc-set-public-path.handler.spec.ts │ │ │ │ │ ├── ipc-set-public-path.handler.ts │ │ │ │ │ ├── ipc-spawn.handler.spec.ts │ │ │ │ │ ├── ipc-spawn.handler.ts │ │ │ │ │ ├── ipc-toggle-output.handler.spec.ts │ │ │ │ │ ├── ipc-toggle-output.handler.ts │ │ │ │ │ └── ipc-update-output-data.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── base │ │ │ │ │ │ └── ipc-blocking.command.ts │ │ │ │ │ ├── ipc-close.command.ts │ │ │ │ │ ├── ipc-kill.command.ts │ │ │ │ │ ├── ipc-open.command.ts │ │ │ │ │ ├── ipc-send-stimulator-state-change.command.ts │ │ │ │ │ ├── ipc-set-experiment-asset.command.ts │ │ │ │ │ ├── ipc-set-output-synchronization.command.ts │ │ │ │ │ ├── ipc-set-public-path.command.ts │ │ │ │ │ ├── ipc-spawn.command.ts │ │ │ │ │ ├── ipc-toggle-output.command.ts │ │ │ │ │ └── ipc-update-output-data.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ ├── ipc-closed.handler.ts │ │ │ │ │ ├── ipc-connected.handler.spec.ts │ │ │ │ │ ├── ipc-connected.handler.ts │ │ │ │ │ ├── ipc-disconnected.handler.ts │ │ │ │ │ ├── ipc-error.handler.ts │ │ │ │ │ ├── ipc-killed.handler.ts │ │ │ │ │ ├── ipc-listening.handler.ts │ │ │ │ │ ├── ipc-message.handler.spec.ts │ │ │ │ │ ├── ipc-message.handler.ts │ │ │ │ │ ├── ipc-settings-loaded.handler.spec.ts │ │ │ │ │ ├── ipc-settings-loaded.handler.ts │ │ │ │ │ └── ipc-was-open.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── ipc-blocking-command-failed.event.ts │ │ │ │ │ ├── ipc-closed.event.ts │ │ │ │ │ ├── ipc-connected.event.ts │ │ │ │ │ ├── ipc-disconnected.event.ts │ │ │ │ │ ├── ipc-error.event.ts │ │ │ │ │ ├── ipc-killed.event.ts │ │ │ │ │ ├── ipc-listening.event.ts │ │ │ │ │ ├── ipc-message.event.ts │ │ │ │ │ ├── ipc-output-synchronization-updated.event.ts │ │ │ │ │ ├── ipc-was-open.event.ts │ │ │ │ │ └── ipc.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── queries │ │ │ │ ├── handlers │ │ │ │ │ ├── ipc-connection-status.handler.ts │ │ │ │ │ └── is-ipc-connected.handler.spec.ts │ │ │ │ ├── impl │ │ │ │ │ └── ipc-connection-status.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── sagas │ │ │ │ ├── index.ts │ │ │ │ └── ipc-socket.saga.ts │ │ │ │ ├── services │ │ │ │ ├── ipc.service.jest.ts │ │ │ │ └── ipc.service.ts │ │ │ │ ├── stim-feature-ipc-application-core.module.ts │ │ │ │ └── stim-feature-ipc-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── config │ │ │ │ ├── asset-player.config-constants.ts │ │ │ │ ├── asset-player.config-descriptor.ts │ │ │ │ ├── asset-player.config-factory.ts │ │ │ │ └── index.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── exception │ │ │ │ ├── asset-player-already-running.exception.ts │ │ │ │ ├── asset-player-main-path-not-defined.exception.ts │ │ │ │ ├── asset-player-not-running.exception.ts │ │ │ │ ├── asset-player-python-path-not-defined.exception.ts │ │ │ │ ├── ipc-already-open.exception.ts │ │ │ │ ├── ipc-output-synchronization-experiment-id-missing.exception.ts │ │ │ │ └── no-ipc-open.exception.ts │ │ │ │ ├── model │ │ │ │ ├── ipc-message.ts │ │ │ │ ├── ipc-module.config.ts │ │ │ │ ├── message-from-ipc │ │ │ │ │ ├── index.ts │ │ │ │ │ └── output-synchronization-state-changed.message.ts │ │ │ │ └── message-to-ipc │ │ │ │ │ ├── exit.message.ts │ │ │ │ │ ├── experiment-asset.message.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── server-public-path.message.ts │ │ │ │ │ ├── stimulator-state-change.message.ts │ │ │ │ │ ├── toggle-output-synchronization.message.ts │ │ │ │ │ ├── toggle-output.message.ts │ │ │ │ │ └── update-output-data.message.ts │ │ │ │ ├── stim-feature-ipc-domain-core.module.ts │ │ │ │ └── stim-feature-ipc-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── ipc.controller.spec.ts │ │ │ └── ipc.controller.ts │ │ │ ├── service │ │ │ ├── ipc.facade.jest.ts │ │ │ ├── ipc.facade.spec.ts │ │ │ └── ipc.facade.ts │ │ │ ├── stim-feature-ipc-infrastructure-core.module.ts │ │ │ └── stim-feature-ipc-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-player │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── append-experiment-result-data.handler.spec.ts │ │ │ │ │ ├── append-experiment-result-data.handler.ts │ │ │ │ │ ├── experiment-result-clear.handler.spec.ts │ │ │ │ │ ├── experiment-result-clear.handler.ts │ │ │ │ │ ├── experiment-result-initialize.handler.spec.ts │ │ │ │ │ ├── experiment-result-initialize.handler.ts │ │ │ │ │ ├── fill-initial-io-data.handler.spec.ts │ │ │ │ │ ├── fill-initial-io-data.handler.ts │ │ │ │ │ ├── prepare-experiment-player.handler.spec.ts │ │ │ │ │ ├── prepare-experiment-player.handler.ts │ │ │ │ │ ├── prepare-next-experiment-round.handler.spec.ts │ │ │ │ │ ├── prepare-next-experiment-round.handler.ts │ │ │ │ │ ├── process-stimulator-io-data.handler.spec.ts │ │ │ │ │ ├── process-stimulator-io-data.handler.ts │ │ │ │ │ ├── process-stimulator-next-sequence-part-request.handler.spec.ts │ │ │ │ │ ├── process-stimulator-next-sequence-part-request.handler.ts │ │ │ │ │ ├── start-new-experiment-round.handler.spec.ts │ │ │ │ │ ├── start-new-experiment-round.handler.ts │ │ │ │ │ ├── to-client │ │ │ │ │ │ ├── create-new-experiment-round-to-client.handler.spec.ts │ │ │ │ │ │ ├── create-new-experiment-round-to-client.handler.ts │ │ │ │ │ │ ├── send-player-state-to-client.handler.spec.ts │ │ │ │ │ │ ├── send-player-state-to-client.handler.ts │ │ │ │ │ │ ├── send-stimulator-io-data-to-client.handler.spec.ts │ │ │ │ │ │ └── send-stimulator-io-data-to-client.handler.ts │ │ │ │ │ └── to-ipc │ │ │ │ │ │ ├── send-asset-configuration-to-ipc.handler.spec.ts │ │ │ │ │ │ └── send-asset-configuration-to-ipc.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── append-experiment-result-data.command.ts │ │ │ │ │ ├── experiment-result-clear.command.ts │ │ │ │ │ ├── experiment-result-initialize.command.ts │ │ │ │ │ ├── fill-initial-io-data.command.ts │ │ │ │ │ ├── prepare-experiment-player.command.ts │ │ │ │ │ ├── prepare-next-experiment-round.command.ts │ │ │ │ │ ├── process-stimulator-io-data.command.ts │ │ │ │ │ ├── process-stimulator-next-sequence-part-request.command.ts │ │ │ │ │ ├── start-new-experiment-round.command.ts │ │ │ │ │ ├── to-client │ │ │ │ │ │ ├── create-new-experiment-round-to-client.command.ts │ │ │ │ │ │ ├── send-player-state-to-client.command.ts │ │ │ │ │ │ └── send-stimulator-io-data-to-client.command.ts │ │ │ │ │ └── to-ipc │ │ │ │ │ │ └── send-asset-configuration-to-ipc.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ ├── ipc-output-synchronization-updated.handler.spec.ts │ │ │ │ │ ├── ipc-output-synchronization-updated.handler.ts │ │ │ │ │ ├── player-blocking-command-failed.handler.spec.ts │ │ │ │ │ ├── player-blocking-command-failed.handler.ts │ │ │ │ │ ├── player-client-ready.handler.spec.ts │ │ │ │ │ ├── player-client-ready.handler.ts │ │ │ │ │ ├── player-experiment-cleared.handler.spec.ts │ │ │ │ │ ├── player-experiment-cleared.handler.ts │ │ │ │ │ ├── player-experiment-finished.handler.spec.ts │ │ │ │ │ ├── player-experiment-finished.handler.ts │ │ │ │ │ ├── player-experiment-initialized.handler.spec.ts │ │ │ │ │ ├── player-experiment-initialized.handler.ts │ │ │ │ │ ├── player-experiment-result-was-initialized.handler.spec.ts │ │ │ │ │ └── player-experiment-result-was-initialized.handler.ts │ │ │ │ ├── impl │ │ │ │ │ └── experiment-result-was-initialized.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── queries │ │ │ │ ├── handlers │ │ │ │ │ ├── get-current-sequence.handler.ts │ │ │ │ │ ├── player-configuration.handler.spec.ts │ │ │ │ │ ├── player-configuration.handler.ts │ │ │ │ │ ├── player-local-configuration.handler.spec.ts │ │ │ │ │ ├── player-local-configuration.handler.ts │ │ │ │ │ ├── stop-condition-types.handler.spec.ts │ │ │ │ │ └── stop-condition-types.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── get-current-sequence.query.ts │ │ │ │ │ ├── player-configuration.query.ts │ │ │ │ │ ├── player-local-configuration.query.ts │ │ │ │ │ └── stop-condition-types.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── saga │ │ │ │ ├── index.ts │ │ │ │ └── player.saga.ts │ │ │ │ ├── service │ │ │ │ ├── player.service.jest.ts │ │ │ │ ├── player.service.spec.ts │ │ │ │ ├── player.service.ts │ │ │ │ ├── repository-providers.jest.ts │ │ │ │ ├── stop-conditions.service.jest.ts │ │ │ │ ├── stop-conditions.service.spec.ts │ │ │ │ └── stop-conditions.service.ts │ │ │ │ └── stim-feature-player-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── exception │ │ │ │ ├── another-experiment-result-is-initialized.exception.ts │ │ │ │ ├── experiment-result-is-not-initialized.exception.ts │ │ │ │ ├── experiment-result-round-is-not-initialized.exception.ts │ │ │ │ └── unsupported-experiment-stop-condition.exception.ts │ │ │ │ ├── experiment-stop-condition │ │ │ │ ├── experiment-stop-condition.factory.ts │ │ │ │ ├── experiment-stop-condition.ts │ │ │ │ └── impl │ │ │ │ │ ├── cycle-counting-experiment-stop-condition.ts │ │ │ │ │ ├── no-stop-condition.ts │ │ │ │ │ └── output-counting-experiment-stop-condition.ts │ │ │ │ ├── model │ │ │ │ ├── entity │ │ │ │ │ ├── experiment-stop-condition.entity.ts │ │ │ │ │ └── index.ts │ │ │ │ └── player-local-configuration.ts │ │ │ │ ├── repository │ │ │ │ ├── experiment-stop-condition.mapping.ts │ │ │ │ ├── experiment-stop-condition.repository.ts │ │ │ │ └── index.ts │ │ │ │ ├── seeder │ │ │ │ ├── experiment-stop-condition.seeder.ts │ │ │ │ └── index.ts │ │ │ │ └── stim-feature-player-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── player.controller.spec.ts │ │ │ └── player.controller.ts │ │ │ ├── service │ │ │ ├── player.facade.jest.ts │ │ │ ├── player.facade.spec.ts │ │ │ └── player.facade.ts │ │ │ └── stim-feature-player-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-seed │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── command │ │ │ │ ├── handler │ │ │ │ │ ├── database-dump.handler.spec.ts │ │ │ │ │ ├── database-dump.handler.ts │ │ │ │ │ ├── seed.handler.spec.ts │ │ │ │ │ ├── seed.handler.ts │ │ │ │ │ ├── truncate.handler.spec.ts │ │ │ │ │ └── truncate.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── database-dump.command.ts │ │ │ │ │ ├── seed.command.ts │ │ │ │ │ └── truncate.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handler │ │ │ │ │ ├── seed-application-ready.handler.spec.ts │ │ │ │ │ └── seed-application-ready.handler.ts │ │ │ │ ├── impl │ │ │ │ │ └── seed-repository.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── query │ │ │ │ └── index.ts │ │ │ │ ├── saga │ │ │ │ └── index.ts │ │ │ │ ├── service │ │ │ │ ├── database-dump.service.jest.ts │ │ │ │ ├── database-dump.service.ts │ │ │ │ ├── entity-transformer-explorer.service.ts │ │ │ │ ├── seed-explorer.service.ts │ │ │ │ ├── seeder-service-provider.service.jest.ts │ │ │ │ ├── seeder-service-provider.service.spec.ts │ │ │ │ └── seeder-service-provider.service.ts │ │ │ │ └── stim-feature-seed-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── decorators │ │ │ │ ├── constants.ts │ │ │ │ ├── entity-transformer.decorator.ts │ │ │ │ └── seeder.decorator.ts │ │ │ │ ├── model │ │ │ │ ├── data-container.ts │ │ │ │ ├── database-dump.ts │ │ │ │ ├── entity-transformer-information.ts │ │ │ │ ├── entity-transformer-service.ts │ │ │ │ ├── seed-statistics.ts │ │ │ │ ├── seeder-information.ts │ │ │ │ └── seeder-service.ts │ │ │ │ ├── seeder │ │ │ │ ├── base-entity-transformer.service.ts │ │ │ │ ├── base-seeder.service.spec.ts │ │ │ │ └── base-seeder.service.ts │ │ │ │ ├── stim-feature-seed-domain.module.ts │ │ │ │ └── util │ │ │ │ └── entity-statistics.serializer.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── seed.controller.spec.ts │ │ │ └── seed.controller.ts │ │ │ ├── service │ │ │ ├── seed.facade.jest.ts │ │ │ ├── seed.facade.spec.ts │ │ │ └── seed.facade.ts │ │ │ └── stim-feature-seed-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-sequences │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── sequence-delete.handler.spec.ts │ │ │ │ │ ├── sequence-delete.handler.ts │ │ │ │ │ ├── sequence-from-experiment.handler.spec.ts │ │ │ │ │ ├── sequence-from-experiment.handler.ts │ │ │ │ │ ├── sequence-generate.handler.spec.ts │ │ │ │ │ ├── sequence-generate.handler.ts │ │ │ │ │ ├── sequence-insert.handler.spec.ts │ │ │ │ │ ├── sequence-insert.handler.ts │ │ │ │ │ ├── sequence-update.handler.spec.ts │ │ │ │ │ ├── sequence-update.handler.ts │ │ │ │ │ ├── sequence-validate.handler.spec.ts │ │ │ │ │ └── sequence-validate.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── sequence-delete.command.ts │ │ │ │ │ ├── sequence-from-experiment.command.ts │ │ │ │ │ ├── sequence-generate.command.ts │ │ │ │ │ ├── sequence-insert.command.ts │ │ │ │ │ ├── sequence-update.command.ts │ │ │ │ │ └── sequence-validate.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ ├── sequence-was-created.handler.ts │ │ │ │ │ ├── sequence-was-generated.handler.ts │ │ │ │ │ ├── sequence-was-updated.handler.ts │ │ │ │ │ └── sequence-was.deleted.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── sequence-was-created.event.ts │ │ │ │ │ ├── sequence-was-deleted.event.ts │ │ │ │ │ ├── sequence-was-generated.event.ts │ │ │ │ │ └── sequence-was-updated.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── queries │ │ │ │ ├── handlers │ │ │ │ │ ├── sequence-by-id.handler.spec.ts │ │ │ │ │ ├── sequence-by-id.handler.ts │ │ │ │ │ ├── sequence-name-exists.handler.spec.ts │ │ │ │ │ ├── sequence-name-exists.handler.ts │ │ │ │ │ ├── sequences-all.handler.spec.ts │ │ │ │ │ ├── sequences-all.handler.ts │ │ │ │ │ ├── sequences-for-experiment.handler.spec.ts │ │ │ │ │ └── sequences-for-experiment.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── sequence-by-id.query.ts │ │ │ │ │ ├── sequence-name-exists.query.ts │ │ │ │ │ ├── sequences-all.query.ts │ │ │ │ │ └── sequences-for-experiment.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── sagas │ │ │ │ └── sequence.saga.ts │ │ │ │ ├── services │ │ │ │ ├── repository-providers.jest.ts │ │ │ │ ├── sequences.service.jest.ts │ │ │ │ ├── sequences.service.spec.ts │ │ │ │ └── sequences.service.ts │ │ │ │ └── stim-feature-sequences-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── exception │ │ │ │ ├── experiment-do-not-support-sequences.exception.ts │ │ │ │ ├── invalid-sequence-size.exception.ts │ │ │ │ ├── sequence-already-exists.exception.ts │ │ │ │ ├── sequence-id-not-found.exception.ts │ │ │ │ ├── sequence-not-valid.exception.ts │ │ │ │ ├── sequence-was-not-created.exception.ts │ │ │ │ ├── sequence-was-not-deleted.exception.ts │ │ │ │ └── sequence-was-not-updated.exception.ts │ │ │ │ ├── generator │ │ │ │ ├── impl │ │ │ │ │ └── roulette-wheel-sequence-generator.ts │ │ │ │ ├── sequence-generator.factory.ts │ │ │ │ └── sequence-generator.ts │ │ │ │ ├── model │ │ │ │ ├── dto │ │ │ │ │ ├── sequence-validator-groups.ts │ │ │ │ │ └── sequence.dto.ts │ │ │ │ └── entity │ │ │ │ │ ├── index.ts │ │ │ │ │ └── sequence.entity.ts │ │ │ │ ├── repository │ │ │ │ ├── index.ts │ │ │ │ ├── sequence.find-options.ts │ │ │ │ ├── sequence.repository.ts │ │ │ │ └── sequences.mapping.ts │ │ │ │ ├── seeder │ │ │ │ ├── index.ts │ │ │ │ └── sequence.seeder.ts │ │ │ │ └── stim-feature-sequences-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── sequences.controller.spec.ts │ │ │ └── sequences.controller.ts │ │ │ ├── service │ │ │ ├── sequences.facade.jest.ts │ │ │ ├── sequences.facade.spec.ts │ │ │ └── sequences.facade.ts │ │ │ └── stim-feature-sequences-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-settings │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── application │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── load-settings.handler.ts │ │ │ │ │ └── update-settings.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── load-settings.command.ts │ │ │ │ │ └── update-settings.command.ts │ │ │ │ └── index.ts │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ └── settings-application-ready.handler.ts │ │ │ │ ├── impl │ │ │ │ │ └── settings-was-loaded.event.ts │ │ │ │ └── index.ts │ │ │ └── queries │ │ │ │ ├── handlers │ │ │ │ └── get-settings.handler.ts │ │ │ │ ├── impl │ │ │ │ └── get-settings.query.ts │ │ │ │ └── index.ts │ │ │ ├── domain │ │ │ ├── config │ │ │ │ ├── index.ts │ │ │ │ ├── settings.config-constants.ts │ │ │ │ ├── settings.config-descriptor.ts │ │ │ │ └── settings.config-factory.ts │ │ │ ├── exception │ │ │ │ └── update-settings-failed.exception.ts │ │ │ └── services │ │ │ │ └── settings.service.ts │ │ │ ├── infrastructure │ │ │ ├── controller │ │ │ │ └── settings.controller.ts │ │ │ └── service │ │ │ │ └── settings.facade.ts │ │ │ ├── stim-feature-settings-core.module.ts │ │ │ └── stim-feature-settings.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── stim-feature-stimulator │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── commands │ │ │ │ ├── handlers │ │ │ │ │ ├── base │ │ │ │ │ │ └── base-stimulator-blocking.handler.ts │ │ │ │ │ ├── check-stimulator-state-consistency.handler.spec.ts │ │ │ │ │ ├── check-stimulator-state-consistency.handler.ts │ │ │ │ │ ├── close.handler.spec.ts │ │ │ │ │ ├── close.handler.ts │ │ │ │ │ ├── experiment-clear.handler.spec.ts │ │ │ │ │ ├── experiment-clear.handler.ts │ │ │ │ │ ├── experiment-finish.handler.spec.ts │ │ │ │ │ ├── experiment-finish.handler.ts │ │ │ │ │ ├── experiment-pause.handler.spec.ts │ │ │ │ │ ├── experiment-pause.handler.ts │ │ │ │ │ ├── experiment-run.handler.spec.ts │ │ │ │ │ ├── experiment-run.handler.ts │ │ │ │ │ ├── experiment-setup.handler.spec.ts │ │ │ │ │ ├── experiment-setup.handler.ts │ │ │ │ │ ├── experiment-upload.handler.spec.ts │ │ │ │ │ ├── experiment-upload.handler.ts │ │ │ │ │ ├── firmware-file-delete.handler.spec.ts │ │ │ │ │ ├── firmware-file-delete.handler.ts │ │ │ │ │ ├── firmware-update.handler.spec.ts │ │ │ │ │ ├── firmware-update.handler.ts │ │ │ │ │ ├── open.handler.spec.ts │ │ │ │ │ ├── open.handler.ts │ │ │ │ │ ├── save-serial-path-if-necessary.handler.spec.ts │ │ │ │ │ ├── save-serial-path-if-necessary.handler.ts │ │ │ │ │ ├── sequence-next-part.handler.ts │ │ │ │ │ ├── stimulator-set-output.handler.spec.ts │ │ │ │ │ ├── stimulator-set-output.handler.ts │ │ │ │ │ ├── stimulator-state.handler.spec.ts │ │ │ │ │ ├── stimulator-state.handler.ts │ │ │ │ │ ├── to-client │ │ │ │ │ │ ├── send-stimulator-connected-to-client.handler.ts │ │ │ │ │ │ ├── send-stimulator-disconnected-to-client.handler.ts │ │ │ │ │ │ └── send-stimulator-state-change-to-client.handler.ts │ │ │ │ │ └── to-ipc │ │ │ │ │ │ └── send-stimulator-state-change-to-ipc.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── base │ │ │ │ │ │ └── stimulator-blocking.command.ts │ │ │ │ │ ├── check-stimulator-state-consistency.command.ts │ │ │ │ │ ├── close.command.ts │ │ │ │ │ ├── experiment-clear.command.ts │ │ │ │ │ ├── experiment-finish.command.ts │ │ │ │ │ ├── experiment-pause.command.ts │ │ │ │ │ ├── experiment-run.command.ts │ │ │ │ │ ├── experiment-setup.command.ts │ │ │ │ │ ├── experiment-upload.command.ts │ │ │ │ │ ├── firmware-file-delete.command.ts │ │ │ │ │ ├── firmware-update.command.ts │ │ │ │ │ ├── open.command.ts │ │ │ │ │ ├── save-serial-path-if-necessary.command.ts │ │ │ │ │ ├── sequence-next-part.command.ts │ │ │ │ │ ├── stimulator-set-output.command.ts │ │ │ │ │ ├── stimulator-state.command.ts │ │ │ │ │ ├── to-client │ │ │ │ │ │ ├── send-stimulator-connected-to-client.command.ts │ │ │ │ │ │ ├── send-stimulator-disconnected-to-client.command.ts │ │ │ │ │ │ └── send-stimulator-state-change-to-client.command.ts │ │ │ │ │ └── to-ipc │ │ │ │ │ │ └── send-stimulator-state-change-to-ipc.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── events │ │ │ │ ├── handlers │ │ │ │ │ ├── firmware-updated.handler.ts │ │ │ │ │ ├── serial-open.handler.spec.ts │ │ │ │ │ ├── serial-open.handler.ts │ │ │ │ │ ├── stimulator-blocking-command-failed.handler.spec.ts │ │ │ │ │ ├── stimulator-blocking-command-failed.handler.ts │ │ │ │ │ ├── stimulator-data.handler.spec.ts │ │ │ │ │ ├── stimulator-data.handler.ts │ │ │ │ │ ├── stimulator-settings-loaded.handler.spec.ts │ │ │ │ │ └── stimulator-settings-loaded.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── experiment-cleared.event.ts │ │ │ │ │ ├── experiment-finished.event.ts │ │ │ │ │ ├── experiment-initialized.event.ts │ │ │ │ │ ├── firmware-updated.event.ts │ │ │ │ │ ├── serial-closed.event.ts │ │ │ │ │ ├── serial-open.event.ts │ │ │ │ │ ├── stimulator-blocking-command-failed.event.ts │ │ │ │ │ ├── stimulator-data.event.ts │ │ │ │ │ └── stimulator.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── factory │ │ │ │ ├── fake-serial-port.factory.ts │ │ │ │ ├── real-serial-port.factory.ts │ │ │ │ ├── serial-port.factory.jest.ts │ │ │ │ └── serial-port.factory.ts │ │ │ │ ├── provider │ │ │ │ ├── serial-port-factory.provider.ts │ │ │ │ └── serial-service.provider.ts │ │ │ │ ├── queries │ │ │ │ ├── handlers │ │ │ │ │ ├── discover.handler.spec.ts │ │ │ │ │ ├── discover.handler.ts │ │ │ │ │ ├── get-current-experiment-id.handler.spec.ts │ │ │ │ │ ├── get-current-experiment-id.handler.ts │ │ │ │ │ ├── get-stimulator-connection-status.handler.spec.ts │ │ │ │ │ ├── get-stimulator-connection-status.handler.ts │ │ │ │ │ ├── last-know-stimulator-state.handler.spec.ts │ │ │ │ │ ├── last-know-stimulator-state.handler.ts │ │ │ │ │ ├── parse-stimulator-data.handler.spec.ts │ │ │ │ │ └── parse-stimulator-data.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── discover.query.ts │ │ │ │ │ ├── get-current-experiment-id.query.ts │ │ │ │ │ ├── get-stimulator-connection-status.query.ts │ │ │ │ │ ├── last-know-stimulator-state.query.ts │ │ │ │ │ └── parse-stimulator-data.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── sagas │ │ │ │ ├── index.ts │ │ │ │ ├── serial.saga.ts │ │ │ │ └── stimulator.saga.ts │ │ │ │ ├── service │ │ │ │ ├── serial.service.jest.ts │ │ │ │ ├── serial.service.ts │ │ │ │ ├── serial │ │ │ │ │ ├── fake │ │ │ │ │ │ ├── fake-serial-responder.ts │ │ │ │ │ │ ├── fake-serial.data-handler.ts │ │ │ │ │ │ ├── fake-serial.positive-responder.ts │ │ │ │ │ │ ├── fake-serial.service.spec.ts │ │ │ │ │ │ ├── fake-serial.service.ts │ │ │ │ │ │ └── fake-stimulator.device.ts │ │ │ │ │ └── real │ │ │ │ │ │ ├── real-serial.service.spec.ts │ │ │ │ │ │ └── real-serial.service.ts │ │ │ │ ├── stimulator.protocol.jest.ts │ │ │ │ ├── stimulator.service.jest.ts │ │ │ │ ├── stimulator.service.spec.ts │ │ │ │ └── stimulator.service.ts │ │ │ │ ├── stim-feature-stimulator-application-core.module.ts │ │ │ │ └── stim-feature-stimulator-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── config │ │ │ │ ├── index.ts │ │ │ │ ├── stimulator.config-constants.ts │ │ │ │ ├── stimulator.config-descriptor.ts │ │ │ │ └── stimulator.config-factory.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── exception │ │ │ │ ├── firmware-update-failed.exception.ts │ │ │ │ ├── no-uploaded-experiment.exception.ts │ │ │ │ ├── port-is-already-open.exception.ts │ │ │ │ ├── port-is-not-open.exception.ts │ │ │ │ ├── port-is-unable-to-close.exception.ts │ │ │ │ ├── port-is-unable-to-open.exception.ts │ │ │ │ ├── unknown-stimulator-action-type.exception.ts │ │ │ │ └── unsupported-stimulator-command.exception.ts │ │ │ │ ├── model │ │ │ │ ├── protocol │ │ │ │ │ ├── experiment.protocol.codec.jest.ts │ │ │ │ │ ├── experiment.protocol.codec.spec.ts │ │ │ │ │ ├── experiment.protocol.codec.ts │ │ │ │ │ ├── experiment │ │ │ │ │ │ ├── experiment-cvep.protocol.spec.ts │ │ │ │ │ │ ├── experiment-cvep.protocol.ts │ │ │ │ │ │ ├── experiment-erp.protocol.spec.ts │ │ │ │ │ │ ├── experiment-erp.protocol.ts │ │ │ │ │ │ ├── experiment-fvep.protocol.spec.ts │ │ │ │ │ │ ├── experiment-fvep.protocol.ts │ │ │ │ │ │ ├── experiment-rea.protocol.spec.ts │ │ │ │ │ │ ├── experiment-rea.protocol.ts │ │ │ │ │ │ ├── experiment-tvep.protocol.spec.ts │ │ │ │ │ │ ├── experiment-tvep.protocol.ts │ │ │ │ │ │ └── experiment.protocol.ts │ │ │ │ │ ├── fake │ │ │ │ │ │ └── fake.protocol.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ ├── sequence.protocol.codec.jest.ts │ │ │ │ │ ├── sequence.protocol.codec.spec.ts │ │ │ │ │ ├── sequence.protocol.codec.ts │ │ │ │ │ ├── sequence │ │ │ │ │ │ ├── sequence.protocol.spec.ts │ │ │ │ │ │ └── sequence.protocol.ts │ │ │ │ │ ├── stimulator.protocol.spec.ts │ │ │ │ │ └── stimulator.protocol.ts │ │ │ │ ├── serial-port.ts │ │ │ │ ├── stimulator-action-type.ts │ │ │ │ ├── stimulator-command-data │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── stimulator-io-change.data.ts │ │ │ │ │ ├── stimulator-memory.data.ts │ │ │ │ │ ├── stimulator-next-sequence-part.data.ts │ │ │ │ │ ├── stimulator-request-finish.data.ts │ │ │ │ │ └── stimulator-state.data.ts │ │ │ │ ├── stimulator-command-type.ts │ │ │ │ └── stimulator-module-config.ts │ │ │ │ ├── stim-feature-stimulator-domain-core.module.ts │ │ │ │ └── stim-feature-stimulator-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── serial.controller.spec.ts │ │ │ ├── serial.controller.ts │ │ │ ├── stimulator.controller.spec.ts │ │ │ └── stimulator.controller.ts │ │ │ ├── guard │ │ │ ├── stimulator-action.guard.spec.ts │ │ │ └── stimulator-action.guard.ts │ │ │ ├── service │ │ │ ├── serial.facade.jest.ts │ │ │ ├── serial.facade.spec.ts │ │ │ ├── serial.facade.ts │ │ │ ├── stimulator.facade.jest.ts │ │ │ ├── stimulator.facade.spec.ts │ │ │ └── stimulator.facade.ts │ │ │ ├── stim-feature-stimulator-infrastructure-core.module.ts │ │ │ └── stim-feature-stimulator-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-triggers │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── command │ │ │ │ ├── handlers │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── disable-triggers.handler.spec.ts │ │ │ │ │ ├── disable-triggers.handler.ts │ │ │ │ │ ├── enable-triggers.handler.spec.ts │ │ │ │ │ ├── enable-triggers.handler.ts │ │ │ │ │ ├── initialize-triggers.handler.spec.ts │ │ │ │ │ └── initialize-triggers.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── .gitkeep │ │ │ │ │ ├── disable-triggers.command.ts │ │ │ │ │ ├── enable-triggers.command.ts │ │ │ │ │ └── initialize-triggers.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── impl │ │ │ │ │ └── .gitkeep │ │ │ │ └── index.ts │ │ │ │ ├── query │ │ │ │ ├── handlers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── impl │ │ │ │ │ └── .gitkeep │ │ │ │ └── index.ts │ │ │ │ ├── saga │ │ │ │ ├── handlers │ │ │ │ │ └── .gitkeep │ │ │ │ ├── impl │ │ │ │ │ └── .gitkeep │ │ │ │ └── index.ts │ │ │ │ ├── service │ │ │ │ ├── repository-providers.jest.ts │ │ │ │ ├── triggers.service.jest.ts │ │ │ │ ├── triggers.service.spec.ts │ │ │ │ └── triggers.service.ts │ │ │ │ └── stim-feature-triggers-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── exception │ │ │ │ └── .gitkeep │ │ │ │ ├── model │ │ │ │ ├── dto │ │ │ │ │ └── index.ts │ │ │ │ └── entity │ │ │ │ │ ├── index.ts │ │ │ │ │ └── trigger-control.entity.ts │ │ │ │ ├── repository │ │ │ │ ├── index.ts │ │ │ │ └── triggers.repository.ts │ │ │ │ └── stim-feature-triggers-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ └── stim-feature-triggers.controller.ts │ │ │ ├── service │ │ │ └── stim-feature-triggers.facade.ts │ │ │ └── stim-feature-triggers-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-feature-users │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── command │ │ │ │ ├── handler │ │ │ │ │ ├── assign-user-role.handler.spec.ts │ │ │ │ │ ├── assign-user-role.handler.ts │ │ │ │ │ ├── register-user.handler.spec.ts │ │ │ │ │ ├── register-user.handler.ts │ │ │ │ │ ├── user-delete.handler.spec.ts │ │ │ │ │ ├── user-delete.handler.ts │ │ │ │ │ ├── user-insert.handler.spec.ts │ │ │ │ │ ├── user-insert.handler.ts │ │ │ │ │ ├── user-update.handler.spec.ts │ │ │ │ │ ├── user-update.handler.ts │ │ │ │ │ ├── user-validate.handler.spec.ts │ │ │ │ │ └── user-validate.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── assign-user-role.command.ts │ │ │ │ │ ├── register-user.command.ts │ │ │ │ │ ├── user-delete.command.ts │ │ │ │ │ ├── user-insert.command.ts │ │ │ │ │ ├── user-update.command.ts │ │ │ │ │ └── user-validate.command.ts │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handler │ │ │ │ │ ├── user-was-created.handler.spec.ts │ │ │ │ │ └── user-was-created.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── user-was-created.event.ts │ │ │ │ │ ├── user-was-deleted.event.ts │ │ │ │ │ └── user-was-updated.event.ts │ │ │ │ └── index.ts │ │ │ │ ├── query │ │ │ │ ├── handler │ │ │ │ │ ├── user-by-email-password.handler.ts │ │ │ │ │ ├── user-by-email.handler.spec.ts │ │ │ │ │ ├── user-by-id.handler.spec.ts │ │ │ │ │ ├── user-by-id.handler.ts │ │ │ │ │ ├── users-by-group.handler.spec.ts │ │ │ │ │ └── users-by-group.handler.ts │ │ │ │ ├── impl │ │ │ │ │ ├── user-by-email-password.query.ts │ │ │ │ │ ├── user-by-id.query.ts │ │ │ │ │ └── users-by-group.query.ts │ │ │ │ └── index.ts │ │ │ │ ├── service │ │ │ │ ├── repository-providers.jest.ts │ │ │ │ ├── users.service.jest.ts │ │ │ │ ├── users.service.spec.ts │ │ │ │ └── users.service.ts │ │ │ │ └── stim-feature-users-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── exception │ │ │ │ ├── user-id-not-found.exception.ts │ │ │ │ ├── user-not-found.exception.ts │ │ │ │ ├── user-not-valid.exception.ts │ │ │ │ ├── user-was-not-created.exception.ts │ │ │ │ ├── user-was-not-deleted.exception.ts │ │ │ │ ├── user-was-not-registred.exception.ts │ │ │ │ └── user-was-not-updated.exception.ts │ │ │ │ ├── model │ │ │ │ ├── dto │ │ │ │ │ ├── user-validator-groups.ts │ │ │ │ │ └── user.dto.ts │ │ │ │ ├── entity │ │ │ │ │ ├── group.entity.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── user.entity.ts │ │ │ │ └── request-with-user.ts │ │ │ │ ├── repository │ │ │ │ ├── index.ts │ │ │ │ ├── user.find-options.ts │ │ │ │ ├── users.mapping.ts │ │ │ │ └── users.repository.ts │ │ │ │ ├── seeder │ │ │ │ ├── group.seeder.ts │ │ │ │ ├── index.ts │ │ │ │ └── user.seeder.ts │ │ │ │ └── stim-feature-users-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── controller │ │ │ ├── users.controller.spec.ts │ │ │ └── users.controller.ts │ │ │ ├── service │ │ │ ├── users.facade.jest.ts │ │ │ ├── users.facade.spec.ts │ │ │ └── users.facade.ts │ │ │ └── stim-feature-users-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-lib-common │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── application │ │ │ └── event │ │ │ │ └── impl │ │ │ │ └── application-ready.event.ts │ │ │ ├── base-error.ts │ │ │ ├── blocking-handler │ │ │ ├── base-blocking.command.ts │ │ │ ├── base-blocking.event.ts │ │ │ └── base-blocking.handler.ts │ │ │ ├── command-id │ │ │ ├── command-id.factory.ts │ │ │ ├── command-id.service.spec.ts │ │ │ └── command-id.service.ts │ │ │ ├── config │ │ │ ├── common.config-constants.ts │ │ │ ├── common.config-descriptor.ts │ │ │ ├── common.config-factory.ts │ │ │ └── index.ts │ │ │ ├── controller-exception.ts │ │ │ ├── deep-partial.ts │ │ │ ├── group-by.ts │ │ │ ├── object-diff.spec.ts │ │ │ ├── object-diff.ts │ │ │ ├── query-error.ts │ │ │ ├── repository │ │ │ ├── base.repository.ts │ │ │ └── find-options.ts │ │ │ ├── stim-lib-common.module.ts │ │ │ ├── validation-error-transformer.ts │ │ │ └── validators.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── stim-lib-config │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── abstract-module-options-factory.ts │ │ │ ├── base-async-config-module.ts │ │ │ ├── config-cache.ts │ │ │ ├── config-key.ts │ │ │ ├── config.type.ts │ │ │ ├── constants │ │ │ └── index.ts │ │ │ ├── descriptors │ │ │ └── index.ts │ │ │ ├── factories │ │ │ └── index.ts │ │ │ └── interfaces.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── stim-lib-connection │ ├── application │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ ├── command │ │ │ │ └── index.ts │ │ │ │ ├── event │ │ │ │ ├── handlers │ │ │ │ │ ├── connection-client-ready.handler.spec.ts │ │ │ │ │ └── connection-client-ready.handler.ts │ │ │ │ └── index.ts │ │ │ │ └── stim-lib-connection-application.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ ├── domain │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ │ ├── index.ts │ │ │ └── lib │ │ │ │ └── stim-lib-connection-domain.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json │ └── infrastructure │ │ ├── .eslintrc.json │ │ ├── README.md │ │ ├── jest.config.js │ │ ├── project.json │ │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ └── stim-lib-connection-infrastructure.module.ts │ │ ├── tsconfig.json │ │ ├── tsconfig.lib.json │ │ └── tsconfig.spec.json ├── stim-lib-database │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── config │ │ │ ├── database.config-constants.ts │ │ │ ├── database.config-descriptor.ts │ │ │ ├── database.config-factory.ts │ │ │ └── index.ts │ │ │ ├── database-configurator.ts │ │ │ └── stim-lib-database.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── stim-lib-dto │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── constants.ts │ │ │ ├── decorators │ │ │ └── inject-dto-service.decorator.ts │ │ │ ├── exceptions │ │ │ └── dto-not-found.exception.ts │ │ │ ├── model │ │ │ └── dto.ts │ │ │ ├── provider │ │ │ └── dto-provider.ts │ │ │ ├── services │ │ │ └── dto.service.ts │ │ │ ├── stim-lib-dto-core.module.ts │ │ │ ├── stim-lib-dto.module.ts │ │ │ └── utils.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── stim-lib-log │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── project.json │ ├── src │ │ ├── index.ts │ │ └── lib │ │ │ ├── config │ │ │ ├── index.ts │ │ │ ├── log.config-constants.ts │ │ │ ├── log.config-descriptor.ts │ │ │ └── log.config-factory.ts │ │ │ ├── formatter │ │ │ └── custom.formatter.ts │ │ │ ├── logger.factory.ts │ │ │ ├── logger.ts │ │ │ ├── stim-lib-log.module.ts │ │ │ └── transport │ │ │ ├── console.transport.ts │ │ │ ├── file.transport.ts │ │ │ └── transport-options.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json └── stim-lib-socket │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.js │ ├── project.json │ ├── src │ ├── index.ts │ └── lib │ │ ├── application │ │ ├── commands │ │ │ ├── handlers │ │ │ │ ├── broadcast.handler.spec.ts │ │ │ │ ├── broadcast.handler.ts │ │ │ │ ├── publish-client-ready.handler.spec.ts │ │ │ │ ├── publish-client-ready.handler.ts │ │ │ │ ├── send.handler.spec.ts │ │ │ │ └── send.handler.ts │ │ │ ├── impl │ │ │ │ ├── broadcast.command.ts │ │ │ │ ├── publish-client-ready.command.ts │ │ │ │ └── send.command.ts │ │ │ └── index.ts │ │ ├── events │ │ │ └── impl │ │ │ │ ├── client-connected.event.ts │ │ │ │ ├── client-connection-ready.event.ts │ │ │ │ ├── client-disconnected.event.ts │ │ │ │ └── message-arived.event.ts │ │ └── saga │ │ │ ├── index.ts │ │ │ └── socket.saga.ts │ │ ├── domain │ │ ├── adapter │ │ │ └── socket-io.adapter.ts │ │ ├── constants.ts │ │ └── services │ │ │ ├── socket.service.jest.ts │ │ │ ├── socket.service.spec.ts │ │ │ └── socket.service.ts │ │ ├── infrastructure │ │ └── service │ │ │ ├── socket.facade.jest.ts │ │ │ ├── socket.facade.spec.ts │ │ │ └── socket.facade.ts │ │ └── stim-lib-socket.module.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nest-cli.json ├── nx.json ├── ormconfig.ts ├── package.json ├── renovate.json ├── sonar-project.properties ├── test-helpers └── test-helpers.ts ├── tools ├── check-dependencies.ts ├── create-entities-index.ts ├── extract-endpoints.ts ├── generate-graphs.ts ├── merge-coverage.ts ├── prepare-configuration.ts ├── prepare-templates.ts ├── tools-helper.ts └── tsconfig.tools.json ├── tsconfig.base.json └── workspace.json /.dockerignore: -------------------------------------------------------------------------------- 1 | .idea 2 | coverage 3 | node_modules/ 4 | .cache 5 | dist 6 | tmp 7 | wiki.md 8 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/*.js 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/.prettierrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run start:prod 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/README.md -------------------------------------------------------------------------------- /additional-documentation/summary.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /apps/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /apps/server/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/.eslintrc.json -------------------------------------------------------------------------------- /apps/server/data-containers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/README.md -------------------------------------------------------------------------------- /apps/server/data-containers/acl-action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/acl-action.json -------------------------------------------------------------------------------- /apps/server/data-containers/acl-possession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/acl-possession.json -------------------------------------------------------------------------------- /apps/server/data-containers/acl-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/acl-resource.json -------------------------------------------------------------------------------- /apps/server/data-containers/acl-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/acl-role.json -------------------------------------------------------------------------------- /apps/server/data-containers/acl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/acl.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_cvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_cvep.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_cvep_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_cvep_output.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_erp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_erp.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_erp_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_erp_output.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_erp_output_dependency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_erp_output_dependency.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_fvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_fvep.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_fvep_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_fvep_output.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_rea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_rea.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_rea_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_rea_output.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_result.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_stop_condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_stop_condition.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_tvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_tvep.json -------------------------------------------------------------------------------- /apps/server/data-containers/experiment_tvep_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/experiment_tvep_output.json -------------------------------------------------------------------------------- /apps/server/data-containers/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/group.json -------------------------------------------------------------------------------- /apps/server/data-containers/refresh_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/refresh_token.json -------------------------------------------------------------------------------- /apps/server/data-containers/sequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/sequence.json -------------------------------------------------------------------------------- /apps/server/data-containers/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/data-containers/user.json -------------------------------------------------------------------------------- /apps/server/environments/dev.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/environments/dev.env -------------------------------------------------------------------------------- /apps/server/environments/overrides/heroku.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/environments/overrides/heroku.env -------------------------------------------------------------------------------- /apps/server/environments/overrides/rpi.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/environments/overrides/rpi.env -------------------------------------------------------------------------------- /apps/server/environments/production.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/environments/production.env -------------------------------------------------------------------------------- /apps/server/environments/qa.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/environments/qa.env -------------------------------------------------------------------------------- /apps/server/ipc-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/ipc-client.js -------------------------------------------------------------------------------- /apps/server/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/jest.config.js -------------------------------------------------------------------------------- /apps/server/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/project.json -------------------------------------------------------------------------------- /apps/server/schemas/experiment-cvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/schemas/experiment-cvep.json -------------------------------------------------------------------------------- /apps/server/schemas/experiment-erp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/schemas/experiment-erp.json -------------------------------------------------------------------------------- /apps/server/schemas/experiment-fvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/schemas/experiment-fvep.json -------------------------------------------------------------------------------- /apps/server/schemas/experiment-rea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/schemas/experiment-rea.json -------------------------------------------------------------------------------- /apps/server/schemas/experiment-result.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/schemas/experiment-result.json -------------------------------------------------------------------------------- /apps/server/schemas/experiment-tvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/schemas/experiment-tvep.json -------------------------------------------------------------------------------- /apps/server/schemas/sequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/schemas/sequence.json -------------------------------------------------------------------------------- /apps/server/src/app/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/app.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/class-validator-exception.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/class-validator-exception.factory.ts -------------------------------------------------------------------------------- /apps/server/src/app/cors.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/cors.middleware.ts -------------------------------------------------------------------------------- /apps/server/src/app/empty.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/empty.module.ts -------------------------------------------------------------------------------- /apps/server/src/app/error.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/error.middleware.ts -------------------------------------------------------------------------------- /apps/server/src/app/middleware/http-logger.middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/middleware/http-logger.middleware.ts -------------------------------------------------------------------------------- /apps/server/src/app/migrations/1624546147368-Initialization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/migrations/1624546147368-Initialization.ts -------------------------------------------------------------------------------- /apps/server/src/app/schema.specs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/app/schema.specs.ts -------------------------------------------------------------------------------- /apps/server/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/server/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = {}; 2 | -------------------------------------------------------------------------------- /apps/server/src/environments/environment.ts: -------------------------------------------------------------------------------- 1 | export const environment = {}; 2 | -------------------------------------------------------------------------------- /apps/server/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/src/main.ts -------------------------------------------------------------------------------- /apps/server/test/commands/commands.e2e-old-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/commands/commands.e2e-old-spec.ts -------------------------------------------------------------------------------- /apps/server/test/experiments/experiments.e2e-old-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/experiments/experiments.e2e-old-spec.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/auth.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/cookie-extractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/cookie-extractor.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/experiment-result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/experiment-result.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/experiments.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/experiments.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/functions.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/index.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/experiment-output.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/experiment-output.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/experiment-result.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/experiment-result.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/experiment-type.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/experiment-type.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/experiment.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/experiment.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/index.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/predicates/acl.predicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/predicates/acl.predicate.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/predicates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/predicates/index.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/predicates/predicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/predicates/predicate.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/predicates/standard.predicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/predicates/standard.predicate.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/predicates/tags.predicate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/predicates/tags.predicate.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/sequence-type.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/sequence-type.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/sequence.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/sequence.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/stimulator-state-data.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/stimulator-state-data.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/transforms/index.ts: -------------------------------------------------------------------------------- 1 | export * from './transform'; 2 | -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/transforms/transform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/transforms/transform.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/user-type.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/user-type.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/matchers/user.matcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/matchers/user.matcher.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/player.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/player.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/serial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/serial.ts -------------------------------------------------------------------------------- /apps/server/test/helpers/stimulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/helpers/stimulator.ts -------------------------------------------------------------------------------- /apps/server/test/jest/call_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/jest/call_setup.js -------------------------------------------------------------------------------- /apps/server/test/jest/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/jest/jest.setup.ts -------------------------------------------------------------------------------- /apps/server/test/modified-jest.types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/modified-jest.types.d.ts -------------------------------------------------------------------------------- /apps/server/test/resources/acl-action.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/acl-action.json -------------------------------------------------------------------------------- /apps/server/test/resources/acl-possession.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/acl-possession.json -------------------------------------------------------------------------------- /apps/server/test/resources/acl-resource.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/acl-resource.json -------------------------------------------------------------------------------- /apps/server/test/resources/acl-role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/acl-role.json -------------------------------------------------------------------------------- /apps/server/test/resources/acl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/acl.json -------------------------------------------------------------------------------- /apps/server/test/resources/auth/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/auth/group.json -------------------------------------------------------------------------------- /apps/server/test/resources/auth/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/auth/user.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_cvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_cvep.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_cvep_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_cvep_output.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_erp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_erp.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_erp_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_erp_output.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_erp_output_dependency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_erp_output_dependency.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_fvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_fvep.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_fvep_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_fvep_output.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_rea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_rea.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_rea_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_rea_output.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_stop_condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_stop_condition.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_tvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_tvep.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiment_tvep_output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiment_tvep_output.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/cvep/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/cvep/experiment.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/cvep/experiment_cvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/cvep/experiment_cvep.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/erp/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/erp/experiment.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/erp/experiment_erp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/erp/experiment_erp.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/fvep/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/fvep/experiment.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/fvep/experiment_fvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/fvep/experiment_fvep.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/rea/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/rea/experiment.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/rea/experiment_rea.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/rea/experiment_rea.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/tvep/experiment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/tvep/experiment.json -------------------------------------------------------------------------------- /apps/server/test/resources/experiments/tvep/experiment_tvep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/experiments/tvep/experiment_tvep.json -------------------------------------------------------------------------------- /apps/server/test/resources/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/group.json -------------------------------------------------------------------------------- /apps/server/test/resources/player/experiment_stop_condition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/player/experiment_stop_condition.json -------------------------------------------------------------------------------- /apps/server/test/resources/refresh_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/refresh_token.json -------------------------------------------------------------------------------- /apps/server/test/resources/sequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/sequence.json -------------------------------------------------------------------------------- /apps/server/test/resources/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/user.json -------------------------------------------------------------------------------- /apps/server/test/resources/users/group.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/users/group.json -------------------------------------------------------------------------------- /apps/server/test/resources/users/user.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/resources/users/user.json -------------------------------------------------------------------------------- /apps/server/test/set-environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/set-environment.ts -------------------------------------------------------------------------------- /apps/server/test/setup-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/setup-configuration.ts -------------------------------------------------------------------------------- /apps/server/test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/setup.ts -------------------------------------------------------------------------------- /apps/server/test/src/auth/auth.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/auth/auth.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/auth/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/auth/config.json -------------------------------------------------------------------------------- /apps/server/test/src/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/config.json -------------------------------------------------------------------------------- /apps/server/test/src/experiments/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/config.json -------------------------------------------------------------------------------- /apps/server/test/src/experiments/cvep/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/cvep/config.json -------------------------------------------------------------------------------- /apps/server/test/src/experiments/cvep/experiment-cvep.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/cvep/experiment-cvep.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/experiments/erp/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/erp/config.json -------------------------------------------------------------------------------- /apps/server/test/src/experiments/erp/experiment-erp.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/erp/experiment-erp.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/experiments/experiments.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/experiments.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/experiments/fvep/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/fvep/config.json -------------------------------------------------------------------------------- /apps/server/test/src/experiments/fvep/experiment-fvep.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/fvep/experiment-fvep.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/experiments/rea/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/rea/config.json -------------------------------------------------------------------------------- /apps/server/test/src/experiments/rea/experiment-rea.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/rea/experiment-rea.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/experiments/tvep/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/tvep/config.json -------------------------------------------------------------------------------- /apps/server/test/src/experiments/tvep/experiment-tvep.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/experiments/tvep/experiment-tvep.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/player/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/player/config.json -------------------------------------------------------------------------------- /apps/server/test/src/player/player.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/player/player.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/player/prepare.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/player/prepare.config.json -------------------------------------------------------------------------------- /apps/server/test/src/seed/seed.e2e-tmp-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/seed/seed.e2e-tmp-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/sequences/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/sequences/config.json -------------------------------------------------------------------------------- /apps/server/test/src/sequences/sequences.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/sequences/sequences.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/serial/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/serial/config.json -------------------------------------------------------------------------------- /apps/server/test/src/serial/serial.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/serial/serial.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/server.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/server.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/stimulator/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/stimulator/config.json -------------------------------------------------------------------------------- /apps/server/test/src/stimulator/stimulator.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/stimulator/stimulator.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/triggers/triggers.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/triggers/triggers.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/src/users/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/users/config.json -------------------------------------------------------------------------------- /apps/server/test/src/users/users.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/src/users/users.e2e-spec.ts -------------------------------------------------------------------------------- /apps/server/test/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/test/test-helpers.ts -------------------------------------------------------------------------------- /apps/server/triggers/001_erp_output_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/001_erp_output_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/002_erp_output_delete.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/002_erp_output_delete.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/003_erp_experiment_update.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/003_erp_experiment_update.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/011_tvep_output_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/011_tvep_output_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/012_tvep_output_delete.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/012_tvep_output_delete.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/013_tvep_experiment_update.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/013_tvep_experiment_update.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/021_fvep_output_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/021_fvep_output_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/022_fvep_output_delete.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/022_fvep_output_delete.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/023_fvep_experiment_update.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/023_fvep_experiment_update.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/031_cvep_output_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/031_cvep_output_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/032_cvep_output_delete.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/032_cvep_output_delete.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/033_cvep_experiment_update.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/033_cvep_experiment_update.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/041_rea_output_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/041_rea_output_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/042_rea_output_delete.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/042_rea_output_delete.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/043_rea_experiment_update.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/043_rea_experiment_update.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/044_rea_experiment_delete.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/044_rea_experiment_delete.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/100_user_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/100_user_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/111_experiment_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/111_experiment_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/121_sequence_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/121_sequence_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/triggers/131_experiment_result_insert.trigger.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/triggers/131_experiment_result_insert.trigger.sql -------------------------------------------------------------------------------- /apps/server/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/tsconfig.app.json -------------------------------------------------------------------------------- /apps/server/tsconfig.doc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/tsconfig.doc.json -------------------------------------------------------------------------------- /apps/server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/tsconfig.json -------------------------------------------------------------------------------- /apps/server/tsconfig.migrations.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/tsconfig.migrations.json -------------------------------------------------------------------------------- /apps/server/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/apps/server/tsconfig.spec.json -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.preset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/jest.preset.js -------------------------------------------------------------------------------- /jest/call_setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/jest/call_setup.js -------------------------------------------------------------------------------- /jest/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/jest/jest.setup.ts -------------------------------------------------------------------------------- /libs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/command/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/command/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/lib/command/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/event/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/event/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/guard/acl.guard.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/lib/guard/acl.guard.spec.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/guard/acl.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/lib/guard/acl.guard.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/guard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/lib/guard/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/query/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/query/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/query/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/lib/query/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/saga/index.ts: -------------------------------------------------------------------------------- 1 | export const SAGAS = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/src/lib/service/acl.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/src/lib/service/acl.service.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/config/acl.config-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/config/acl.config-factory.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/constants.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/exception/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/model/dto/index.ts: -------------------------------------------------------------------------------- 1 | export const DTOs = {}; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/model/entity/acl.entity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/model/entity/acl.entity.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/model/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/model/entity/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/repository/acl.find-options.ts: -------------------------------------------------------------------------------- 1 | export interface AclFindOptions { 2 | roles?: number[]; 3 | } 4 | -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/repository/acl.mapping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/repository/acl.mapping.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/repository/acl.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/repository/acl.repository.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/repository/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/seeder/acl-action.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/seeder/acl-action.seeder.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/seeder/acl-resource.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/seeder/acl-resource.seeder.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/seeder/acl-role.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/seeder/acl-role.seeder.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/seeder/acl.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/seeder/acl.seeder.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/seeder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/seeder/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/src/lib/transform/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/src/lib/transform/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/src/lib/service/acl.facade.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/src/lib/service/acl.facade.ts -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-acl/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-acl/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/src/lib/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/src/lib/command/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- 1 | export const EventHandlers = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/src/lib/guard/auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/src/lib/guard/auth.guard.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/src/lib/query/index.ts: -------------------------------------------------------------------------------- 1 | export const QueryHandlers = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/src/lib/service/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/src/lib/service/auth.service.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/lib/model/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/lib/model/entity/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/lib/model/jwt-payload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/lib/model/jwt-payload.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/lib/model/login-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/lib/model/login-response.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/lib/model/token-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/lib/model/token-content.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/lib/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/lib/repository/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/src/lib/seeder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/src/lib/seeder/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/stim-feature-auth-infrastructure.module'; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-auth/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-auth/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-experiment-results/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiment-results/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/src/lib/model/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/src/lib/model/dto/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/src/lib/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/src/lib/repository/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/src/lib/seeder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/src/lib/seeder/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/src/lib/interceptor/index.ts: -------------------------------------------------------------------------------- 1 | export const INTERCEPTORS = [] 2 | -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-experiments/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-experiments/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/src/lib/saga/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/src/lib/saga/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/src/lib/saga/index.ts: -------------------------------------------------------------------------------- 1 | export const Sagas = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/src/lib/config/file-browser-module.config.ts: -------------------------------------------------------------------------------- 1 | export interface FileBrowserModuleConfig { 2 | basePath: string; 3 | } 4 | -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/src/lib/model/file-location.ts: -------------------------------------------------------------------------------- 1 | export type FileLocation = 'private' | 'public'; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-file-browser/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-file-browser/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/src/lib/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/src/lib/commands/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/src/lib/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/src/lib/queries/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/src/lib/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/src/lib/sagas/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/src/lib/constants.ts: -------------------------------------------------------------------------------- 1 | export const LOG_TAG = 'ipc'; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/src/lib/model/ipc-message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/src/lib/model/ipc-message.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/src/lib/model/ipc-module.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/src/lib/model/ipc-module.config.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-ipc/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-ipc/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-player/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-player/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-player/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-player/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-player/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/application/src/lib/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/src/lib/commands/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/application/src/lib/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/src/lib/queries/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/application/src/lib/saga/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/src/lib/saga/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/application/src/lib/saga/player.saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/src/lib/saga/player.saga.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-player/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-player/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/src/lib/model/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/src/lib/model/entity/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/src/lib/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/src/lib/repository/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/src/lib/seeder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/src/lib/seeder/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-player/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/stim-feature-player-infrastructure.module'; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-player/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-player/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/src/lib/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/src/lib/command/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/src/lib/query/index.ts: -------------------------------------------------------------------------------- 1 | export const QUERIES = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/src/lib/saga/index.ts: -------------------------------------------------------------------------------- 1 | export const SAGAS = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/src/lib/decorators/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/src/lib/decorators/constants.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/src/lib/model/data-container.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/src/lib/model/data-container.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/src/lib/model/database-dump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/src/lib/model/database-dump.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/src/lib/model/seed-statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/src/lib/model/seed-statistics.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/src/lib/model/seeder-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/src/lib/model/seeder-service.ts -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/stim-feature-seed-infrastructure.module'; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-seed/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-seed/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/src/lib/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/src/lib/queries/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/src/lib/model/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/src/lib/model/entity/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/src/lib/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/src/lib/repository/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/src/lib/seeder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/src/lib/seeder/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-sequences/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-sequences/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-settings/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-settings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/README.md -------------------------------------------------------------------------------- /libs/stim-feature-settings/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-settings/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/project.json -------------------------------------------------------------------------------- /libs/stim-feature-settings/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-settings/src/lib/application/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/src/lib/application/commands/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-settings/src/lib/application/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/src/lib/application/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-settings/src/lib/application/queries/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/src/lib/application/queries/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-settings/src/lib/domain/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/src/lib/domain/config/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-settings/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-settings/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-settings/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-settings/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/src/lib/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/src/lib/events/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/src/lib/sagas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/src/lib/sagas/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/src/lib/constants.ts: -------------------------------------------------------------------------------- 1 | export const LOG_TAG = 'stimulator'; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/src/lib/model/serial-port.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/src/lib/model/serial-port.ts -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-stimulator/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-stimulator/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/command/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/command/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/src/lib/command/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/event/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/event/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- 1 | export const EventHandlers = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/query/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/query/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/query/index.ts: -------------------------------------------------------------------------------- 1 | export const QueryHandlers = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/saga/handlers/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/saga/impl/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/src/lib/saga/index.ts: -------------------------------------------------------------------------------- 1 | export const Sagas = []; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/src/lib/exception/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/src/lib/model/dto/index.ts: -------------------------------------------------------------------------------- 1 | export const DTOs = {}; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/src/lib/model/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/src/lib/model/entity/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/src/lib/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/src/lib/repository/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-triggers/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-triggers/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-users/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-users/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/README.md -------------------------------------------------------------------------------- /libs/stim-feature-users/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-users/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/project.json -------------------------------------------------------------------------------- /libs/stim-feature-users/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/application/src/lib/command/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/src/lib/command/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/application/src/lib/query/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/src/lib/query/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-users/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-users/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/README.md -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/project.json -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/src/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/src/lib/model/dto/user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/src/lib/model/dto/user.dto.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/src/lib/model/entity/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/src/lib/model/entity/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/src/lib/repository/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/src/lib/repository/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/src/lib/seeder/group.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/src/lib/seeder/group.seeder.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/src/lib/seeder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/src/lib/seeder/index.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/src/lib/seeder/user.seeder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/src/lib/seeder/user.seeder.ts -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-users/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/stim-feature-users-infrastructure.module'; 2 | -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-feature-users/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-feature-users/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-common/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/README.md -------------------------------------------------------------------------------- /libs/stim-lib-common/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-common/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/project.json -------------------------------------------------------------------------------- /libs/stim-lib-common/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/base-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/base-error.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/command-id/command-id.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/command-id/command-id.factory.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/command-id/command-id.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/command-id/command-id.service.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/config/common.config-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/config/common.config-constants.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/config/common.config-descriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/config/common.config-descriptor.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/config/common.config-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/config/common.config-factory.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/controller-exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/controller-exception.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/deep-partial.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/deep-partial.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/group-by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/group-by.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/object-diff.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/object-diff.spec.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/object-diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/object-diff.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/query-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/query-error.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/repository/base.repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/repository/base.repository.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/repository/find-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/repository/find-options.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/stim-lib-common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/stim-lib-common.module.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/validation-error-transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/validation-error-transformer.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/src/lib/validators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/src/lib/validators.ts -------------------------------------------------------------------------------- /libs/stim-lib-common/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-common/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-common/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-common/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-config/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/README.md -------------------------------------------------------------------------------- /libs/stim-lib-config/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-config/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/project.json -------------------------------------------------------------------------------- /libs/stim-lib-config/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/src/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/abstract-module-options-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/src/lib/abstract-module-options-factory.ts -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/base-async-config-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/src/lib/base-async-config-module.ts -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/config-cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/src/lib/config-cache.ts -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/config-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/src/lib/config-key.ts -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/config.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/src/lib/config.type.ts -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/constants/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/descriptors/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/factories/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/stim-lib-config/src/lib/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/src/lib/interfaces.ts -------------------------------------------------------------------------------- /libs/stim-lib-config/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-config/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-config/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-config/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/README.md -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/project.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/src/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/src/lib/command/index.ts: -------------------------------------------------------------------------------- 1 | export const CommandHandlers = []; 2 | -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/src/lib/event/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/src/lib/event/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/application/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/application/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/domain/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/domain/README.md -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/domain/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/domain/project.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/stim-lib-connection-domain.module'; 2 | -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/domain/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/domain/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/domain/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/domain/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/infrastructure/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/infrastructure/README.md -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/infrastructure/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/infrastructure/project.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/stim-lib-connection-infrastructure.module'; 2 | -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/infrastructure/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/infrastructure/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-connection/infrastructure/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-connection/infrastructure/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-database/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/README.md -------------------------------------------------------------------------------- /libs/stim-lib-database/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-database/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/project.json -------------------------------------------------------------------------------- /libs/stim-lib-database/src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './lib/stim-lib-database.module'; 2 | -------------------------------------------------------------------------------- /libs/stim-lib-database/src/lib/config/database.config-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/src/lib/config/database.config-factory.ts -------------------------------------------------------------------------------- /libs/stim-lib-database/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-database/src/lib/database-configurator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/src/lib/database-configurator.ts -------------------------------------------------------------------------------- /libs/stim-lib-database/src/lib/stim-lib-database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/src/lib/stim-lib-database.module.ts -------------------------------------------------------------------------------- /libs/stim-lib-database/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-database/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-database/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-database/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-dto/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-dto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/README.md -------------------------------------------------------------------------------- /libs/stim-lib-dto/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-dto/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/project.json -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/src/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/constants.ts: -------------------------------------------------------------------------------- 1 | export const DTO_INJECTION_TOKEN = '__DTO__'; 2 | -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/exceptions/dto-not-found.exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/src/lib/exceptions/dto-not-found.exception.ts -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/model/dto.ts: -------------------------------------------------------------------------------- 1 | export abstract class DTO {} 2 | -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/provider/dto-provider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/src/lib/provider/dto-provider.ts -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/services/dto.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/src/lib/services/dto.service.ts -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/stim-lib-dto-core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/src/lib/stim-lib-dto-core.module.ts -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/stim-lib-dto.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/src/lib/stim-lib-dto.module.ts -------------------------------------------------------------------------------- /libs/stim-lib-dto/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/src/lib/utils.ts -------------------------------------------------------------------------------- /libs/stim-lib-dto/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-dto/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-dto/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-dto/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-log/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-log/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/README.md -------------------------------------------------------------------------------- /libs/stim-lib-log/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-log/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/project.json -------------------------------------------------------------------------------- /libs/stim-lib-log/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/config/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/config/log.config-constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/config/log.config-constants.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/config/log.config-descriptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/config/log.config-descriptor.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/config/log.config-factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/config/log.config-factory.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/formatter/custom.formatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/formatter/custom.formatter.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/logger.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/logger.factory.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/logger.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/stim-lib-log.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/stim-lib-log.module.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/transport/console.transport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/transport/console.transport.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/transport/file.transport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/transport/file.transport.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/src/lib/transport/transport-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/src/lib/transport/transport-options.ts -------------------------------------------------------------------------------- /libs/stim-lib-log/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-log/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-log/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-log/tsconfig.spec.json -------------------------------------------------------------------------------- /libs/stim-lib-socket/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/.eslintrc.json -------------------------------------------------------------------------------- /libs/stim-lib-socket/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/README.md -------------------------------------------------------------------------------- /libs/stim-lib-socket/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/jest.config.js -------------------------------------------------------------------------------- /libs/stim-lib-socket/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/project.json -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/src/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/lib/application/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/src/lib/application/commands/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/lib/application/saga/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/src/lib/application/saga/index.ts -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/lib/application/saga/socket.saga.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/src/lib/application/saga/socket.saga.ts -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/lib/domain/adapter/socket-io.adapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/src/lib/domain/adapter/socket-io.adapter.ts -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/lib/domain/constants.ts: -------------------------------------------------------------------------------- 1 | export const LOG_TAG = 'web-socket'; 2 | -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/lib/domain/services/socket.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/src/lib/domain/services/socket.service.ts -------------------------------------------------------------------------------- /libs/stim-lib-socket/src/lib/stim-lib-socket.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/src/lib/stim-lib-socket.module.ts -------------------------------------------------------------------------------- /libs/stim-lib-socket/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/tsconfig.json -------------------------------------------------------------------------------- /libs/stim-lib-socket/tsconfig.lib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/tsconfig.lib.json -------------------------------------------------------------------------------- /libs/stim-lib-socket/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/libs/stim-lib-socket/tsconfig.spec.json -------------------------------------------------------------------------------- /nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/nest-cli.json -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/nx.json -------------------------------------------------------------------------------- /ormconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/ormconfig.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/renovate.json -------------------------------------------------------------------------------- /sonar-project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/sonar-project.properties -------------------------------------------------------------------------------- /test-helpers/test-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/test-helpers/test-helpers.ts -------------------------------------------------------------------------------- /tools/check-dependencies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/check-dependencies.ts -------------------------------------------------------------------------------- /tools/create-entities-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/create-entities-index.ts -------------------------------------------------------------------------------- /tools/extract-endpoints.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/extract-endpoints.ts -------------------------------------------------------------------------------- /tools/generate-graphs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/generate-graphs.ts -------------------------------------------------------------------------------- /tools/merge-coverage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/merge-coverage.ts -------------------------------------------------------------------------------- /tools/prepare-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/prepare-configuration.ts -------------------------------------------------------------------------------- /tools/prepare-templates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/prepare-templates.ts -------------------------------------------------------------------------------- /tools/tools-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/tools-helper.ts -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /workspace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neuro-stimulator/neuro-server/HEAD/workspace.json --------------------------------------------------------------------------------