├── .ai ├── README.md ├── commands │ ├── commit-message.md │ ├── pr-plan.md │ └── pull-request-review.md └── rules │ ├── backend.md │ ├── branches.md │ ├── code-quality.md │ ├── commits.md │ ├── frontend.md │ ├── git-safety.md │ ├── pull-requests.md │ └── testing.md ├── .augment ├── .cursor ├── commands ├── mcp.json └── rules │ ├── backend.mdc │ ├── branches.mdc │ ├── code-quality.mdc │ ├── commits.mdc │ ├── frontend.mdc │ ├── pull-requests.mdc │ └── testing.mdc ├── .cursorignore ├── .dockerignore ├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── actions │ ├── deploy-test-reports │ │ └── action.yml │ ├── get-current-date │ │ └── action.yml │ ├── install-all-build-libs │ │ └── action.yml │ ├── install-apple-certs │ │ └── action.yml │ ├── install-deps │ │ └── action.yml │ ├── install-windows-certs │ │ └── action.yml │ └── remove-artifacts │ │ └── action.yml ├── build │ ├── build.Dockerfile │ ├── build.sh │ ├── build_modules.sh │ ├── release-docker.sh │ └── sum_sha256.sh ├── codeql │ └── config.yml ├── copilot-instructions.md ├── deps-audit-report.js ├── deps-licenses-report.js ├── e2e-results.js ├── e2e │ ├── test.app-image.sh │ └── test.app-image.sso.sh ├── generate-build-summary.js ├── itest-results.js ├── lint-report.js ├── redisinsight_browser.png ├── redisstack │ ├── app-image.repack.sh │ └── dmg.repack.sh ├── screenshots │ ├── Redis-Insight-Analysis.png │ ├── Redis-Insight-Browser.png │ ├── Redis-Insight-CLI.png │ ├── Redis-Insight-SlowLog.png │ └── Redis-Insight-Workbench.png ├── virustotal-report.js └── workflows │ ├── approval-dedupe.yml │ ├── aws-upload-dev.yml │ ├── aws-upload-enterprise.yml │ ├── aws-upload-prod.yml │ ├── build.yml │ ├── clean-deployments.yml │ ├── clean-s3-dev-builds.yml │ ├── code-coverage.yml │ ├── codeql-analysis.yml │ ├── compress-images.yml │ ├── enforce-branch-name-rules.yml │ ├── licenses-check.yml │ ├── manual-build-enterprise.yml │ ├── manual-build.yml │ ├── nightly-virustotal-analyze.yml │ ├── pipeline-build-docker.yml │ ├── pipeline-build-linux.yml │ ├── pipeline-build-macos.yml │ ├── pipeline-build-windows.yml │ ├── publish-stores.yml │ ├── release-prod.yml │ ├── release-stage.yml │ ├── tests-backend.yml │ ├── tests-e2e-appimage.yml │ ├── tests-e2e-docker-critical-path.yml │ ├── tests-e2e-docker-regression.yml │ ├── tests-e2e-docker-smoke.yml │ ├── tests-e2e-playwright.yml │ ├── tests-e2e.yml │ ├── tests-frontend.yml │ ├── tests-integration.yml │ ├── tests.yml │ ├── virustotal.yml │ └── weekly.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc ├── .snyk ├── .storybook ├── RootStoryLayout.tsx ├── Story.context.ts ├── helpers │ └── styles.ts ├── main.ts ├── preview-head.html ├── preview.tsx ├── redis-theme.ts ├── tsconfig.json └── vite.config.ts ├── .vscode ├── extensions.json ├── launch.json └── settings.json ├── .yarnrc ├── AGENTS.md ├── CHANGELOG.md ├── CONDUCT ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── README.md ├── api-docker-entry.sh ├── babel.config.cjs ├── configs ├── .eslintrc ├── webpack.config.base.ts ├── webpack.config.eslint.js ├── webpack.config.main.prod.ts ├── webpack.config.main.stage.ts ├── webpack.config.preload.dev.ts └── webpack.paths.ts ├── dev.provisionprofile ├── docker-entry.sh ├── docs └── plugins │ ├── development.md │ ├── installation.md │ └── introduction.md ├── electron-builder-mas.js ├── electron-builder.json ├── embedded.provisionprofile ├── env.mcp.example ├── jest-resolver.js ├── jest.config.cjs ├── mcp.json ├── package.json ├── patches ├── @elastic+eui+34.6.0.patch ├── monaco-yaml+5.1.1.patch └── react-vtree+3.0.0-beta.3.patch ├── pull_request_template.md ├── redisinsight ├── __mocks__ │ ├── brotli-dec-wasm.js │ ├── fileMock.js │ ├── monacoMock.js │ ├── monacoYamlMock.js │ ├── rawproto.js │ ├── react-children-utilities.js │ ├── react-resizable-panels.js │ ├── rehypeStringify.js │ ├── remarkGfm.js │ ├── remarkParse.js │ ├── remarkRehype.js │ ├── scssRaw.js │ ├── svg.js │ ├── unified.js │ └── unistUtilsVisit.js ├── api │ ├── .dockerignore │ ├── .eslintignore │ ├── .gitignore │ ├── .jest.setup.ts │ ├── .prettierignore │ ├── .prettierrc │ ├── .yarnclean.prod │ ├── config │ │ ├── default.ts │ │ ├── development.ts │ │ ├── features-config.json │ │ ├── logger.ts │ │ ├── ormconfig.ts │ │ ├── production.ts │ │ ├── stack.ts │ │ ├── staging.ts │ │ ├── swagger.ts │ │ └── test.ts │ ├── data │ │ ├── common │ │ ├── json │ │ ├── manifest.json │ │ ├── search │ │ └── vector-collections │ │ │ ├── bikes │ │ │ └── movies │ ├── esbuild.js │ ├── migration │ │ ├── 1614164490968-initial-migration.ts │ │ ├── 1615480887019-connection-type.ts │ │ ├── 1615990079125-database-name-from-provider.ts │ │ ├── 1615992183565-remove-database-type.ts │ │ ├── 1616520395940-oss-sentinel.ts │ │ ├── 1625771635418-agreements.ts │ │ ├── 1626086601057-server-info.ts │ │ ├── 1626904405170-database-hosting-provider.ts │ │ ├── 1627556171227-settings.ts │ │ ├── 1629729923740-database-modules.ts │ │ ├── 1634219846022-database-db-index.ts │ │ ├── 1634557312500-encryption.ts │ │ ├── 1641795882696-command-execution.ts │ │ ├── 1641805606399-plugin-state.ts │ │ ├── 1650278664000-sni.ts │ │ ├── 1655821010349-notification.ts │ │ ├── 1659687030433-notification-category.ts │ │ ├── 1660664717573-workbench-mode.ts │ │ ├── 1663093411715-workbench-group-mode.ts │ │ ├── 1664785208236-database-analysis.ts │ │ ├── 1664886479051-database-analysis-expiration-groups.ts │ │ ├── 1667368983699-workbench-execution-time.ts │ │ ├── 1667477693934-database.ts │ │ ├── 1670252337342-database-new.ts │ │ ├── 1673035852335-ssh-options.ts │ │ ├── 1673934231410-workbench-and-analysis-db.ts │ │ ├── 1674539211397-browser-history.ts │ │ ├── 1674660306971-database-analysis-recommendations.ts │ │ ├── 1675398140189-database-timeout.ts │ │ ├── 1677135091633-custom-tutorials.ts │ │ ├── 1678182722874-database-compressor.ts │ │ ├── 1681900503586-database-recommendations.ts │ │ ├── 1683006064293-database-recommendation-params.ts │ │ ├── 1684931530343-feature.ts │ │ ├── 1686719451753-database-redis-server.ts │ │ ├── 1687166457712-cloud-database-details.ts │ │ ├── 1687435940110-database-recommendation-unique.ts │ │ ├── 1688989337247-freeCloudDatabase.ts │ │ ├── 1691061058385-cloud-capi-keys.ts │ │ ├── 1691476419592-feature-sso.ts │ │ ├── 1713515657364-ai-history.ts │ │ ├── 1714501203616-ai-history-steps.ts │ │ ├── 1716370509836-rdi.ts │ │ ├── 1718260230164-ai-history.ts │ │ ├── 1726058563737-command-execution.ts │ │ ├── 1729085495444-cloud-session.ts │ │ ├── 1733740794737-database-createdAt.ts │ │ ├── 1737362130798-db-settings.ts │ │ ├── 1738829743482-database-forceStandalone.ts │ │ ├── 1740579711635-rdi-optional-auth.ts │ │ ├── 1741610039177-database-tags.ts │ │ ├── 1741786803681-pre-setup-databases.ts │ │ ├── 1742303245547-key-name-format.ts │ │ ├── 1743432519891-cascade-tags.ts │ │ ├── 1743606395647-encrypt-tags.ts │ │ ├── 1755086732238-update-provider-names.ts │ │ └── index.ts │ ├── nest-cli.json │ ├── package.json │ ├── package.tmp.json │ ├── patches │ │ └── redis-parser+3.0.0.patch │ ├── scripts │ │ ├── default-commands.ts │ │ ├── default-content.ts │ │ └── default-tutorials.ts │ ├── src │ │ ├── __mocks__ │ │ │ ├── ai.ts │ │ │ ├── analytics.ts │ │ │ ├── app-settings.ts │ │ │ ├── autodiscovery.ts │ │ │ ├── browser-history.ts │ │ │ ├── bulk-actions.ts │ │ │ ├── certificates.ts │ │ │ ├── cloud-auth.ts │ │ │ ├── cloud-autodiscovery.ts │ │ │ ├── cloud-capi-key.ts │ │ │ ├── cloud-common.ts │ │ │ ├── cloud-database.ts │ │ │ ├── cloud-job.ts │ │ │ ├── cloud-session.ts │ │ │ ├── cloud-subscription.ts │ │ │ ├── cloud-task.ts │ │ │ ├── cloud-user.ts │ │ │ ├── commands.ts │ │ │ ├── common.ts │ │ │ ├── constants.ts │ │ │ ├── custom-tutorial.ts │ │ │ ├── database-discovery.ts │ │ │ ├── database-import.ts │ │ │ ├── database-info.ts │ │ │ ├── database-recommendation.ts │ │ │ ├── database-settings.ts │ │ │ ├── databases-client.ts │ │ │ ├── databases.ts │ │ │ ├── encryption.ts │ │ │ ├── errors.ts │ │ │ ├── event-emitter.ts │ │ │ ├── feature.ts │ │ │ ├── index.ts │ │ │ ├── notification.ts │ │ │ ├── profiler.ts │ │ │ ├── rdi.ts │ │ │ ├── redis-client.ts │ │ │ ├── redis-databases.ts │ │ │ ├── redis-enterprise.ts │ │ │ ├── redis-info.ts │ │ │ ├── redis-rs.ts │ │ │ ├── redis-sentinel.ts │ │ │ ├── redis-utils.ts │ │ │ ├── redis.ts │ │ │ ├── redisearch.ts │ │ │ ├── server.ts │ │ │ ├── session.ts │ │ │ ├── ssh.ts │ │ │ ├── tags.ts │ │ │ ├── triggered-functions.ts │ │ │ ├── user.ts │ │ │ ├── utm.ts │ │ │ └── workbench.ts │ │ ├── app.module.ts │ │ ├── app.routes.ts │ │ ├── common │ │ │ ├── constants │ │ │ │ ├── api.ts │ │ │ │ ├── general.ts │ │ │ │ ├── history.ts │ │ │ │ ├── index.ts │ │ │ │ ├── recommendations.ts │ │ │ │ ├── redis-string.ts │ │ │ │ └── user.ts │ │ │ ├── decorators │ │ │ │ ├── client-metadata │ │ │ │ │ ├── client-metadata.decorator.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── data-as-json-string.decorator.ts │ │ │ │ ├── database-management.decorator.ts │ │ │ │ ├── default.ts │ │ │ │ ├── hidden-field.decorator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── is-bigger-than.decorator.ts │ │ │ │ ├── is-github-link.decorator.ts │ │ │ │ ├── is-multi-number.decorator.ts │ │ │ │ ├── no-duplicates.decorator.ts │ │ │ │ ├── object-as-map.decorator.ts │ │ │ │ ├── redis-string │ │ │ │ │ ├── any-to-redis-string.decorator.ts │ │ │ │ │ ├── api-query-redis-string-encoding.decorator.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── is-redis-string.decorator.ts │ │ │ │ │ ├── redis-string-to-ascii.decorator.ts │ │ │ │ │ ├── redis-string-to-buffer.decorator.ts │ │ │ │ │ ├── redis-string-to-utf8.decorator.ts │ │ │ │ │ └── redis-string-type.decorator.ts │ │ │ │ ├── session │ │ │ │ │ ├── index.ts │ │ │ │ │ └── session-metadata.decorator.ts │ │ │ │ ├── transform-to-map.decorator.spec.ts │ │ │ │ ├── transform-to-map.decorator.ts │ │ │ │ └── zset-score │ │ │ │ │ ├── index.ts │ │ │ │ │ └── zset-score.decorator.ts │ │ │ ├── exceptions │ │ │ │ ├── index.ts │ │ │ │ └── validation.exception.ts │ │ │ ├── guards │ │ │ │ ├── database-management.guard.spec.ts │ │ │ │ └── database-management.guard.ts │ │ │ ├── interceptors │ │ │ │ ├── browser-serialize.interceptor.ts │ │ │ │ ├── index.ts │ │ │ │ └── timeout.interceptor.ts │ │ │ ├── logger │ │ │ │ ├── app-logger.spec.ts │ │ │ │ └── app-logger.ts │ │ │ ├── middlewares │ │ │ │ ├── body-parser.middleware.ts │ │ │ │ └── single-user-auth.middleware.ts │ │ │ ├── models │ │ │ │ ├── client-metadata.ts │ │ │ │ ├── common.ts │ │ │ │ ├── database-index.ts │ │ │ │ ├── endpoint.ts │ │ │ │ ├── index.ts │ │ │ │ └── session.ts │ │ │ ├── pipes │ │ │ │ ├── database-index.validation.pipe.ts │ │ │ │ └── index.ts │ │ │ ├── transformers │ │ │ │ ├── index.ts │ │ │ │ ├── redis-reply │ │ │ │ │ ├── formatter-manager.spec.ts │ │ │ │ │ ├── formatter-manager.ts │ │ │ │ │ ├── formatter.interface.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── strategies │ │ │ │ │ │ ├── ascii-formatter.strategey.spec.ts │ │ │ │ │ │ ├── ascii-formatter.strategy.ts │ │ │ │ │ │ ├── utf8-formatter.strategy.spec.ts │ │ │ │ │ │ └── utf8-formatter.strategy.ts │ │ │ │ └── redis-string │ │ │ │ │ ├── any-to-redis-string.transformer.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── redis-string-to-ascii.transformer.ts │ │ │ │ │ ├── redis-string-to-buffer.transformer.ts │ │ │ │ │ └── redis-string-to-utf8.transformer.ts │ │ │ ├── utils │ │ │ │ ├── certificate-import.util.ts │ │ │ │ ├── errors.util.ts │ │ │ │ ├── index.ts │ │ │ │ ├── merge.util.spec.ts │ │ │ │ └── merge.util.ts │ │ │ └── validators │ │ │ │ ├── bigger-than.validator.ts │ │ │ │ ├── github-link.validator.ts │ │ │ │ ├── index.ts │ │ │ │ ├── multi-number.validator.ts │ │ │ │ ├── no-duplicates.validator.ts │ │ │ │ ├── redis-string.validator.ts │ │ │ │ └── zset-score.validator.ts │ │ ├── constants │ │ │ ├── agreements-spec.json │ │ │ ├── app-events.ts │ │ │ ├── custom-error-codes.ts │ │ │ ├── error-messages.ts │ │ │ ├── exceptions.ts │ │ │ ├── index.ts │ │ │ ├── recommendations.ts │ │ │ ├── redis-commands.ts │ │ │ ├── redis-connection.ts │ │ │ ├── redis-error-codes.ts │ │ │ ├── redis-keys.ts │ │ │ ├── redis-modules.ts │ │ │ ├── regex.ts │ │ │ ├── sort.ts │ │ │ ├── telemetry-events.ts │ │ │ └── websocket-rooms.ts │ │ ├── core.module.ts │ │ ├── decorators │ │ │ ├── api-endpoint.decorator.ts │ │ │ ├── api-redis-instance-operation.decorator.ts │ │ │ └── api-redis-params.decorator.ts │ │ ├── dto │ │ │ ├── dto-transformer.spec.ts │ │ │ └── dto-transformer.ts │ │ ├── exceptions │ │ │ └── global-exception.filter.ts │ │ ├── init-helper.ts │ │ ├── local-database.module.ts │ │ ├── main.ts │ │ ├── middleware │ │ │ ├── exclude-route.middleware.ts │ │ │ ├── redis-connection │ │ │ │ ├── index.ts │ │ │ │ ├── redis-connection.middleware.ts │ │ │ │ └── route-controllers.ts │ │ │ ├── subpath-proxy.middleware.ts │ │ │ └── x-frame-options.middleware.ts │ │ ├── models │ │ │ ├── index.ts │ │ │ ├── redis-client.ts │ │ │ └── redis-cluster.ts │ │ ├── modules │ │ │ ├── ai │ │ │ │ ├── chat │ │ │ │ │ ├── ai-chat.controller.ts │ │ │ │ │ ├── ai-chat.module.ts │ │ │ │ │ ├── ai-chat.service.spec.ts │ │ │ │ │ ├── ai-chat.service.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ └── send.ai-chat.message.dto.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── conv-ai.bad-request.exception.ts │ │ │ │ │ │ ├── conv-ai.error.handler.spec.ts │ │ │ │ │ │ ├── conv-ai.error.handler.ts │ │ │ │ │ │ ├── conv-ai.forbidden.exception.ts │ │ │ │ │ │ ├── conv-ai.internal-server-error.exception.ts │ │ │ │ │ │ ├── conv-ai.not-found.exception.ts │ │ │ │ │ │ ├── conv-ai.unauthorized.exception.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── ai-chat.message.ts │ │ │ │ │ │ ├── ai-chat.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── providers │ │ │ │ │ │ ├── conv-ai.provider.spec.ts │ │ │ │ │ │ └── conv-ai.provider.ts │ │ │ │ └── query │ │ │ │ │ ├── ai-query.controller.ts │ │ │ │ │ ├── ai-query.module.ts │ │ │ │ │ ├── ai-query.service.spec.ts │ │ │ │ │ ├── ai-query.service.ts │ │ │ │ │ ├── dto │ │ │ │ │ └── send.ai-query.message.dto.ts │ │ │ │ │ ├── entities │ │ │ │ │ └── ai-query.message.entity.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ ├── a-queryi.error.handler.spec.ts │ │ │ │ │ ├── ai-query.bad-request.exception.ts │ │ │ │ │ ├── ai-query.error.handler.ts │ │ │ │ │ ├── ai-query.forbidden.exception.ts │ │ │ │ │ ├── ai-query.internal-server-error.exception.ts │ │ │ │ │ ├── ai-query.not-found.exception.ts │ │ │ │ │ ├── ai-query.rate-limit.max-tokens.exception.ts │ │ │ │ │ ├── ai-query.rate-limit.request.exception.ts │ │ │ │ │ ├── ai-query.rate-limit.token.exception.ts │ │ │ │ │ ├── ai-query.unauthorized.exception.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── models │ │ │ │ │ ├── ai-query.auth-data.ts │ │ │ │ │ ├── ai-query.common.ts │ │ │ │ │ ├── ai-query.intermediate-step.ts │ │ │ │ │ ├── ai-query.message.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── providers │ │ │ │ │ ├── ai-query.provider.spec.ts │ │ │ │ │ ├── ai-query.provider.ts │ │ │ │ │ └── auth │ │ │ │ │ │ ├── ai-query-auth.provider.ts │ │ │ │ │ │ ├── local.ai-query-auth.provider.spec.ts │ │ │ │ │ │ └── local.ai-query-auth.provider.ts │ │ │ │ │ ├── repositories │ │ │ │ │ ├── ai-query.context.repository.ts │ │ │ │ │ ├── ai-query.message.repository.ts │ │ │ │ │ ├── in-memory.ai-query.context.repository.spec.ts │ │ │ │ │ ├── in-memory.ai-query.context.repository.ts │ │ │ │ │ ├── local.ai-query.message.repository.spec.ts │ │ │ │ │ └── local.ai-query.message.repository.ts │ │ │ │ │ └── utils │ │ │ │ │ ├── context.util.spec.ts │ │ │ │ │ └── context.util.ts │ │ │ ├── analytics │ │ │ │ ├── analytics.controller.ts │ │ │ │ ├── analytics.module.ts │ │ │ │ ├── analytics.service.spec.ts │ │ │ │ ├── analytics.service.ts │ │ │ │ ├── command.telemetry.base.service.spec.ts │ │ │ │ ├── command.telemetry.base.service.ts │ │ │ │ ├── dto │ │ │ │ │ └── analytics.dto.ts │ │ │ │ ├── telemetry.base.service.spec.ts │ │ │ │ └── telemetry.base.service.ts │ │ │ ├── auth │ │ │ │ ├── auth.module.ts │ │ │ │ ├── session-metadata │ │ │ │ │ ├── adapters │ │ │ │ │ │ ├── session-metadata.adapter.spec.ts │ │ │ │ │ │ └── session-metadata.adapter.ts │ │ │ │ │ └── decorators │ │ │ │ │ │ └── ws-session-metadata.decorator.ts │ │ │ │ └── window-auth │ │ │ │ │ ├── adapters │ │ │ │ │ └── window-auth.adapter.ts │ │ │ │ │ ├── constants │ │ │ │ │ └── exceptions.ts │ │ │ │ │ ├── middleware │ │ │ │ │ └── window.auth.middleware.ts │ │ │ │ │ ├── strategies │ │ │ │ │ └── abstract.window.auth.strategy.ts │ │ │ │ │ ├── window-auth.module.ts │ │ │ │ │ ├── window-auth.service.spec.ts │ │ │ │ │ └── window-auth.service.ts │ │ │ ├── browser │ │ │ │ ├── __mocks__ │ │ │ │ │ ├── hash.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── keys.ts │ │ │ │ │ ├── list.ts │ │ │ │ │ ├── set.ts │ │ │ │ │ ├── streams.ts │ │ │ │ │ └── z-set.ts │ │ │ │ ├── browser-history │ │ │ │ │ ├── browser-history.controller.ts │ │ │ │ │ ├── browser-history.module.ts │ │ │ │ │ ├── browser-history.service.spec.ts │ │ │ │ │ ├── browser-history.service.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create.browser-history.dto.ts │ │ │ │ │ │ ├── delete.browser-history.dto.ts │ │ │ │ │ │ ├── delete.browser-history.query.dto.ts │ │ │ │ │ │ ├── delete.browser-history.response.dto.ts │ │ │ │ │ │ ├── get.browser-history.dto.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── list.browser-history.dto.ts │ │ │ │ │ ├── entities │ │ │ │ │ │ └── browser-history.entity.ts │ │ │ │ │ └── repositories │ │ │ │ │ │ ├── browser-history.repository.ts │ │ │ │ │ │ ├── local.browser-history.repository.spec.ts │ │ │ │ │ │ └── local.browser-history.repository.ts │ │ │ │ ├── browser.base.controller.ts │ │ │ │ ├── browser.module.ts │ │ │ │ ├── constants │ │ │ │ │ └── browser-tool-commands.ts │ │ │ │ ├── decorators │ │ │ │ │ └── browser-client-metadata.decorator.ts │ │ │ │ ├── hash │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── add.fields-to-hash.dto.ts │ │ │ │ │ │ ├── create.hash-with-expire.dto.ts │ │ │ │ │ │ ├── delete.fields-from-hash.dto.ts │ │ │ │ │ │ ├── delete.fields-from-hash.response.ts │ │ │ │ │ │ ├── get.hash-fields.dto.ts │ │ │ │ │ │ ├── get.hash-fields.response.ts │ │ │ │ │ │ ├── hash-field-ttl.dto.ts │ │ │ │ │ │ ├── hash-field.dto.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── update.hash-fields-ttl.dto.ts │ │ │ │ │ ├── hash.controller.ts │ │ │ │ │ ├── hash.module.ts │ │ │ │ │ ├── hash.service.spec.ts │ │ │ │ │ └── hash.service.ts │ │ │ │ ├── keys │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── delete.keys.dto.ts │ │ │ │ │ │ ├── delete.keys.response.ts │ │ │ │ │ │ ├── get.keys-info.dto.ts │ │ │ │ │ │ ├── get.keys-info.response.ts │ │ │ │ │ │ ├── get.keys-with-details.response.ts │ │ │ │ │ │ ├── get.keys.dto.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── key-with-expire.dto.ts │ │ │ │ │ │ ├── key.dto.ts │ │ │ │ │ │ ├── rename.key.dto.ts │ │ │ │ │ │ ├── rename.key.response.ts │ │ │ │ │ │ ├── scan-data-type.dto.ts │ │ │ │ │ │ ├── update.key-ttl.dto.ts │ │ │ │ │ │ └── update.key-ttl.response.ts │ │ │ │ │ ├── key-info │ │ │ │ │ │ ├── key-info.provider.spec.ts │ │ │ │ │ │ ├── key-info.provider.ts │ │ │ │ │ │ └── strategies │ │ │ │ │ │ │ ├── graph.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── graph.key-info.strategy.ts │ │ │ │ │ │ │ ├── hash.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── hash.key-info.strategy.ts │ │ │ │ │ │ │ ├── key-info.strategy.ts │ │ │ │ │ │ │ ├── list.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── list.key-info.strategy.ts │ │ │ │ │ │ │ ├── rejson-rl.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── rejson-rl.key-info.strategy.ts │ │ │ │ │ │ │ ├── set.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── set.key-info.strategy.ts │ │ │ │ │ │ │ ├── stream.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── stream.key-info.strategy.ts │ │ │ │ │ │ │ ├── string.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── string.key-info.strategy.ts │ │ │ │ │ │ │ ├── ts.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── ts.key-info.strategy.ts │ │ │ │ │ │ │ ├── unsupported.key-info.strategy.spec.ts │ │ │ │ │ │ │ ├── unsupported.key-info.strategy.ts │ │ │ │ │ │ │ ├── z-set.key-info.strategy.spec.ts │ │ │ │ │ │ │ └── z-set.key-info.strategy.ts │ │ │ │ │ ├── keys.controller.ts │ │ │ │ │ ├── keys.module.ts │ │ │ │ │ ├── keys.service.spec.ts │ │ │ │ │ ├── keys.service.ts │ │ │ │ │ └── scanner │ │ │ │ │ │ ├── scanner.interface.ts │ │ │ │ │ │ ├── scanner.spec.ts │ │ │ │ │ │ ├── scanner.ts │ │ │ │ │ │ └── strategies │ │ │ │ │ │ ├── cluster.scanner.strategy.spec.ts │ │ │ │ │ │ ├── cluster.scanner.strategy.ts │ │ │ │ │ │ ├── scanner.strategy.ts │ │ │ │ │ │ ├── standalone.scanner.strategy.spec.ts │ │ │ │ │ │ └── standalone.scanner.strategy.ts │ │ │ │ ├── list │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create.list-with-expire.dto.ts │ │ │ │ │ │ ├── delete.list-elements.dto.ts │ │ │ │ │ │ ├── delete.list-elements.response.ts │ │ │ │ │ │ ├── get.list-element.response.ts │ │ │ │ │ │ ├── get.list-elements.dto.ts │ │ │ │ │ │ ├── get.list-elements.response.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── push.element-to-list.dto.ts │ │ │ │ │ │ ├── push.list-elements.response.ts │ │ │ │ │ │ ├── set.list-element.dto.ts │ │ │ │ │ │ └── set.list-element.response.ts │ │ │ │ │ ├── list.controller.ts │ │ │ │ │ ├── list.module.ts │ │ │ │ │ ├── list.service.spec.ts │ │ │ │ │ └── list.service.ts │ │ │ │ ├── redisearch │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create.redisearch-index.dto.ts │ │ │ │ │ │ ├── index.delete.dto.ts │ │ │ │ │ │ ├── index.info.dto.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── list.redisearch-indexes.response.ts │ │ │ │ │ │ └── search.redisearch.dto.ts │ │ │ │ │ ├── redisearch.controller.ts │ │ │ │ │ ├── redisearch.module.ts │ │ │ │ │ ├── redisearch.service.spec.ts │ │ │ │ │ └── redisearch.service.ts │ │ │ │ ├── rejson-rl │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create.rejson-rl-with-expire.dto.ts │ │ │ │ │ │ ├── create.rejson-rl.dto.ts │ │ │ │ │ │ ├── get.rejson-rl.dto.ts │ │ │ │ │ │ ├── get.rejson-rl.response.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── modify.rejson-rl-arr-append.dto.ts │ │ │ │ │ │ ├── modify.rejson-rl-set.dto.ts │ │ │ │ │ │ ├── remove.rejson-rl.dto.ts │ │ │ │ │ │ ├── remove.rejson-rl.response.ts │ │ │ │ │ │ └── safe.rejson-rl-data.dto.ts │ │ │ │ │ ├── rejson-rl.controller.ts │ │ │ │ │ ├── rejson-rl.module.ts │ │ │ │ │ ├── rejson-rl.service.spec.ts │ │ │ │ │ └── rejson-rl.service.ts │ │ │ │ ├── set │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── add.members-to-set.dto.ts │ │ │ │ │ │ ├── create.set-with-expire.dto.ts │ │ │ │ │ │ ├── delete.members-from-set.dto.ts │ │ │ │ │ │ ├── delete.members-from-set.response.ts │ │ │ │ │ │ ├── get.set-members.dto.ts │ │ │ │ │ │ ├── get.set-members.response.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── set.controller.ts │ │ │ │ │ ├── set.module.ts │ │ │ │ │ ├── set.service.spec.ts │ │ │ │ │ └── set.service.ts │ │ │ │ ├── stream │ │ │ │ │ ├── controllers │ │ │ │ │ │ ├── consumer-group.controller.ts │ │ │ │ │ │ ├── consumer.controller.ts │ │ │ │ │ │ └── stream.controller.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── ack.pending-entries.dto.ts │ │ │ │ │ │ ├── ack.pending-entries.response.ts │ │ │ │ │ │ ├── add.stream-entries.dto.ts │ │ │ │ │ │ ├── add.stream-entries.response.ts │ │ │ │ │ │ ├── claim.pending-entries.response.ts │ │ │ │ │ │ ├── claim.pending-entry.dto.ts │ │ │ │ │ │ ├── create.consumer-groups.dto.ts │ │ │ │ │ │ ├── create.stream.dto.ts │ │ │ │ │ │ ├── delete.consumer-groups.dto.ts │ │ │ │ │ │ ├── delete.consumer-groups.response.ts │ │ │ │ │ │ ├── delete.consumers.dto.ts │ │ │ │ │ │ ├── delete.stream-entries.dto.ts │ │ │ │ │ │ ├── delete.stream-entries.response.ts │ │ │ │ │ │ ├── get.consumers.dto.ts │ │ │ │ │ │ ├── get.pending-entries.dto.ts │ │ │ │ │ │ ├── get.stream-entries.dto.ts │ │ │ │ │ │ ├── get.stream-entries.response.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── stream-entry.dto.ts │ │ │ │ │ │ └── update.consumer-group.dto.ts │ │ │ │ │ ├── services │ │ │ │ │ │ ├── consumer-group.service.spec.ts │ │ │ │ │ │ ├── consumer-group.service.ts │ │ │ │ │ │ ├── consumer.service.spec.ts │ │ │ │ │ │ ├── consumer.service.ts │ │ │ │ │ │ ├── stream.service.spec.ts │ │ │ │ │ │ └── stream.service.ts │ │ │ │ │ └── stream.module.ts │ │ │ │ ├── string │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── get.string-info.dto.ts │ │ │ │ │ │ ├── get.string-value.response.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── set.string-with-expire.dto.ts │ │ │ │ │ │ └── set.string.dto.ts │ │ │ │ │ ├── string.controller.ts │ │ │ │ │ ├── string.module.ts │ │ │ │ │ ├── string.service.spec.ts │ │ │ │ │ └── string.service.ts │ │ │ │ ├── utils │ │ │ │ │ ├── checkKeyExistsing.spec.ts │ │ │ │ │ ├── checkKeyExistsing.ts │ │ │ │ │ ├── clusterCursor.spec.ts │ │ │ │ │ ├── clusterCursor.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── redisIndexInfo.ts │ │ │ │ └── z-set │ │ │ │ │ ├── dto │ │ │ │ │ ├── add.members-to-z-set.dto.ts │ │ │ │ │ ├── create.z-set-with-expire.dto.ts │ │ │ │ │ ├── delete.members-from-z-set.dto.ts │ │ │ │ │ ├── delete.members-from-z-set.response.ts │ │ │ │ │ ├── get.z-set-members.dto.ts │ │ │ │ │ ├── get.z-set.response.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── search.z-set-members.dto.ts │ │ │ │ │ ├── search.z-set-members.response.ts │ │ │ │ │ ├── search.z-set.response.ts │ │ │ │ │ ├── update.member-in-z-set.dto.ts │ │ │ │ │ └── z-set-member.dto.ts │ │ │ │ │ ├── z-set.controller.ts │ │ │ │ │ ├── z-set.module.ts │ │ │ │ │ ├── z-set.service.spec.ts │ │ │ │ │ └── z-set.service.ts │ │ │ ├── bulk-actions │ │ │ │ ├── bulk-actions.analytics.spec.ts │ │ │ │ ├── bulk-actions.analytics.ts │ │ │ │ ├── bulk-actions.controller.ts │ │ │ │ ├── bulk-actions.gateway.ts │ │ │ │ ├── bulk-actions.module.ts │ │ │ │ ├── bulk-actions.service.spec.ts │ │ │ │ ├── bulk-actions.service.ts │ │ │ │ ├── bulk-import.controller.ts │ │ │ │ ├── bulk-import.service.spec.ts │ │ │ │ ├── bulk-import.service.ts │ │ │ │ ├── constants │ │ │ │ │ └── index.ts │ │ │ │ ├── dto │ │ │ │ │ ├── bulk-action-id.dto.ts │ │ │ │ │ ├── create-bulk-action.dto.ts │ │ │ │ │ └── upload-import-file-by-path.dto.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── bulk-action-filter-overview.interface.ts │ │ │ │ │ ├── bulk-action-overview.interface.ts │ │ │ │ │ ├── bulk-action-progress-overview.interface.ts │ │ │ │ │ ├── bulk-action-summary-overview.interface.ts │ │ │ │ │ ├── bulk-action.interface.ts │ │ │ │ │ ├── bulk-action.runner.interface.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── models │ │ │ │ │ ├── bulk-action-filter.spec.ts │ │ │ │ │ ├── bulk-action-filter.ts │ │ │ │ │ ├── bulk-action-progress.spec.ts │ │ │ │ │ ├── bulk-action-progress.ts │ │ │ │ │ ├── bulk-action-summary.spec.ts │ │ │ │ │ ├── bulk-action-summary.ts │ │ │ │ │ ├── bulk-action.spec.ts │ │ │ │ │ ├── bulk-action.ts │ │ │ │ │ └── runners │ │ │ │ │ │ ├── abstract.bulk-action.runner.spec.ts │ │ │ │ │ │ ├── abstract.bulk-action.runner.ts │ │ │ │ │ │ └── simple │ │ │ │ │ │ ├── abstract.bulk-action.simple.runner.spec.ts │ │ │ │ │ │ ├── abstract.bulk-action.simple.runner.ts │ │ │ │ │ │ ├── delete.bulk-action.simple.runner.spec.ts │ │ │ │ │ │ ├── delete.bulk-action.simple.runner.ts │ │ │ │ │ │ ├── unlink.bulk-action.simple.runner.spec.ts │ │ │ │ │ │ └── unlink.bulk-action.simple.runner.ts │ │ │ │ └── providers │ │ │ │ │ ├── bulk-actions.provider.spec.ts │ │ │ │ │ └── bulk-actions.provider.ts │ │ │ ├── certificate │ │ │ │ ├── ca-certificate.controller.ts │ │ │ │ ├── ca-certificate.service.spec.ts │ │ │ │ ├── ca-certificate.service.ts │ │ │ │ ├── certificate.module.ts │ │ │ │ ├── client-certificate.controller.ts │ │ │ │ ├── client-certificate.service.spec.ts │ │ │ │ ├── client-certificate.service.ts │ │ │ │ ├── dto │ │ │ │ │ ├── create.ca-certificate.dto.ts │ │ │ │ │ ├── create.client-certificate.dto.ts │ │ │ │ │ ├── use.ca-certificate.dto.ts │ │ │ │ │ └── use.client-certificate.dto.ts │ │ │ │ ├── entities │ │ │ │ │ ├── ca-certificate.entity.ts │ │ │ │ │ └── client-certificate.entity.ts │ │ │ │ ├── models │ │ │ │ │ ├── ca-certificate.ts │ │ │ │ │ └── client-certificate.ts │ │ │ │ ├── repositories │ │ │ │ │ ├── ca-certificate.repository.ts │ │ │ │ │ ├── client-certificate.repository.ts │ │ │ │ │ ├── local.ca-certificate.repository.spec.ts │ │ │ │ │ ├── local.ca-certificate.repository.ts │ │ │ │ │ ├── local.client-certificate.repository.spec.ts │ │ │ │ │ └── local.client-certificate.repository.ts │ │ │ │ └── transformers │ │ │ │ │ ├── ca-cert.transformer.spec.ts │ │ │ │ │ ├── ca-cert.transformer.ts │ │ │ │ │ ├── client-cert.transformer.spec.ts │ │ │ │ │ └── client-cert.transformer.ts │ │ │ ├── cli │ │ │ │ ├── cli.module.ts │ │ │ │ ├── constants │ │ │ │ │ └── errors.ts │ │ │ │ ├── controllers │ │ │ │ │ └── cli.controller.ts │ │ │ │ ├── decorators │ │ │ │ │ ├── api-cli-params.decorator.ts │ │ │ │ │ └── cli-client-metadata.decorator.ts │ │ │ │ ├── dto │ │ │ │ │ └── cli.dto.ts │ │ │ │ ├── services │ │ │ │ │ ├── cli-analytics │ │ │ │ │ │ ├── cli-analytics.service.spec.ts │ │ │ │ │ │ └── cli-analytics.service.ts │ │ │ │ │ └── cli-business │ │ │ │ │ │ ├── cli-business.service.spec.ts │ │ │ │ │ │ ├── cli-business.service.ts │ │ │ │ │ │ └── output-formatter │ │ │ │ │ │ ├── output-formatter-manager.spec.ts │ │ │ │ │ │ ├── output-formatter-manager.ts │ │ │ │ │ │ ├── output-formatter.interface.ts │ │ │ │ │ │ └── strategies │ │ │ │ │ │ ├── raw-formatter.strategy.spec.ts │ │ │ │ │ │ ├── raw-formatter.strategy.ts │ │ │ │ │ │ ├── text-formatter.strategy.spec.ts │ │ │ │ │ │ ├── text-formatter.strategy.ts │ │ │ │ │ │ └── utf-8-formatter.strategy.ts │ │ │ │ └── utils │ │ │ │ │ ├── getUnsupportedCommands.spec.ts │ │ │ │ │ └── getUnsupportedCommands.ts │ │ │ ├── cloud │ │ │ │ ├── auth │ │ │ │ │ ├── auth-strategy │ │ │ │ │ │ ├── cloud-auth.strategy.spec.ts │ │ │ │ │ │ ├── cloud-auth.strategy.ts │ │ │ │ │ │ ├── github-idp.cloud.auth-strategy.ts │ │ │ │ │ │ ├── google-idp.cloud.auth-strategy.ts │ │ │ │ │ │ ├── sso-idp.cloud.auth-strategy.spec.ts │ │ │ │ │ │ ├── sso-idp.cloud.auth-strategy.ts │ │ │ │ │ │ └── tcp-cloud.auth.strategy.ts │ │ │ │ │ ├── cloud-auth.analytics.spec.ts │ │ │ │ │ ├── cloud-auth.analytics.ts │ │ │ │ │ ├── cloud-auth.controller.ts │ │ │ │ │ ├── cloud-auth.module.ts │ │ │ │ │ ├── cloud-auth.service.spec.ts │ │ │ │ │ ├── cloud-auth.service.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── cloud-oauth.canceled.exception.ts │ │ │ │ │ │ ├── cloud-oauth.github-email-permission.exception.ts │ │ │ │ │ │ ├── cloud-oauth.misconfiguration.exception.ts │ │ │ │ │ │ ├── cloud-oauth.missed-required-data.exception.ts │ │ │ │ │ │ ├── cloud-oauth.sso-unsupported-email.exception.ts │ │ │ │ │ │ ├── cloud-oauth.unexpected-error.exception.ts │ │ │ │ │ │ ├── cloud-oauth.unknown-authorization-request.exception.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── models │ │ │ │ │ │ ├── cloud-auth-request-info.ts │ │ │ │ │ │ ├── cloud-auth-request.ts │ │ │ │ │ │ ├── cloud-auth-response.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── autodiscovery │ │ │ │ │ ├── cloud-autodicovery.analytics.spec.ts │ │ │ │ │ ├── cloud-autodiscovery.analytics.ts │ │ │ │ │ ├── cloud-autodiscovery.service.spec.ts │ │ │ │ │ ├── cloud-autodiscovery.service.ts │ │ │ │ │ ├── cloud.autodiscovery.controller.ts │ │ │ │ │ ├── cloud.autodiscovery.module.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── discover-cloud-databases.dto.ts │ │ │ │ │ │ ├── import-cloud-database.dto.ts │ │ │ │ │ │ ├── import-cloud-database.response.ts │ │ │ │ │ │ ├── import-cloud-databases.dto.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── me.cloud-autodiscovery.service.spec.ts │ │ │ │ │ ├── me.cloud-autodiscovery.service.ts │ │ │ │ │ ├── me.cloud.autodiscovery.controller.ts │ │ │ │ │ └── models │ │ │ │ │ │ ├── cloud-autodiscovery-auth-type.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── capi-key │ │ │ │ │ ├── cloud-capi-key.analytics.spec.ts │ │ │ │ │ ├── cloud-capi-key.analytics.ts │ │ │ │ │ ├── cloud-capi-key.api.provider.spec.ts │ │ │ │ │ ├── cloud-capi-key.api.provider.ts │ │ │ │ │ ├── cloud-capi-key.controller.ts │ │ │ │ │ ├── cloud-capi-key.module.ts │ │ │ │ │ ├── cloud-capi-key.service.spec.ts │ │ │ │ │ ├── cloud-capi-key.service.ts │ │ │ │ │ ├── entity │ │ │ │ │ │ └── cloud-capi-key.entity.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── cloud-capi-key.not-found.exception.ts │ │ │ │ │ │ ├── cloud-capi-key.unauthorized.exception.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── model │ │ │ │ │ │ ├── api.interface.ts │ │ │ │ │ │ ├── cloud-capi-key.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── repository │ │ │ │ │ │ ├── cloud-capi-key.repository.ts │ │ │ │ │ │ ├── local.cloud-capi-key.repository.spec.ts │ │ │ │ │ │ └── local.cloud-capi-key.repository.ts │ │ │ │ ├── cloud-sso.feature.flag.ts │ │ │ │ ├── cloud.module.ts │ │ │ │ ├── common │ │ │ │ │ ├── constants │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── decorators │ │ │ │ │ │ └── cloud-auth.decorator.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── cloud.capi.auth.dto.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── cloud-api.bad-request.exception.ts │ │ │ │ │ │ ├── cloud-api.error.handler.ts │ │ │ │ │ │ ├── cloud-api.forbidden.exception.ts │ │ │ │ │ │ ├── cloud-api.internal-server-error.exception.ts │ │ │ │ │ │ ├── cloud-api.not-found.exception.ts │ │ │ │ │ │ ├── cloud-api.unauthorized.exception.ts │ │ │ │ │ │ ├── cloud-capi.error.handler.ts │ │ │ │ │ │ ├── cloud-capi.unauthorized.exception.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── api.interface.ts │ │ │ │ │ │ ├── capi.interface.ts │ │ │ │ │ │ ├── cloud-request-utm.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── providers │ │ │ │ │ │ ├── cloud.api.provider.spec.ts │ │ │ │ │ │ ├── cloud.api.provider.ts │ │ │ │ │ │ ├── cloud.capi.provider.spec.ts │ │ │ │ │ │ └── cloud.capi.provider.ts │ │ │ │ ├── database │ │ │ │ │ ├── cloud-database.analytics.spec.ts │ │ │ │ │ ├── cloud-database.analytics.ts │ │ │ │ │ ├── cloud-database.capi.provider.spec.ts │ │ │ │ │ ├── cloud-database.capi.provider.ts │ │ │ │ │ ├── cloud-database.capi.service.spec.ts │ │ │ │ │ ├── cloud-database.capi.service.ts │ │ │ │ │ ├── cloud-database.module.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create-free-cloud-database.dto.ts │ │ │ │ │ │ ├── get-cloud-subscription-database.dto.ts │ │ │ │ │ │ ├── get-cloud-subscription-databases.dto.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── entities │ │ │ │ │ │ └── cloud-database-details.entity.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── capi.interface.ts │ │ │ │ │ │ ├── cloud-database-details.ts │ │ │ │ │ │ ├── cloud-database.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── cloud-data-converter.spec.ts │ │ │ │ │ │ ├── cloud-data-converter.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── job │ │ │ │ │ ├── cloud-job.controller.ts │ │ │ │ │ ├── cloud-job.factory.ts │ │ │ │ │ ├── cloud-job.gateway.ts │ │ │ │ │ ├── cloud-job.module.ts │ │ │ │ │ ├── cloud-job.provider.ts │ │ │ │ │ ├── cloud-job.service.spec.ts │ │ │ │ │ ├── cloud-job.service.ts │ │ │ │ │ ├── constants │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create-database.cloud-job.data.dto.ts │ │ │ │ │ │ ├── create-subscription-and-database.cloud-job.data.dto.ts │ │ │ │ │ │ ├── create.cloud-job.dto.ts │ │ │ │ │ │ ├── import-database.cloud-job.data.dto.ts │ │ │ │ │ │ └── monitor.cloud-job.dto.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ │ ├── cloud-database-already-exists-free.exception.ts │ │ │ │ │ │ ├── cloud-database-endpoint-invalid.exception.ts │ │ │ │ │ │ ├── cloud-database-import-forbidden.exception.ts │ │ │ │ │ │ ├── cloud-database-in-failed-state.exception.ts │ │ │ │ │ │ ├── cloud-database-in-unexpected-state.exception.ts │ │ │ │ │ │ ├── cloud-job-aborted.exception.ts │ │ │ │ │ │ ├── cloud-job-not-found.exception.ts │ │ │ │ │ │ ├── cloud-job-unexpected-error.exception.ts │ │ │ │ │ │ ├── cloud-job-unsupported.exception.ts │ │ │ │ │ │ ├── cloud-job.error.handler.ts │ │ │ │ │ │ ├── cloud-plan-not-found-free.exception.ts │ │ │ │ │ │ ├── cloud-subscription-already-exists-free.exception.ts │ │ │ │ │ │ ├── cloud-subscription-in-failed-state.exception.ts │ │ │ │ │ │ ├── cloud-subscription-in-unexpected-state.exception.ts │ │ │ │ │ │ ├── cloud-subscription-unable-to-determine.exception.ts │ │ │ │ │ │ ├── cloud-task-no-resource-id.exception.ts │ │ │ │ │ │ ├── cloud-task-not-found.exception.ts │ │ │ │ │ │ ├── cloud-task-processing-error.exception.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── jobs │ │ │ │ │ │ ├── cloud-job.spec.ts │ │ │ │ │ │ ├── cloud-job.ts │ │ │ │ │ │ ├── create-free-database.cloud-job.ts │ │ │ │ │ │ ├── create-free-subscription-and-database.cloud-job.ts │ │ │ │ │ │ ├── create-free-subscription.cloud-job.ts │ │ │ │ │ │ ├── import-free-database.cloud-job.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── wait-for-active-database.cloud-job.ts │ │ │ │ │ │ ├── wait-for-active-subscription.cloud-job.ts │ │ │ │ │ │ └── wait-for-task.cloud-job.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── cloud-job-info.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── transformers │ │ │ │ │ │ ├── cloud-job-data.transformer.spec.ts │ │ │ │ │ │ └── cloud-job-data.transformer.ts │ │ │ │ ├── session │ │ │ │ │ ├── cloud-session.module.ts │ │ │ │ │ ├── cloud-session.service.spec.ts │ │ │ │ │ ├── cloud-session.service.ts │ │ │ │ │ ├── entities │ │ │ │ │ │ └── cloud.session.entity.ts │ │ │ │ │ ├── models │ │ │ │ │ │ └── cloud-session.ts │ │ │ │ │ └── repositories │ │ │ │ │ │ ├── cloud.session.repository.ts │ │ │ │ │ │ ├── local.cloud.session.repository.spec.ts │ │ │ │ │ │ └── local.cloud.session.repository.ts │ │ │ │ ├── subscription │ │ │ │ │ ├── cloud-subscription.api.service.spec.ts │ │ │ │ │ ├── cloud-subscription.api.service.ts │ │ │ │ │ ├── cloud-subscription.capi.service.spec.ts │ │ │ │ │ ├── cloud-subscription.capi.service.ts │ │ │ │ │ ├── cloud-subscription.controller.ts │ │ │ │ │ ├── cloud-subscription.module.ts │ │ │ │ │ ├── dto │ │ │ │ │ │ ├── create-free-cloud-subscription.dto.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── plans.cloud-subscription.dto.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── api.interface.ts │ │ │ │ │ │ ├── capi.interface.ts │ │ │ │ │ │ ├── cloud-subscription-plan.ts │ │ │ │ │ │ ├── cloud-subscription-region.ts │ │ │ │ │ │ ├── cloud-subscription.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── cloud-subscription.api.provider.spec.ts │ │ │ │ │ │ ├── cloud-subscription.api.provider.ts │ │ │ │ │ │ ├── cloud-subscription.capi.provider.spec.ts │ │ │ │ │ │ └── cloud-subscription.capi.provider.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── cloud-data-converter.spec.ts │ │ │ │ │ │ ├── cloud-data-converter.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── task │ │ │ │ │ ├── cloud-task.capi.service.spec.ts │ │ │ │ │ ├── cloud-task.capi.service.ts │ │ │ │ │ ├── cloud-task.module.ts │ │ │ │ │ ├── models │ │ │ │ │ │ ├── capi.interface.ts │ │ │ │ │ │ ├── cloud-task.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── providers │ │ │ │ │ │ ├── cloud-task.capi.provider.spec.ts │ │ │ │ │ │ └── cloud-task.capi.provider.ts │ │ │ │ │ └── utils │ │ │ │ │ │ ├── cloud-data-converter.ts │ │ │ │ │ │ └── index.ts │ │ │ │ └── user │ │ │ │ │ ├── cloud-user.api.service.spec.ts │ │ │ │ │ ├── cloud-user.api.service.ts │ │ │ │ │ ├── cloud-user.capi.service.spec.ts │ │ │ │ │ ├── cloud-user.capi.service.ts │ │ │ │ │ ├── cloud-user.controller.ts │ │ │ │ │ ├── cloud-user.module.ts │ │ │ │ │ ├── models │ │ │ │ │ ├── api.interface.ts │ │ │ │ │ ├── capi.interface.ts │ │ │ │ │ ├── cloud-account-info.ts │ │ │ │ │ ├── cloud-user-account.ts │ │ │ │ │ ├── cloud-user.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── providers │ │ │ │ │ ├── cloud-user.api.provider.spec.ts │ │ │ │ │ ├── cloud-user.api.provider.ts │ │ │ │ │ ├── cloud-user.capi.provider.spec.ts │ │ │ │ │ └── cloud-user.capi.provider.ts │ │ │ │ │ ├── repositories │ │ │ │ │ ├── cloud-user.repository.ts │ │ │ │ │ ├── in-session.cloud-user.repository.spec.ts │ │ │ │ │ └── in-session.cloud-user.repository.ts │ │ │ │ │ └── utils │ │ │ │ │ ├── cloud-data-converter.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── token.spec.ts │ │ │ │ │ └── token.ts │ │ │ ├── cluster-monitor │ │ │ │ ├── cluster-monitor.controller.ts │ │ │ │ ├── cluster-monitor.module.ts │ │ │ │ ├── cluster-monitor.service.ts │ │ │ │ ├── models │ │ │ │ │ ├── cluster-details.ts │ │ │ │ │ ├── cluster-node-details.ts │ │ │ │ │ └── index.ts │ │ │ │ └── strategies │ │ │ │ │ ├── abstract.info.strategy.spec.ts │ │ │ │ │ ├── abstract.info.strategy.ts │ │ │ │ │ ├── cluster-nodes.info.strategy.spec.ts │ │ │ │ │ ├── cluster-nodes.info.strategy.ts │ │ │ │ │ ├── cluster-shards.info.strategy.spec.ts │ │ │ │ │ ├── cluster-shards.info.strategy.ts │ │ │ │ │ └── cluster.info.interface.ts │ │ │ ├── commands │ │ │ │ ├── commands-json.provider.spec.ts │ │ │ │ ├── commands-json.provider.ts │ │ │ │ ├── commands.controller.ts │ │ │ │ ├── commands.module.ts │ │ │ │ ├── commands.service.spec.ts │ │ │ │ └── commands.service.ts │ │ │ ├── constants │ │ │ │ ├── constants.module.ts │ │ │ │ └── providers │ │ │ │ │ ├── constants.provider.ts │ │ │ │ │ └── local.constants.provider.ts │ │ │ ├── custom-tutorial │ │ │ │ ├── custom-tutorial.analytics.spec.ts │ │ │ │ ├── custom-tutorial.analytics.ts │ │ │ │ ├── custom-tutorial.controller.ts │ │ │ │ ├── custom-tutorial.module.ts │ │ │ │ ├── custom-tutorial.service.spec.ts │ │ │ │ ├── custom-tutorial.service.ts │ │ │ │ ├── dto │ │ │ │ │ └── upload.custom-tutorial.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── custom-tutorial.entity.ts │ │ │ │ ├── models │ │ │ │ │ ├── custom-tutorial.manifest.ts │ │ │ │ │ └── custom-tutorial.ts │ │ │ │ ├── providers │ │ │ │ │ ├── custom-tutorial.fs.provider.spec.ts │ │ │ │ │ ├── custom-tutorial.fs.provider.ts │ │ │ │ │ ├── custom-tutorial.manifest.provider.spec.ts │ │ │ │ │ └── custom-tutorial.manifest.provider.ts │ │ │ │ └── repositories │ │ │ │ │ ├── custom-tutorial.repository.ts │ │ │ │ │ ├── local.custom-tutorial.repository.spec.ts │ │ │ │ │ └── local.custom-tutorial.repository.ts │ │ │ ├── database-analysis │ │ │ │ ├── database-analysis.controller.ts │ │ │ │ ├── database-analysis.module.ts │ │ │ │ ├── database-analysis.service.ts │ │ │ │ ├── dto │ │ │ │ │ ├── create-database-analysis.dto.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── recommendation-vote.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── database-analysis.entity.ts │ │ │ │ ├── models │ │ │ │ │ ├── analysis-progress.ts │ │ │ │ │ ├── database-analysis.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── key.ts │ │ │ │ │ ├── nsp-summary.ts │ │ │ │ │ ├── nsp-type-summary.ts │ │ │ │ │ ├── recommendation.ts │ │ │ │ │ ├── scan-filter.ts │ │ │ │ │ ├── short-database-analysis.ts │ │ │ │ │ ├── simple-summary.ts │ │ │ │ │ ├── simple-type-summary.ts │ │ │ │ │ └── sum-group.ts │ │ │ │ ├── providers │ │ │ │ │ ├── database-analysis.provider.spec.ts │ │ │ │ │ ├── database-analysis.provider.ts │ │ │ │ │ ├── database-analyzer.spec.ts │ │ │ │ │ └── database-analyzer.ts │ │ │ │ └── scanner │ │ │ │ │ ├── key-info │ │ │ │ │ ├── key-info.provider.spec.ts │ │ │ │ │ ├── key-info.provider.ts │ │ │ │ │ ├── key-info.strategy.interface.ts │ │ │ │ │ └── strategies │ │ │ │ │ │ ├── abstract.info.strategy.spec.ts │ │ │ │ │ │ ├── abstract.info.strategy.ts │ │ │ │ │ │ ├── default-info.strategy.spec.ts │ │ │ │ │ │ ├── default-info.strategy.ts │ │ │ │ │ │ ├── graph-info.strategy.spec.ts │ │ │ │ │ │ ├── graph-info.strategy.ts │ │ │ │ │ │ ├── hash-info.strategy.spec.ts │ │ │ │ │ │ ├── hash-info.strategy.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── json-info.strategy.spec.ts │ │ │ │ │ │ ├── json-info.strategy.ts │ │ │ │ │ │ ├── list-info.strategy.spec.ts │ │ │ │ │ │ ├── list-info.strategy.ts │ │ │ │ │ │ ├── set-info.strategy.spec.ts │ │ │ │ │ │ ├── set-info.strategy.ts │ │ │ │ │ │ ├── stream-info.strategy.spec.ts │ │ │ │ │ │ ├── stream-info.strategy.ts │ │ │ │ │ │ ├── string-info.strategy.spec.ts │ │ │ │ │ │ ├── string-info.strategy.ts │ │ │ │ │ │ ├── ts-info.strategy.spec.ts │ │ │ │ │ │ ├── ts-info.strategy.ts │ │ │ │ │ │ ├── z-set-info.strategy.spec.ts │ │ │ │ │ │ └── z-set-info.strategy.ts │ │ │ │ │ ├── keys-scanner.spec.ts │ │ │ │ │ └── keys-scanner.ts │ │ │ ├── database-discovery │ │ │ │ ├── auto.database-discovery.service.spec.ts │ │ │ │ ├── auto.database-discovery.service.ts │ │ │ │ ├── database-discovery.module.ts │ │ │ │ ├── database-discovery.service.ts │ │ │ │ ├── local.database-discovery.service.spec.ts │ │ │ │ ├── local.database-discovery.service.ts │ │ │ │ ├── pre-setup.database-discovery.service.spec.ts │ │ │ │ ├── pre-setup.database-discovery.service.ts │ │ │ │ └── utils │ │ │ │ │ ├── autodiscovery.util.spec.ts │ │ │ │ │ ├── autodiscovery.util.ts │ │ │ │ │ ├── pre-setup.discovery.util.spec.ts │ │ │ │ │ └── pre-setup.discovery.util.ts │ │ │ ├── database-import │ │ │ │ ├── certificate-import.service.spec.ts │ │ │ │ ├── certificate-import.service.ts │ │ │ │ ├── database-import.analytics.spec.ts │ │ │ │ ├── database-import.analytics.ts │ │ │ │ ├── database-import.controller.spec.ts │ │ │ │ ├── database-import.controller.ts │ │ │ │ ├── database-import.module.ts │ │ │ │ ├── database-import.service.spec.ts │ │ │ │ ├── database-import.service.ts │ │ │ │ ├── dto │ │ │ │ │ ├── database-import.response.ts │ │ │ │ │ └── import.database.dto.ts │ │ │ │ ├── exceptions │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── invalid-ca-certificate-body.exception.ts │ │ │ │ │ ├── invalid-certificate-name.exception.ts │ │ │ │ │ ├── invalid-client-certificate-body.exception.ts │ │ │ │ │ ├── invalid-client-private-key.exception.ts │ │ │ │ │ ├── invalid-compressor.exception.ts │ │ │ │ │ ├── invalid-ssh-body.exception.ts │ │ │ │ │ ├── invalid-ssh-private-key-body.exception.ts │ │ │ │ │ ├── no-database-import-file-provided.exception.ts │ │ │ │ │ ├── size-limit-exceeded-database-import-file.exception.ts │ │ │ │ │ ├── ssh-agents-are-not-supported.exception.ts │ │ │ │ │ └── unable-to-parse-database-import-file.exception.ts │ │ │ │ ├── ssh-import.service.spec.ts │ │ │ │ └── ssh-import.service.ts │ │ │ ├── database-recommendation │ │ │ │ ├── constants │ │ │ │ │ └── index.ts │ │ │ │ ├── database-recommendation.analytics.spec.ts │ │ │ │ ├── database-recommendation.analytics.ts │ │ │ │ ├── database-recommendation.controller.ts │ │ │ │ ├── database-recommendation.gateway.ts │ │ │ │ ├── database-recommendation.module.ts │ │ │ │ ├── database-recommendation.service.spec.ts │ │ │ │ ├── database-recommendation.service.ts │ │ │ │ ├── dto │ │ │ │ │ ├── create.database-recommendation.dto.ts │ │ │ │ │ ├── database-recommendations.response.ts │ │ │ │ │ ├── delete.database-recommendation.dto.ts │ │ │ │ │ ├── delete.database-recommendation.response.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── modify.database-recommendation.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── database-recommendation.entity.ts │ │ │ │ ├── models │ │ │ │ │ ├── database-recommendation-params.ts │ │ │ │ │ ├── database-recommendation.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── integersInSet.ts │ │ │ │ │ └── searchJSON.ts │ │ │ │ ├── providers │ │ │ │ │ ├── database-recommendation.emitter.spec.ts │ │ │ │ │ └── database-recommendation.emitter.ts │ │ │ │ ├── repositories │ │ │ │ │ ├── database-recommendation.repository.ts │ │ │ │ │ ├── local.database.recommendation.repository.spec.ts │ │ │ │ │ └── local.database.recommendation.repository.ts │ │ │ │ └── scanner │ │ │ │ │ ├── recommendation.provider.spec.ts │ │ │ │ │ ├── recommendation.provider.ts │ │ │ │ │ ├── recommendation.strategy.interface.ts │ │ │ │ │ ├── recommendations.scanner.spec.ts │ │ │ │ │ ├── recommendations.scanner.ts │ │ │ │ │ └── strategies │ │ │ │ │ ├── abstract.recommendation.strategy.spec.ts │ │ │ │ │ ├── abstract.recommendation.strategy.ts │ │ │ │ │ ├── avoid-logical-databases.strategy.spec.ts │ │ │ │ │ ├── avoid-logical-databases.strategy.ts │ │ │ │ │ ├── avoid-lua-scripts.strategy.spec.ts │ │ │ │ │ ├── avoid-lua-scripts.strategy.ts │ │ │ │ │ ├── big-amount-connected-clients.strategy.spec.ts │ │ │ │ │ ├── big-amount-connected-clients.strategy.ts │ │ │ │ │ ├── big-set.strategy.spec.ts │ │ │ │ │ ├── big-set.strategy.ts │ │ │ │ │ ├── big-string.strategy.spec.ts │ │ │ │ │ ├── big-string.strategy.ts │ │ │ │ │ ├── compression-for-list.strategy.spec.ts │ │ │ │ │ ├── compression-for-list.strategy.ts │ │ │ │ │ ├── default.recommendation.strategy.spec.ts │ │ │ │ │ ├── default.recommendation.strategy.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── redis-version.strategy.spec.ts │ │ │ │ │ ├── redis-version.strategy.ts │ │ │ │ │ ├── rts.strategy.spec.ts │ │ │ │ │ ├── rts.strategy.ts │ │ │ │ │ ├── search-JSON.strategy.spec.ts │ │ │ │ │ ├── search-JSON.strategy.ts │ │ │ │ │ ├── search-visualization.strategy.spec.ts │ │ │ │ │ ├── search-visualization.strategy.ts │ │ │ │ │ ├── shard-hash.strategy.spec.ts │ │ │ │ │ ├── shard-hash.strategy.ts │ │ │ │ │ ├── string-to-json.strategy.spec.ts │ │ │ │ │ ├── string-to-json.strategy.ts │ │ │ │ │ ├── try-rdi.strategy.spec.ts │ │ │ │ │ ├── try-rdi.strategy.ts │ │ │ │ │ ├── use-smaller-keys.strategy.spec.ts │ │ │ │ │ └── use-smaller-keys.strategy.ts │ │ │ ├── database-settings │ │ │ │ ├── database-settings.controller.ts │ │ │ │ ├── database-settings.module.ts │ │ │ │ ├── database-settings.service.spec.ts │ │ │ │ ├── database-settings.service.ts │ │ │ │ ├── dto │ │ │ │ │ └── database-setting.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── database-setting.entity.ts │ │ │ │ ├── models │ │ │ │ │ └── database-settings.ts │ │ │ │ └── repositories │ │ │ │ │ ├── database-settings.repository.ts │ │ │ │ │ ├── local-database-settings.repository.spec.ts │ │ │ │ │ └── local-database-settings.repository.ts │ │ │ ├── database │ │ │ │ ├── constants │ │ │ │ │ ├── events.ts │ │ │ │ │ └── overview.ts │ │ │ │ ├── database-connection.service.spec.ts │ │ │ │ ├── database-connection.service.ts │ │ │ │ ├── database-info.controller.ts │ │ │ │ ├── database-info.service.spec.ts │ │ │ │ ├── database-info.service.ts │ │ │ │ ├── database.analytics.spec.ts │ │ │ │ ├── database.analytics.ts │ │ │ │ ├── database.controller.spec.ts │ │ │ │ ├── database.controller.ts │ │ │ │ ├── database.module.ts │ │ │ │ ├── database.service.spec.ts │ │ │ │ ├── database.service.ts │ │ │ │ ├── dto │ │ │ │ │ ├── create.database.dto.ts │ │ │ │ │ ├── database.response.ts │ │ │ │ │ ├── delete.databases.dto.ts │ │ │ │ │ ├── delete.databases.response.ts │ │ │ │ │ ├── export.databases.dto.ts │ │ │ │ │ ├── redis-info.dto.ts │ │ │ │ │ └── update.database.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── database.entity.ts │ │ │ │ ├── exeptions │ │ │ │ │ ├── database-already-exists.exception.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── middleware │ │ │ │ │ └── connection.middleware.ts │ │ │ │ ├── models │ │ │ │ │ ├── additional.redis.module.ts │ │ │ │ │ ├── database-overview.ts │ │ │ │ │ ├── database.ts │ │ │ │ │ └── export-database.ts │ │ │ │ ├── providers │ │ │ │ │ ├── database-info.provider.spec.ts │ │ │ │ │ ├── database-info.provider.ts │ │ │ │ │ ├── database-overview.provider.spec.ts │ │ │ │ │ ├── database-overview.provider.ts │ │ │ │ │ ├── database.client.factory.spec.ts │ │ │ │ │ ├── database.client.factory.ts │ │ │ │ │ ├── database.factory.spec.ts │ │ │ │ │ └── database.factory.ts │ │ │ │ └── repositories │ │ │ │ │ ├── database.repository.ts │ │ │ │ │ ├── local.database.repository.spec.ts │ │ │ │ │ ├── local.database.repository.ts │ │ │ │ │ ├── stack.database.repository.spec.ts │ │ │ │ │ └── stack.databases.repository.ts │ │ │ ├── encryption │ │ │ │ ├── encryption.module.ts │ │ │ │ ├── encryption.service.spec.ts │ │ │ │ ├── encryption.service.ts │ │ │ │ ├── exceptions │ │ │ │ │ ├── encryption-service-error.exception.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── key-decryption-error.exception.ts │ │ │ │ │ ├── key-encryption-error.exception.ts │ │ │ │ │ ├── key-unavailable.exception.ts │ │ │ │ │ ├── keytar-decryption-error.exception.ts │ │ │ │ │ ├── keytar-encryption-error.exception.ts │ │ │ │ │ ├── keytar-unavailable.exception.ts │ │ │ │ │ └── unsupported-encryption-strategy.exception.ts │ │ │ │ ├── model.encryptor.ts │ │ │ │ ├── models │ │ │ │ │ ├── encryption-result.ts │ │ │ │ │ └── index.ts │ │ │ │ └── strategies │ │ │ │ │ ├── encryption-strategy.interface.ts │ │ │ │ │ ├── key-encryption.strategy.spec.ts │ │ │ │ │ ├── key-encryption.strategy.ts │ │ │ │ │ ├── keytar-encryption.strategy.spec.ts │ │ │ │ │ ├── keytar-encryption.strategy.ts │ │ │ │ │ ├── plain-encryption.strategy.spec.ts │ │ │ │ │ └── plain-encryption.strategy.ts │ │ │ ├── feature │ │ │ │ ├── constants │ │ │ │ │ ├── index.ts │ │ │ │ │ └── known-features.ts │ │ │ │ ├── entities │ │ │ │ │ ├── feature.entity.ts │ │ │ │ │ └── features-config.entity.ts │ │ │ │ ├── exceptions │ │ │ │ │ ├── index.ts │ │ │ │ │ └── unable-to-fetch-remote-config.exception.ts │ │ │ │ ├── feature.analytics.spec.ts │ │ │ │ ├── feature.analytics.ts │ │ │ │ ├── feature.controller.ts │ │ │ │ ├── feature.gateway.ts │ │ │ │ ├── feature.module.ts │ │ │ │ ├── feature.service.ts │ │ │ │ ├── features-config.service.ts │ │ │ │ ├── local.feature.service.spec.ts │ │ │ │ ├── local.feature.service.ts │ │ │ │ ├── local.features-config.service.spec.ts │ │ │ │ ├── local.features-config.service.ts │ │ │ │ ├── model │ │ │ │ │ ├── feature.ts │ │ │ │ │ ├── features-config.spec.ts │ │ │ │ │ └── features-config.ts │ │ │ │ ├── providers │ │ │ │ │ └── feature-flag │ │ │ │ │ │ ├── feature-flag.provider.spec.ts │ │ │ │ │ │ ├── feature-flag.provider.ts │ │ │ │ │ │ └── strategies │ │ │ │ │ │ ├── cloud-sso.flag.strategy.ts │ │ │ │ │ │ ├── common.flag.strategy.ts │ │ │ │ │ │ ├── default.flag.strategy.ts │ │ │ │ │ │ ├── feature.flag.strategy.spec.ts │ │ │ │ │ │ ├── feature.flag.strategy.ts │ │ │ │ │ │ ├── switchable.flag.strategy.spec.ts │ │ │ │ │ │ ├── switchable.flag.strategy.ts │ │ │ │ │ │ └── with-data.flag.strategy.ts │ │ │ │ ├── repositories │ │ │ │ │ ├── feature.repository.ts │ │ │ │ │ ├── features-config.repository.ts │ │ │ │ │ ├── local.feature.repository.spec.ts │ │ │ │ │ ├── local.feature.repository.ts │ │ │ │ │ ├── local.features-config.repository.spec.ts │ │ │ │ │ └── local.features-config.repository.ts │ │ │ │ └── transformers │ │ │ │ │ ├── feature-config-filter.transformer.ts │ │ │ │ │ └── index.ts │ │ │ ├── init │ │ │ │ ├── init.module.ts │ │ │ │ ├── init.service.ts │ │ │ │ └── local.init.service.ts │ │ │ ├── notification │ │ │ │ ├── constants │ │ │ │ │ └── index.ts │ │ │ │ ├── dto │ │ │ │ │ ├── create-notification.dto.ts │ │ │ │ │ ├── create-notifications.dto.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── notifications.dto.ts │ │ │ │ │ └── read-notifications.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── notification.entity.ts │ │ │ │ ├── models │ │ │ │ │ └── notification.ts │ │ │ │ ├── notification.controller.ts │ │ │ │ ├── notification.gateway.ts │ │ │ │ ├── notification.module.ts │ │ │ │ ├── notification.service.spec.ts │ │ │ │ ├── notification.service.ts │ │ │ │ ├── providers │ │ │ │ │ ├── global-notification.provider.spec.ts │ │ │ │ │ ├── global-notification.provider.ts │ │ │ │ │ ├── notification.emitter.spec.ts │ │ │ │ │ └── notification.emitter.ts │ │ │ │ └── repositories │ │ │ │ │ ├── local.notification.repository.spec.ts │ │ │ │ │ ├── local.notification.repository.ts │ │ │ │ │ └── notification.repository.ts │ │ │ ├── plugin │ │ │ │ ├── plugin.controller.ts │ │ │ │ ├── plugin.module.ts │ │ │ │ ├── plugin.response.ts │ │ │ │ └── plugin.service.ts │ │ │ ├── profiler │ │ │ │ ├── constants │ │ │ │ │ └── index.ts │ │ │ │ ├── emitters │ │ │ │ │ ├── client.logs-emiter.spec.ts │ │ │ │ │ ├── client.logs-emitter.ts │ │ │ │ │ ├── file.logs-emiter.spec.ts │ │ │ │ │ └── file.logs-emitter.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── logs-emitter.interface.ts │ │ │ │ │ ├── monitor-data.interface.ts │ │ │ │ │ └── shard-observer.interface.ts │ │ │ │ ├── models │ │ │ │ │ ├── log-file.spec.ts │ │ │ │ │ ├── log-file.ts │ │ │ │ │ ├── monitor-settings.ts │ │ │ │ │ ├── profiler.client.spec.ts │ │ │ │ │ ├── profiler.client.ts │ │ │ │ │ ├── redis.observer.spec.ts │ │ │ │ │ └── redis.observer.ts │ │ │ │ ├── monitor.service.spec.ts │ │ │ │ ├── profiler-analytics.service.ts │ │ │ │ ├── profiler.controller.ts │ │ │ │ ├── profiler.gateway.ts │ │ │ │ ├── profiler.module.ts │ │ │ │ ├── profiler.service.ts │ │ │ │ └── providers │ │ │ │ │ ├── log-file.provider.spec.ts │ │ │ │ │ ├── log-file.provider.ts │ │ │ │ │ ├── profiler-client.provider.spec.ts │ │ │ │ │ ├── profiler-client.provider.ts │ │ │ │ │ ├── redis-observer.provider.spec.ts │ │ │ │ │ └── redis-observer.provider.ts │ │ │ ├── pub-sub │ │ │ │ ├── constants │ │ │ │ │ └── index.ts │ │ │ │ ├── decorators │ │ │ │ │ └── client.decorator.ts │ │ │ │ ├── dto │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── messages.response.ts │ │ │ │ │ ├── publish.dto.ts │ │ │ │ │ ├── publish.response.ts │ │ │ │ │ ├── subscribe.dto.ts │ │ │ │ │ └── subscription.dto.ts │ │ │ │ ├── errors │ │ │ │ │ └── pub-sub-ws.exception.ts │ │ │ │ ├── filters │ │ │ │ │ └── ack-ws-exception.filter.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── message.interface.ts │ │ │ │ │ └── subscription.interface.ts │ │ │ │ ├── model │ │ │ │ │ ├── abstract.subscription.ts │ │ │ │ │ ├── pattern.subscription.ts │ │ │ │ │ ├── redis-client-subscriber.spec.ts │ │ │ │ │ ├── redis-client-subscriber.ts │ │ │ │ │ ├── simple.subscription.ts │ │ │ │ │ ├── user-client.ts │ │ │ │ │ ├── user-session.spec.ts │ │ │ │ │ └── user-session.ts │ │ │ │ ├── providers │ │ │ │ │ ├── redis-client.provider.spec.ts │ │ │ │ │ ├── redis-client.provider.ts │ │ │ │ │ ├── subscription.provider.spec.ts │ │ │ │ │ ├── subscription.provider.ts │ │ │ │ │ ├── user-session.provider.spec.ts │ │ │ │ │ └── user-session.provider.ts │ │ │ │ ├── pub-sub.analytics.service.spec.ts │ │ │ │ ├── pub-sub.analytics.service.ts │ │ │ │ ├── pub-sub.controller.ts │ │ │ │ ├── pub-sub.gateway.ts │ │ │ │ ├── pub-sub.module.ts │ │ │ │ ├── pub-sub.service.spec.ts │ │ │ │ └── pub-sub.service.ts │ │ │ ├── rdi │ │ │ │ ├── client │ │ │ │ │ ├── api.rdi.client.spec.ts │ │ │ │ │ ├── api.rdi.client.ts │ │ │ │ │ └── rdi.client.ts │ │ │ │ ├── constants │ │ │ │ │ └── index.ts │ │ │ │ ├── decorators │ │ │ │ │ ├── index.ts │ │ │ │ │ └── request.rdi.client.metadata.decorator.ts │ │ │ │ ├── dto │ │ │ │ │ ├── create.rdi.dto.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── rdi-template.response.dto.ts │ │ │ │ │ ├── rdi-test-connections.response.dto.ts │ │ │ │ │ ├── rdi.dry-run.job.dto.ts │ │ │ │ │ ├── rdi.dry-run.job.response.dto.ts │ │ │ │ │ └── update.rdi.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── rdi.entity.ts │ │ │ │ ├── exceptions │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── rdi-deploy-failed.exception.spec.ts │ │ │ │ │ ├── rdi-deploy-failed.exception.ts │ │ │ │ │ ├── rdi-pipeline.bad-request.exception.ts │ │ │ │ │ ├── rdi-pipeline.error.handler.spec.ts │ │ │ │ │ ├── rdi-pipeline.error.handler.ts │ │ │ │ │ ├── rdi-pipeline.forbidden.exception.spec.ts │ │ │ │ │ ├── rdi-pipeline.forbidden.exception.ts │ │ │ │ │ ├── rdi-pipeline.internal-server-error.exception.ts │ │ │ │ │ ├── rdi-pipeline.not-found.exception.ts │ │ │ │ │ ├── rdi-pipeline.timeout-error.exception.spec.ts │ │ │ │ │ ├── rdi-pipeline.timeout-error.exception.ts │ │ │ │ │ ├── rdi-pipeline.unauthorized.exception.ts │ │ │ │ │ ├── rdi-pipeline.validation.exception.ts │ │ │ │ │ ├── rdi-reset-pipeline-failed.exception.spec.ts │ │ │ │ │ ├── rdi-reset-pipeline-failed.exception.ts │ │ │ │ │ ├── rdi-start-pipeline-failed.exception.spec.ts │ │ │ │ │ ├── rdi-start-pipeline-failed.exception.ts │ │ │ │ │ ├── rdi-stop-pipeline-failed.exception.spec.ts │ │ │ │ │ └── rdi-stop-pipeline-failed.exception.ts │ │ │ │ ├── models │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── rdi-dry-run.ts │ │ │ │ │ ├── rdi-pipeline.ts │ │ │ │ │ ├── rdi-statistics.ts │ │ │ │ │ ├── rdi.client.metadata.ts │ │ │ │ │ └── rdi.ts │ │ │ │ ├── providers │ │ │ │ │ ├── rdi.client.factory.spec.ts │ │ │ │ │ ├── rdi.client.factory.ts │ │ │ │ │ ├── rdi.client.provider.spec.ts │ │ │ │ │ ├── rdi.client.provider.ts │ │ │ │ │ ├── rdi.client.storage.spec.ts │ │ │ │ │ └── rdi.client.storage.ts │ │ │ │ ├── rdi-pipeline.analytics.spec.ts │ │ │ │ ├── rdi-pipeline.analytics.ts │ │ │ │ ├── rdi-pipeline.controller.ts │ │ │ │ ├── rdi-pipeline.service.spec.ts │ │ │ │ ├── rdi-pipeline.service.ts │ │ │ │ ├── rdi-statistics.controller.ts │ │ │ │ ├── rdi-statistics.service.spec.ts │ │ │ │ ├── rdi-statistics.service.ts │ │ │ │ ├── rdi.analytics.spec.ts │ │ │ │ ├── rdi.analytics.ts │ │ │ │ ├── rdi.controller.ts │ │ │ │ ├── rdi.module.ts │ │ │ │ ├── rdi.service.spec.ts │ │ │ │ ├── rdi.service.ts │ │ │ │ ├── repository │ │ │ │ │ ├── local.rdi.repository.spec.ts │ │ │ │ │ ├── local.rdi.repository.ts │ │ │ │ │ └── rdi.repository.ts │ │ │ │ └── utils │ │ │ │ │ ├── pipeline.util.spec.ts │ │ │ │ │ └── pipeline.util.ts │ │ │ ├── recommendation │ │ │ │ ├── providers │ │ │ │ │ ├── recommendation.provider.spec.ts │ │ │ │ │ └── recommendation.provider.ts │ │ │ │ ├── recommendation.module.ts │ │ │ │ └── recommendation.service.ts │ │ │ ├── redis-enterprise │ │ │ │ ├── dto │ │ │ │ │ ├── cluster.dto.ts │ │ │ │ │ └── redis-enterprise-cluster.dto.ts │ │ │ │ ├── models │ │ │ │ │ └── redis-enterprise-database.ts │ │ │ │ ├── redis-enterprise.analytics.spec.ts │ │ │ │ ├── redis-enterprise.analytics.ts │ │ │ │ ├── redis-enterprise.controller.spec.ts │ │ │ │ ├── redis-enterprise.controller.ts │ │ │ │ ├── redis-enterprise.module.ts │ │ │ │ ├── redis-enterprise.service.spec.ts │ │ │ │ ├── redis-enterprise.service.ts │ │ │ │ └── utils │ │ │ │ │ ├── redis-enterprise-converter.spec.ts │ │ │ │ │ └── redis-enterprise-converter.ts │ │ │ ├── redis-sentinel │ │ │ │ ├── dto │ │ │ │ │ ├── create.sentinel.database.dto.ts │ │ │ │ │ ├── create.sentinel.database.response.ts │ │ │ │ │ ├── create.sentinel.databases.dto.ts │ │ │ │ │ ├── discover.sentinel-masters.dto.ts │ │ │ │ │ ├── sentinel.master.response.dto.ts │ │ │ │ │ └── update.sentinel.master.dto.ts │ │ │ │ ├── models │ │ │ │ │ ├── sentinel-master.ts │ │ │ │ │ └── sentinel.ts │ │ │ │ ├── redis-sentinel.analytics.spec.ts │ │ │ │ ├── redis-sentinel.analytics.ts │ │ │ │ ├── redis-sentinel.controller.spec.ts │ │ │ │ ├── redis-sentinel.controller.ts │ │ │ │ ├── redis-sentinel.module.ts │ │ │ │ ├── redis-sentinel.service.spec.ts │ │ │ │ └── redis-sentinel.service.ts │ │ │ ├── redis │ │ │ │ ├── client │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── ioredis │ │ │ │ │ │ ├── cluster.ioredis.client.ts │ │ │ │ │ │ ├── ioredis.client.ts │ │ │ │ │ │ ├── sentinel.ioredis.client.ts │ │ │ │ │ │ └── standalone.ioredis.client.ts │ │ │ │ │ ├── node-redis │ │ │ │ │ │ ├── cluster.node-redis.client.ts │ │ │ │ │ │ ├── node-redis.client.ts │ │ │ │ │ │ └── standalone.node-redis.client.ts │ │ │ │ │ └── redis.client.ts │ │ │ │ ├── connection │ │ │ │ │ ├── ioredis.redis.connection.strategy.spec.ts │ │ │ │ │ ├── ioredis.redis.connection.strategy.ts │ │ │ │ │ ├── node.redis.connection.strategy.ts │ │ │ │ │ ├── redis.connection.strategy.spec.ts │ │ │ │ │ └── redis.connection.strategy.ts │ │ │ │ ├── exceptions │ │ │ │ │ ├── client-not-found-error.exception.ts │ │ │ │ │ └── connection │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── redis-connection-auth-unsupported.exception.ts │ │ │ │ │ │ ├── redis-connection-cluster-nodes-unavailable.exception.ts │ │ │ │ │ │ ├── redis-connection-default-user-disabled.exception.ts │ │ │ │ │ │ ├── redis-connection-failed.exception.ts │ │ │ │ │ │ ├── redis-connection-incorrect-certificate.exception.ts │ │ │ │ │ │ ├── redis-connection-sentinel-master-required.exception.ts │ │ │ │ │ │ ├── redis-connection-timeout.exception.ts │ │ │ │ │ │ ├── redis-connection-unauthorized.exception.ts │ │ │ │ │ │ └── redis-connection-unavailable.exception.ts │ │ │ │ ├── local.redis.client.factory.spec.ts │ │ │ │ ├── local.redis.client.factory.ts │ │ │ │ ├── redis.client.factory.ts │ │ │ │ ├── redis.client.storage.spec.ts │ │ │ │ ├── redis.client.storage.ts │ │ │ │ ├── redis.module.ts │ │ │ │ └── utils │ │ │ │ │ ├── cluster.util.spec.ts │ │ │ │ │ ├── cluster.util.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── keys.util.spec.ts │ │ │ │ │ ├── keys.util.ts │ │ │ │ │ ├── reply.util.spec.ts │ │ │ │ │ ├── reply.util.ts │ │ │ │ │ ├── sentinel.util.spec.ts │ │ │ │ │ └── sentinel.util.ts │ │ │ ├── server │ │ │ │ ├── dto │ │ │ │ │ └── server.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── server.entity.ts │ │ │ │ ├── health.controller.ts │ │ │ │ ├── local.server.service.spec.ts │ │ │ │ ├── local.server.service.ts │ │ │ │ ├── models │ │ │ │ │ └── server.ts │ │ │ │ ├── repositories │ │ │ │ │ ├── local.server.repository.spec.ts │ │ │ │ │ ├── local.server.repository.ts │ │ │ │ │ └── server.repository.ts │ │ │ │ ├── server.controller.ts │ │ │ │ ├── server.module.ts │ │ │ │ └── server.service.ts │ │ │ ├── session │ │ │ │ ├── providers │ │ │ │ │ ├── session.provider.ts │ │ │ │ │ ├── single-user.session.provider.spec.ts │ │ │ │ │ ├── single-user.session.provider.ts │ │ │ │ │ └── storage │ │ │ │ │ │ ├── in-memory.session.storage.spec.ts │ │ │ │ │ │ ├── in-memory.session.storage.ts │ │ │ │ │ │ └── session.storage.ts │ │ │ │ ├── session.module.ts │ │ │ │ ├── session.service.spec.ts │ │ │ │ └── session.service.ts │ │ │ ├── settings │ │ │ │ ├── constants │ │ │ │ │ └── settings.ts │ │ │ │ ├── dto │ │ │ │ │ └── settings.dto.ts │ │ │ │ ├── entities │ │ │ │ │ ├── agreements.entity.ts │ │ │ │ │ └── settings.entity.ts │ │ │ │ ├── models │ │ │ │ │ ├── agreements.interface.ts │ │ │ │ │ ├── agreements.ts │ │ │ │ │ └── settings.ts │ │ │ │ ├── repositories │ │ │ │ │ ├── agreements.repository.ts │ │ │ │ │ ├── local.agreements.repository.spec.ts │ │ │ │ │ ├── local.agreements.repository.ts │ │ │ │ │ ├── local.settings.repository.spec.ts │ │ │ │ │ ├── local.settings.repository.ts │ │ │ │ │ └── settings.repository.ts │ │ │ │ ├── settings.analytics.spec.ts │ │ │ │ ├── settings.analytics.ts │ │ │ │ ├── settings.controller.ts │ │ │ │ ├── settings.module.ts │ │ │ │ ├── settings.service.spec.ts │ │ │ │ └── settings.service.ts │ │ │ ├── slow-log │ │ │ │ ├── constants │ │ │ │ │ └── commands.ts │ │ │ │ ├── dto │ │ │ │ │ ├── get-slow-logs.dto.ts │ │ │ │ │ └── update-slow-log-config.dto.ts │ │ │ │ ├── models │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── slow-log-config.ts │ │ │ │ │ └── slow-log.ts │ │ │ │ ├── slow-log.analytics.ts │ │ │ │ ├── slow-log.controller.ts │ │ │ │ ├── slow-log.module.ts │ │ │ │ ├── slow-log.service.spec.ts │ │ │ │ └── slow-log.service.ts │ │ │ ├── ssh │ │ │ │ ├── dto │ │ │ │ │ ├── create.basic-ssh-options.dto.ts │ │ │ │ │ ├── create.cert-ssh-options.dto.ts │ │ │ │ │ ├── ssh-options.response.ts │ │ │ │ │ └── update.ssh-options.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── ssh-options.entity.ts │ │ │ │ ├── exceptions │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── tunnel-connection-lost.exception.ts │ │ │ │ │ ├── unable-to-create-local-server.exception.ts │ │ │ │ │ ├── unable-to-create-ssh-connection.exception.ts │ │ │ │ │ └── unable-to-create-tunnel.exception.ts │ │ │ │ ├── models │ │ │ │ │ ├── ssh-options.ts │ │ │ │ │ └── ssh-tunnel.ts │ │ │ │ ├── ssh-tunnel.provider.spec.ts │ │ │ │ ├── ssh-tunnel.provider.ts │ │ │ │ ├── ssh.module.ts │ │ │ │ ├── transformers │ │ │ │ │ ├── ssh-options.transformer.spec.ts │ │ │ │ │ └── ssh-options.transformer.ts │ │ │ │ └── utils │ │ │ │ │ ├── error-message.spec.ts │ │ │ │ │ ├── error-message.ts │ │ │ │ │ └── index.ts │ │ │ ├── statics-management │ │ │ │ ├── providers │ │ │ │ │ ├── auto-updated-statics.interface.ts │ │ │ │ │ ├── auto-updated-statics.provider.spec.ts │ │ │ │ │ └── auto-updated-statics.provider.ts │ │ │ │ └── statics-management.module.ts │ │ │ ├── tag │ │ │ │ ├── dto │ │ │ │ │ ├── create-tag.dto.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── update-tag.dto.ts │ │ │ │ ├── entities │ │ │ │ │ └── tag.entity.ts │ │ │ │ ├── models │ │ │ │ │ └── tag.ts │ │ │ │ ├── repository │ │ │ │ │ ├── local.tag.repository.spec.ts │ │ │ │ │ ├── local.tag.repository.ts │ │ │ │ │ └── tag.repository.ts │ │ │ │ ├── tag.controller.ts │ │ │ │ ├── tag.module.ts │ │ │ │ ├── tag.service.spec.ts │ │ │ │ └── tag.service.ts │ │ │ └── workbench │ │ │ │ ├── decorators │ │ │ │ └── workbench-client-metadata.decorator.ts │ │ │ │ ├── dto │ │ │ │ ├── create-command-execution.dto.ts │ │ │ │ ├── create-command-executions.dto.ts │ │ │ │ └── create-plugin-state.dto.ts │ │ │ │ ├── entities │ │ │ │ ├── command-execution.entity.ts │ │ │ │ └── plugin-state.entity.ts │ │ │ │ ├── models │ │ │ │ ├── command-execution-result.ts │ │ │ │ ├── command-execution.ts │ │ │ │ ├── command-executions.filter.ts │ │ │ │ ├── plugin-command-execution.ts │ │ │ │ ├── plugin-state.ts │ │ │ │ └── short-command-execution.ts │ │ │ │ ├── plugins.controller.ts │ │ │ │ ├── plugins.service.spec.ts │ │ │ │ ├── plugins.service.ts │ │ │ │ ├── providers │ │ │ │ ├── plugin-commands-whitelist.provider.spec.ts │ │ │ │ ├── plugin-commands-whitelist.provider.ts │ │ │ │ ├── workbench-commands.executor.spec.ts │ │ │ │ └── workbench-commands.executor.ts │ │ │ │ ├── repositories │ │ │ │ ├── command-execution.repository.ts │ │ │ │ ├── local-command-execution.repository.spec.ts │ │ │ │ ├── local-command-execution.repository.ts │ │ │ │ ├── local-plugin-state.repository.spec.ts │ │ │ │ ├── local-plugin-state.repository.ts │ │ │ │ └── plugin-state.repository.ts │ │ │ │ ├── utils │ │ │ │ ├── getUnsupportedCommands.spec.ts │ │ │ │ └── getUnsupportedCommands.ts │ │ │ │ ├── workbench.analytics.spec.ts │ │ │ │ ├── workbench.analytics.ts │ │ │ │ ├── workbench.controller.ts │ │ │ │ ├── workbench.module.ts │ │ │ │ ├── workbench.service.spec.ts │ │ │ │ └── workbench.service.ts │ │ ├── utils │ │ │ ├── analytics-helper.spec.ts │ │ │ ├── analytics-helper.ts │ │ │ ├── base.helper.spec.ts │ │ │ ├── base.helper.ts │ │ │ ├── big-string.spec.ts │ │ │ ├── big-string.ts │ │ │ ├── catch-redis-errors.spec.ts │ │ │ ├── catch-redis-errors.ts │ │ │ ├── class-transformer.ts │ │ │ ├── cli-helper.spec.ts │ │ │ ├── cli-helper.ts │ │ │ ├── config.spec.ts │ │ │ ├── config.ts │ │ │ ├── converter.spec.ts │ │ │ ├── converter.ts │ │ │ ├── createHttpOptions.ts │ │ │ ├── feature-version-filter.helper.spec.ts │ │ │ ├── feature-version-filter.helper.ts │ │ │ ├── file-helper.ts │ │ │ ├── glob-pattern-helper.spec.ts │ │ │ ├── glob-pattern-helper.ts │ │ │ ├── hosting-provider-helper.spec.ts │ │ │ ├── hosting-provider-helper.ts │ │ │ ├── index.ts │ │ │ ├── logsFormatter.spec.ts │ │ │ ├── logsFormatter.ts │ │ │ ├── path.spec.ts │ │ │ ├── path.ts │ │ │ ├── promise-with-timeout.spec.ts │ │ │ ├── promise-with-timeout.ts │ │ │ ├── recommendation-helper.spec.ts │ │ │ ├── recommendation-helper.ts │ │ │ ├── redis-modules-summary.spec.ts │ │ │ ├── redis-modules-summary.ts │ │ │ ├── redis-reply-converter.spec.ts │ │ │ └── redis-reply-converter.ts │ │ └── validators │ │ │ ├── index.ts │ │ │ ├── isObjectWithValues.validator.ts │ │ │ ├── serializedJson.validator.spec.ts │ │ │ └── serializedJson.validator.ts │ ├── stubs │ │ └── cpu-features │ │ │ ├── index.js │ │ │ └── package.json │ ├── test │ │ ├── README.md │ │ ├── api │ │ │ ├── .mocharc.yml │ │ │ ├── _init │ │ │ │ └── WS-notifications-global-sync.test.ts │ │ │ ├── ai │ │ │ │ └── assistant │ │ │ │ │ ├── DELETE-ai-assistant-chats-id.test.ts │ │ │ │ │ ├── GET-ai-assistant-chats-id.test.ts │ │ │ │ │ ├── POST-ai-assistant-chats-id-messages.test.ts │ │ │ │ │ └── POST-ai-assistant-chats.test.ts │ │ │ ├── analytics │ │ │ │ ├── POST-analytics-send-event.test.ts │ │ │ │ ├── POST-analytics-send-page.test.ts │ │ │ │ └── analytics.test.ts │ │ │ ├── api.deps.init.ts │ │ │ ├── api.tsconfig.json │ │ │ ├── browser-history │ │ │ │ ├── DELETE-browser-histories.test.ts │ │ │ │ ├── DELETE-browser-history-id.test.ts │ │ │ │ └── GET-browser-histories.test.ts │ │ │ ├── bulk-actions │ │ │ │ ├── POST-databases-id-bulk_actions-import-default_data.test.ts │ │ │ │ ├── POST-databases-id-bulk_actions-import-tutorial_data.test.ts │ │ │ │ └── POST-databases-id-bulk_actions-import.test.ts │ │ │ ├── certificate │ │ │ │ └── constants.ts │ │ │ ├── cli │ │ │ │ ├── POST-databases-id-cli-uuid-send_cluster_command.test.ts │ │ │ │ ├── POST-databases-id-cli-uuid-send_command.test.ts │ │ │ │ └── POST-databases-id-cli.test.ts │ │ │ ├── cloud │ │ │ │ ├── autodiscovery │ │ │ │ │ ├── GET-cloud-autodiscovery-account.test.ts │ │ │ │ │ ├── GET-cloud-autodiscovery-subscriptions.test.ts │ │ │ │ │ ├── GET-cloud-me-autodiscovery-account.test.ts │ │ │ │ │ ├── POST-cloud-autodiscovery-databases.test.ts │ │ │ │ │ └── POST-cloud-autodiscovery-get_databases.test.ts │ │ │ │ ├── constants.ts │ │ │ │ └── user │ │ │ │ │ ├── GET-cloud-me.test.ts │ │ │ │ │ └── PUT-cloud-me-accounts-id-current.test.ts │ │ │ ├── cluster-monitor │ │ │ │ └── GET-databases-id-cluster_details.test.ts │ │ │ ├── commands │ │ │ │ └── GET-commands.test.ts │ │ │ ├── custom-tutorials │ │ │ │ └── POST-custom-tutorials.test.ts │ │ │ ├── database-analysis │ │ │ │ ├── GET-databases-id-analysis-id.test.ts │ │ │ │ ├── GET-databases-id-analysis.test.ts │ │ │ │ ├── PATCH-databases-id-analysis.test.ts │ │ │ │ ├── POST-databases-id-analysis.test.ts │ │ │ │ └── constants.ts │ │ │ ├── database-discovery │ │ │ │ └── pre-setup-databases.tests.ts │ │ │ ├── database-import │ │ │ │ └── POST-databases-import.test.ts │ │ │ ├── database-recommendations │ │ │ │ ├── DELETE-databases-id-recommendations.test.ts │ │ │ │ ├── GET-databases-id-recommendations.test.ts │ │ │ │ ├── PATCH-databases-id-recommendations-id.test.ts │ │ │ │ ├── PATCH-databases-id-recommendations-read.test.ts │ │ │ │ ├── WS-new-recommendations.test.ts │ │ │ │ └── constants.ts │ │ │ ├── database │ │ │ │ ├── DELETE-databases-id.test.ts │ │ │ │ ├── DELETE-databases.test.ts │ │ │ │ ├── GET-databases-id-connect.test.ts │ │ │ │ ├── GET-databases-id-info.test.ts │ │ │ │ ├── GET-databases-id-overview.test.ts │ │ │ │ ├── GET-databases.test.ts │ │ │ │ ├── PATCH-databases-id.test.ts │ │ │ │ ├── POST-databases-clone-id.test.ts │ │ │ │ ├── POST-databases-export.test.ts │ │ │ │ ├── POST-databases-test-id.test.ts │ │ │ │ ├── POST-databases-test.test.ts │ │ │ │ ├── POST-databases.test.ts │ │ │ │ └── constants.ts │ │ │ ├── deps.ts │ │ │ ├── enterprise │ │ │ │ └── POST-redis-enterprise-cluster-get_dbs.test.ts │ │ │ ├── feature │ │ │ │ ├── GET-features.test.ts │ │ │ │ └── POST-features-sync.test.ts │ │ │ ├── hash │ │ │ │ ├── DELETE-databases-id-hash-fields.test.ts │ │ │ │ ├── POST-databases-id-hash-get_fields.test.ts │ │ │ │ ├── POST-databases-id-hash.test.ts │ │ │ │ └── PUT-databases-id-hash.test.ts │ │ │ ├── info │ │ │ │ ├── GET-health.test.ts │ │ │ │ ├── GET-info-cli-blocking-commands.test.ts │ │ │ │ ├── GET-info-cli-unsupported-commands.test.ts │ │ │ │ └── GET-info.test.ts │ │ │ ├── keys │ │ │ │ ├── DELETE-databases-id-keys.test.ts │ │ │ │ ├── PATCH-databases-id-keys-name.test.ts │ │ │ │ ├── PATCH-databases-id-keys-ttl.test.ts │ │ │ │ ├── POST-databases-id-keys-get_info.test.ts │ │ │ │ ├── POST-databases-id-keys-get_infos.test.ts │ │ │ │ └── POST-databases-id-keys.test.ts │ │ │ ├── list │ │ │ │ ├── DELETE-databases-id-list-elements.test.ts │ │ │ │ ├── PATCH-databases-id-list.test.ts │ │ │ │ ├── POST-databases-id-list-get_elements-index.test.ts │ │ │ │ ├── POST-databases-id-list-get_elements.test.ts │ │ │ │ ├── POST-databases-id-list.test.ts │ │ │ │ └── PUT-databases-id-list.test.ts │ │ │ ├── notifications │ │ │ │ ├── GET-notifications.test.ts │ │ │ │ ├── PATCH-notifications.test.ts │ │ │ │ └── notifications.json │ │ │ ├── plugins │ │ │ │ ├── GET-databases-id-plugins-commands.test.ts │ │ │ │ ├── GET-databases-id-plugins-id-command_executions-id-state.test.ts │ │ │ │ ├── GET-plugins.test.ts │ │ │ │ ├── POST-databases-id-plugins-command_executions.test.ts │ │ │ │ └── POST-databases-id-plugins-id-command_executions-id-state.test.ts │ │ │ ├── pub-sub │ │ │ │ └── POST-databases-id-pub-sub-messages.test.ts │ │ │ ├── rdi │ │ │ │ ├── DELETE-rdi.test.ts │ │ │ │ ├── GET-rdi-id-connect.test.ts │ │ │ │ ├── GET-rdi-id.test.ts │ │ │ │ ├── GET-rdi.test.ts │ │ │ │ ├── PATCH-rdi-id.test.ts │ │ │ │ ├── POST-rdi.test.ts │ │ │ │ ├── pipeline │ │ │ │ │ ├── GET-rdi-id-pipeline-config-template-pipelineType-dbType.test.ts │ │ │ │ │ ├── GET-rdi-id-pipeline-job-functions.test.ts │ │ │ │ │ ├── GET-rdi-id-pipeline-job-template-pipelineType.test.ts │ │ │ │ │ ├── GET-rdi-id-pipeline-schema.test.ts │ │ │ │ │ ├── GET-rdi-id-pipeline-status.test.ts │ │ │ │ │ ├── GET-rdi-id-pipeline-strategies.test.ts │ │ │ │ │ ├── GET-rdi-id-pipeline.test.ts │ │ │ │ │ ├── POST-rdi-id-pipeline-deploy.test.ts │ │ │ │ │ ├── POST-rdi-id-pipeline-dry-run-job.test.ts │ │ │ │ │ ├── POST-rdi-id-pipeline-reset.test.ts │ │ │ │ │ ├── POST-rdi-id-pipeline-start.test.ts │ │ │ │ │ ├── POST-rdi-id-pipeline-stop.test.ts │ │ │ │ │ └── POST-rdi-id-pipeline-test-connections.test.ts │ │ │ │ └── statistics │ │ │ │ │ └── GET-rdi-id-statistics.test.ts │ │ │ ├── redisearch │ │ │ │ ├── DELETE-databases-id-redisearch.test.ts │ │ │ │ ├── GET-databases-id-redisearch.test.ts │ │ │ │ ├── POST-databases-id-redisearch-info.test.ts │ │ │ │ ├── POST-databases-id-redisearch-search.test.ts │ │ │ │ └── POST-databases-id-redisearch.test.ts │ │ │ ├── rejson-rl │ │ │ │ ├── DELETE-databases-id-rejson_rl.test.ts │ │ │ │ ├── PATCH-databases-id-rejson_rl-arrappend.test.ts │ │ │ │ ├── PATCH-databases-id-rejson_rl-set.test.ts │ │ │ │ ├── POST-databases-id-rejson_rl-get.test.ts │ │ │ │ └── POST-databases-id-rejson_rl.test.ts │ │ │ ├── reporters.json │ │ │ ├── sentinel │ │ │ │ ├── POST-redis_sentinel-databases.test.ts │ │ │ │ └── POST-redis_sentinel-get_databases.test.ts │ │ │ ├── set │ │ │ │ ├── DELETE-databases-id-set-members.test.ts │ │ │ │ ├── POST-databases-id-set-get_members.test.ts │ │ │ │ ├── POST-databases-id-set.test.ts │ │ │ │ └── PUT-databases-id-set.test.ts │ │ │ ├── settings │ │ │ │ ├── GET-settings-agreements-spec.test.ts │ │ │ │ ├── GET-settings.test.ts │ │ │ │ └── PATCH-settings.test.ts │ │ │ ├── slowlog │ │ │ │ ├── DELETE-databases-id-slow_logs.test.ts │ │ │ │ ├── GET-databases-id-slow_logs-config.test.ts │ │ │ │ ├── GET-databases-id-slow_logs.test.ts │ │ │ │ └── PATCH-databases-id-slow_logs-config.test.ts │ │ │ ├── stream │ │ │ │ ├── DELETE-databases-id-streams-consumer_groups-consumers.test.ts │ │ │ │ ├── DELETE-databases-id-streams-consumer_groups.test.ts │ │ │ │ ├── PATCH-databases-id-streams-consumer_groups.test.ts │ │ │ │ ├── POST-databases-id-streams-consumer_groups-consumers-get.test.ts │ │ │ │ ├── POST-databases-id-streams-consumer_groups-consumers-pending_messages-ack.test.ts │ │ │ │ ├── POST-databases-id-streams-consumer_groups-consumers-pending_messages-claim.test.ts │ │ │ │ ├── POST-databases-id-streams-consumer_groups-consumers-pending_messages-get.test.ts │ │ │ │ ├── POST-databases-id-streams-consumer_groups-get.test.ts │ │ │ │ ├── POST-databases-id-streams-consumer_groups.test.ts │ │ │ │ ├── POST-databases-id-streams-entries-get.test.ts │ │ │ │ ├── POST-databases-id-streams-entries.test.ts │ │ │ │ └── POST-databases-id-streams.test.ts │ │ │ ├── string │ │ │ │ ├── POST-databases-id-string-download_value.test.ts │ │ │ │ ├── POST-databases-id-string-get_value.test.ts │ │ │ │ ├── POST-databases-id-string.test.ts │ │ │ │ └── PUT-databases-id-string.test.ts │ │ │ ├── triggered-functions │ │ │ │ ├── DELETE-databases-id-library.test.ts │ │ │ │ ├── GET-databases-id-functions.test.ts │ │ │ │ ├── GET-databases-id-libraries.test.ts │ │ │ │ └── POST-databases-id-library.test.ts │ │ │ ├── workbench │ │ │ │ ├── DELETE-databases-id-workbench-command_executions-id.test.ts │ │ │ │ ├── DELETE-databases-id-workbench-command_executions.test.ts │ │ │ │ ├── GET-databases-id-workbench-command_executions-id.test.ts │ │ │ │ ├── GET-databases-id-workbench-command_executions.test.ts │ │ │ │ └── POST-databases-id-workbench-command_executions.test.ts │ │ │ ├── ws │ │ │ │ ├── bulk-actions │ │ │ │ │ └── bulk-actions-create.test.ts │ │ │ │ ├── monitor │ │ │ │ │ └── monitor.test.ts │ │ │ │ └── pub-sub │ │ │ │ │ └── pub-sub.test.ts │ │ │ └── z-set │ │ │ │ ├── DELETE-databases-id-zSet-members.test.ts │ │ │ │ ├── PATCH-databases-id-zSet.test.ts │ │ │ │ ├── POST-databases-id-zSet-get_members.test.ts │ │ │ │ ├── POST-databases-id-zSet-search.test.ts │ │ │ │ ├── POST-databases-id-zSet.test.ts │ │ │ │ └── PUT-databases-id-zSet.test.ts │ │ ├── helpers │ │ │ ├── analytics.ts │ │ │ ├── cloud.ts │ │ │ ├── constants.ts │ │ │ ├── data │ │ │ │ └── redis.ts │ │ │ ├── local-db.ts │ │ │ ├── redis.ts │ │ │ ├── remote-server.ts │ │ │ ├── server.ts │ │ │ ├── test.ts │ │ │ ├── test │ │ │ │ ├── conditionalIgnore.ts │ │ │ │ └── dataGenerator.ts │ │ │ └── utils.ts │ │ └── test-runs │ │ │ ├── cloud-st │ │ │ ├── .env │ │ │ └── docker-compose.yml │ │ │ ├── docker.build.env │ │ │ ├── docker.build.yml │ │ │ ├── gears-clu │ │ │ └── docker-compose.yml │ │ │ ├── local.build.env │ │ │ ├── local.build.yml │ │ │ ├── mods-preview │ │ │ └── docker-compose.yml │ │ │ ├── oss-clu-tls │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── certs │ │ │ │ ├── redis.crt │ │ │ │ ├── redis.key │ │ │ │ └── redisCA.crt │ │ │ └── docker-compose.yml │ │ │ ├── oss-clu │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ └── docker-compose.yml │ │ │ ├── oss-sent-tls-auth │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── certs │ │ │ │ ├── ca.crt │ │ │ │ ├── redis.crt │ │ │ │ └── redis.key │ │ │ ├── docker-compose.yml │ │ │ ├── redis.conf │ │ │ ├── sentinel.Dockerfile │ │ │ ├── sentinel.conf │ │ │ └── users.acl │ │ │ ├── oss-sent │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yml │ │ │ ├── redis.conf │ │ │ ├── sentinel.Dockerfile │ │ │ ├── sentinel.conf │ │ │ ├── sentinel.users.acl │ │ │ └── users.acl │ │ │ ├── oss-st-5-pass │ │ │ ├── .env │ │ │ └── docker-compose.yml │ │ │ ├── oss-st-5 │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yml │ │ │ └── redis.conf │ │ │ ├── oss-st-6-tls-auth-ssh │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── certs │ │ │ │ ├── redis.crt │ │ │ │ ├── redis.key │ │ │ │ ├── redisCA.crt │ │ │ │ ├── user.crt │ │ │ │ └── user.key │ │ │ ├── docker-compose.yml │ │ │ └── ssh │ │ │ │ └── keys │ │ │ │ ├── pub │ │ │ │ ├── test.pub │ │ │ │ └── testp.pub │ │ │ │ ├── test │ │ │ │ └── testp │ │ │ ├── oss-st-6-tls-auth │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── certs │ │ │ │ ├── redis.crt │ │ │ │ ├── redis.key │ │ │ │ ├── redisCA.crt │ │ │ │ ├── user.crt │ │ │ │ └── user.key │ │ │ └── docker-compose.yml │ │ │ ├── oss-st-6-tls │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── certs │ │ │ │ ├── redis.crt │ │ │ │ ├── redis.key │ │ │ │ └── redisCA.crt │ │ │ └── docker-compose.yml │ │ │ ├── oss-st-6 │ │ │ └── docker-compose.yml │ │ │ ├── oss-st-big │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yml │ │ │ └── entrypoint.sh │ │ │ ├── re-clu │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── db.json │ │ │ ├── docker-compose.yml │ │ │ └── entrypoint.sh │ │ │ ├── re-crdt │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── docker-compose.yml │ │ │ └── entrypoint.sh │ │ │ ├── re-st │ │ │ ├── .env │ │ │ ├── Dockerfile │ │ │ ├── db.json │ │ │ ├── docker-compose.yml │ │ │ └── entrypoint.sh │ │ │ ├── run-all.sh │ │ │ ├── start-test-run.sh │ │ │ ├── test-docker-entry.sh │ │ │ ├── test.Dockerfile │ │ │ └── wait-for-it.sh │ ├── tsconfig.build.json │ ├── tsconfig.build.prod.json │ ├── tsconfig.json │ └── yarn.lock ├── desktop │ ├── app.ts │ ├── config.json │ ├── index.ts │ ├── package.json │ ├── preload.ts │ ├── splash.html │ ├── src │ │ ├── config │ │ │ ├── configMain.ts │ │ │ ├── configRenderer.ts │ │ │ └── index.ts │ │ ├── index.html │ │ ├── lib │ │ │ ├── aboutPanel │ │ │ │ └── aboutPanel.ts │ │ │ ├── app │ │ │ │ ├── app.handlers.ts │ │ │ │ ├── deep-link.handlers.ts │ │ │ │ ├── dialog.handlers.ts │ │ │ │ ├── index.ts │ │ │ │ └── ipc.handlers.ts │ │ │ ├── auth │ │ │ │ ├── auth.factory.ts │ │ │ │ ├── auth.interface.ts │ │ │ │ ├── service.auth.strategy.ts │ │ │ │ └── tcp.auth.strategy.ts │ │ │ ├── cloud │ │ │ │ ├── cloud-oauth.handlers.ts │ │ │ │ ├── deep-link.handlers.ts │ │ │ │ └── index.ts │ │ │ ├── extensions │ │ │ │ └── extensions.ts │ │ │ ├── index.ts │ │ │ ├── logging │ │ │ │ └── logging.ts │ │ │ ├── menu │ │ │ │ └── menu.ts │ │ │ ├── server │ │ │ │ └── server.ts │ │ │ ├── store │ │ │ │ └── store.ts │ │ │ ├── tray │ │ │ │ ├── tray.ts │ │ │ │ └── trayManager.ts │ │ │ ├── updater │ │ │ │ ├── updater.handlers.ts │ │ │ │ └── updater.ts │ │ │ └── window │ │ │ │ ├── browserWindow.ts │ │ │ │ ├── index.ts │ │ │ │ └── window.handlers.ts │ │ └── utils │ │ │ ├── getAssetPath.ts │ │ │ ├── index.ts │ │ │ ├── resolveHtmlPath.ts │ │ │ ├── showOrCreateWindow.ts │ │ │ ├── window-size.ts │ │ │ └── wrapErrorSensitiveData.ts │ ├── views │ │ └── cloud_outh_callback │ │ │ ├── callback.html │ │ │ ├── favicon.png │ │ │ ├── fonts │ │ │ ├── Graphik-Medium.woff2 │ │ │ └── Graphik-Regular.woff2 │ │ │ ├── index.js │ │ │ └── styles.css │ ├── vite.main.config.ts │ ├── vite.preload.config.ts │ └── vite.renderer.config.ts ├── package.json ├── patches │ └── sqlite3+5.1.7.patch ├── ui │ ├── .env.test │ ├── .eslintignore │ ├── README.md │ ├── index.html │ ├── index.tsx │ ├── indexElectron.tsx │ ├── package.json │ ├── public │ │ ├── favicon-16x16.png │ │ ├── favicon-180x180.png │ │ ├── favicon-32x32.png │ │ └── favicon-48x48.ico │ ├── src │ │ ├── App.scss │ │ ├── App.spec.tsx │ │ ├── App.tsx │ │ ├── Router.spec.tsx │ │ ├── Router.tsx │ │ ├── RouterElectron.tsx │ │ ├── assets │ │ │ ├── assets.d.ts │ │ │ ├── fonts │ │ │ │ ├── graphik │ │ │ │ │ ├── Graphik-Light.woff2 │ │ │ │ │ ├── Graphik-LightItalic.woff2 │ │ │ │ │ ├── Graphik-Medium.woff2 │ │ │ │ │ ├── Graphik-MediumItalic.woff2 │ │ │ │ │ ├── Graphik-Regular.woff2 │ │ │ │ │ ├── Graphik-RegularItalic.woff2 │ │ │ │ │ ├── Graphik-Semibold.woff2 │ │ │ │ │ └── Graphik-SemiboldItalic.woff2 │ │ │ │ ├── inconsolata │ │ │ │ │ ├── Inconsolata-Bold.ttf │ │ │ │ │ └── Inconsolata-Regular.ttf │ │ │ │ └── sourceCodePro │ │ │ │ │ └── SourceCodePro-Regular.ttf │ │ │ └── img │ │ │ │ ├── Down.svg │ │ │ │ ├── Search.svg │ │ │ │ ├── active_auto.svg │ │ │ │ ├── active_manual.svg │ │ │ │ ├── ai │ │ │ │ ├── ai-chat-small.svg │ │ │ │ ├── ai-chat.svg │ │ │ │ └── ai-robot.svg │ │ │ │ ├── alarm.svg │ │ │ │ ├── browser │ │ │ │ └── treeViewSort.svg │ │ │ │ ├── bulb-active.svg │ │ │ │ ├── bulb.svg │ │ │ │ ├── click-learn-rocket.svg │ │ │ │ ├── code-changes.svg │ │ │ │ ├── configuration-changes.svg │ │ │ │ ├── databases │ │ │ │ └── cake.svg │ │ │ │ ├── github.svg │ │ │ │ ├── guides │ │ │ │ ├── json.svg │ │ │ │ ├── probabilistic-data.svg │ │ │ │ ├── search.svg │ │ │ │ ├── time-series.svg │ │ │ │ ├── triggers-and-functions.svg │ │ │ │ └── vector-similarity.svg │ │ │ │ ├── icons │ │ │ │ ├── analysis.svg │ │ │ │ ├── bike.svg │ │ │ │ ├── bulk-upload.svg │ │ │ │ ├── champagne.svg │ │ │ │ ├── check.svg │ │ │ │ ├── cheer.svg │ │ │ │ ├── columns.svg │ │ │ │ ├── connection.svg │ │ │ │ ├── copilot.svg │ │ │ │ ├── data-upload-bulk.svg │ │ │ │ ├── dislike.svg │ │ │ │ ├── extend.svg │ │ │ │ ├── filter.svg │ │ │ │ ├── formatter.svg │ │ │ │ ├── github-white.svg │ │ │ │ ├── group_mode.svg │ │ │ │ ├── help_illus.svg │ │ │ │ ├── keyboard-shortcuts.svg │ │ │ │ ├── like.svg │ │ │ │ ├── minus_in_circle.svg │ │ │ │ ├── mobile_module_not_loaded.svg │ │ │ │ ├── module_not_loaded.svg │ │ │ │ ├── petard.svg │ │ │ │ ├── play-filled.svg │ │ │ │ ├── play.svg │ │ │ │ ├── plus_in_circle.svg │ │ │ │ ├── popcorn.svg │ │ │ │ ├── profiler.svg │ │ │ │ ├── raw_mode.svg │ │ │ │ ├── recommendations_dark.svg │ │ │ │ ├── recommendations_light.svg │ │ │ │ ├── redis_db_blue.svg │ │ │ │ ├── send.svg │ │ │ │ ├── shrink.svg │ │ │ │ ├── silent_mode.svg │ │ │ │ ├── snooze.svg │ │ │ │ ├── star.svg │ │ │ │ ├── stars.svg │ │ │ │ ├── three_dots.svg │ │ │ │ ├── treeview.svg │ │ │ │ ├── user.svg │ │ │ │ ├── user_in_circle.svg │ │ │ │ ├── vector.svg │ │ │ │ ├── vector_sets.svg │ │ │ │ ├── version.svg │ │ │ │ ├── warning.svg │ │ │ │ └── welcome.svg │ │ │ │ ├── light_theme │ │ │ │ ├── active_auto.svg │ │ │ │ ├── active_manual.svg │ │ │ │ ├── n_active_auto.svg │ │ │ │ └── n_active_manual.svg │ │ │ │ ├── logo.svg │ │ │ │ ├── logo_small.svg │ │ │ │ ├── modules │ │ │ │ ├── RediStack.svg │ │ │ │ ├── RedisAIDark.svg │ │ │ │ ├── RedisAILight.svg │ │ │ │ ├── RedisBloomDark.svg │ │ │ │ ├── RedisBloomLight.svg │ │ │ │ ├── RedisGears2.svg │ │ │ │ ├── RedisGears2Dark.svg │ │ │ │ ├── RedisGears2Light.svg │ │ │ │ ├── RedisGearsDark.svg │ │ │ │ ├── RedisGearsLight.svg │ │ │ │ ├── RedisGraphDark.svg │ │ │ │ ├── RedisGraphLight.svg │ │ │ │ ├── RedisJSONDark.svg │ │ │ │ ├── RedisJSONLight.svg │ │ │ │ ├── RedisSearchDark.svg │ │ │ │ ├── RedisSearchLight.svg │ │ │ │ ├── RedisTimeSeriesDark.svg │ │ │ │ ├── RedisTimeSeriesLight.svg │ │ │ │ ├── Unknown.svg │ │ │ │ ├── UnknownDark.svg │ │ │ │ ├── UnknownLight.svg │ │ │ │ └── redistack │ │ │ │ │ ├── RediStackDark-min.svg │ │ │ │ │ ├── RediStackDark.svg │ │ │ │ │ ├── RediStackLight-min.svg │ │ │ │ │ ├── RediStackLight.svg │ │ │ │ │ ├── RedisStackLogoDark.svg │ │ │ │ │ └── RedisStackLogoLight.svg │ │ │ │ ├── monitor │ │ │ │ └── ban.svg │ │ │ │ ├── multi_play_icon_dark.svg │ │ │ │ ├── multi_play_icon_light.svg │ │ │ │ ├── no-data.svg │ │ │ │ ├── not_active_auto.svg │ │ │ │ ├── not_active_manual.svg │ │ │ │ ├── oauth │ │ │ │ ├── aws_provider.svg │ │ │ │ ├── azure_provider.svg │ │ │ │ ├── cloud.svg │ │ │ │ ├── cloud_centered.svg │ │ │ │ ├── cloud_color.svg │ │ │ │ ├── cloud_link.svg │ │ │ │ ├── confetti.svg │ │ │ │ ├── developer.svg │ │ │ │ ├── github.svg │ │ │ │ ├── github_small.svg │ │ │ │ ├── google.svg │ │ │ │ ├── google_provider.svg │ │ │ │ ├── google_small.svg │ │ │ │ ├── hand.svg │ │ │ │ ├── redisearch.svg │ │ │ │ ├── rejson.svg │ │ │ │ ├── sso.svg │ │ │ │ └── stars.svg │ │ │ │ ├── onboarding-emoji.svg │ │ │ │ ├── options │ │ │ │ ├── Active-ActiveDark.svg │ │ │ │ ├── Active-ActiveLight.svg │ │ │ │ ├── RedisOnFlashDark.svg │ │ │ │ └── RedisOnFlashLight.svg │ │ │ │ ├── overview │ │ │ │ ├── input.svg │ │ │ │ ├── input_dark.svg │ │ │ │ ├── input_light.svg │ │ │ │ ├── input_tip.svg │ │ │ │ ├── key.svg │ │ │ │ ├── key_dark.svg │ │ │ │ ├── key_light.svg │ │ │ │ ├── key_tip.svg │ │ │ │ ├── measure.svg │ │ │ │ ├── measure_dark.svg │ │ │ │ ├── measure_light.svg │ │ │ │ ├── measure_tip.svg │ │ │ │ ├── memory.svg │ │ │ │ ├── memory_dark.svg │ │ │ │ ├── memory_light.svg │ │ │ │ ├── memory_tip.svg │ │ │ │ ├── output.svg │ │ │ │ ├── output_dark.svg │ │ │ │ ├── output_light.svg │ │ │ │ ├── output_tip.svg │ │ │ │ ├── time.svg │ │ │ │ ├── time_dark.svg │ │ │ │ ├── time_light.svg │ │ │ │ ├── time_tip.svg │ │ │ │ ├── user.svg │ │ │ │ ├── user_dark.svg │ │ │ │ ├── user_light.svg │ │ │ │ └── user_tip.svg │ │ │ │ ├── play_icon.svg │ │ │ │ ├── profiler │ │ │ │ └── magnifier.svg │ │ │ │ ├── pub-sub │ │ │ │ ├── light-bulb.svg │ │ │ │ ├── not-subscribed-lt.svg │ │ │ │ ├── not-subscribed.svg │ │ │ │ ├── subscribed-lt.svg │ │ │ │ └── subscribed.svg │ │ │ │ ├── rdi │ │ │ │ ├── download.svg │ │ │ │ ├── empty_list_dark.svg │ │ │ │ ├── empty_list_light.svg │ │ │ │ ├── empty_pipeline.svg │ │ │ │ ├── light_bulb.svg │ │ │ │ ├── new_tab.svg │ │ │ │ ├── pipelineStatuses │ │ │ │ │ ├── initial_sync.svg │ │ │ │ │ ├── not_running.svg │ │ │ │ │ ├── status_error.svg │ │ │ │ │ └── streaming.svg │ │ │ │ ├── playFilled.svg │ │ │ │ ├── reset.svg │ │ │ │ ├── save.svg │ │ │ │ ├── stopFilled.svg │ │ │ │ ├── upload.svg │ │ │ │ └── upload_from_server.svg │ │ │ │ ├── redis-software.svg │ │ │ │ ├── resize-corner.svg │ │ │ │ ├── robot.svg │ │ │ │ ├── shield.svg │ │ │ │ ├── sidebar │ │ │ │ ├── browser.svg │ │ │ │ ├── database.svg │ │ │ │ ├── database_active.svg │ │ │ │ ├── gears.svg │ │ │ │ ├── gears_active.svg │ │ │ │ ├── pipeline.svg │ │ │ │ ├── pipeline_active.svg │ │ │ │ ├── pipeline_statistics.svg │ │ │ │ ├── pubsub.svg │ │ │ │ ├── search.svg │ │ │ │ ├── search_active.svg │ │ │ │ ├── slowlog.svg │ │ │ │ └── workbench.svg │ │ │ │ ├── survey_icon.svg │ │ │ │ ├── telescope-dark.svg │ │ │ │ ├── upgrade.svg │ │ │ │ ├── vector-search │ │ │ │ ├── Eyeglass.svg │ │ │ │ ├── EyeglassDark.svg │ │ │ │ ├── no-indexes.svg │ │ │ │ ├── no-query-results.svg │ │ │ │ └── no-saved-queries.svg │ │ │ │ ├── warning.svg │ │ │ │ ├── welcome_bg_dark.png │ │ │ │ ├── welcome_bg_dark_small.png │ │ │ │ ├── welcome_bg_light.png │ │ │ │ └── workbench │ │ │ │ ├── RediSearchNotAvailableDark.jpg │ │ │ │ ├── RediSearchNotAvailableLight.jpg │ │ │ │ ├── arrow-to-guides.svg │ │ │ │ ├── bulb.svg │ │ │ │ ├── default_view_dark.svg │ │ │ │ ├── default_view_light.svg │ │ │ │ ├── my-tutorials.svg │ │ │ │ ├── table_view_icon_dark.svg │ │ │ │ ├── table_view_icon_light.svg │ │ │ │ ├── text_view_dark.svg │ │ │ │ ├── text_view_light.svg │ │ │ │ └── vis_tag_cloud.svg │ │ ├── components │ │ │ ├── ContentEditable.tsx │ │ │ ├── MonacoEnvironmentInitializer │ │ │ │ ├── MonacoEnvironmentInitializer.spec.tsx │ │ │ │ ├── MonacoEnvironmentInitializer.tsx │ │ │ │ └── yaml.worker.js │ │ │ ├── analytics-tabs │ │ │ │ ├── AnalyticsTabs.spec.tsx │ │ │ │ ├── AnalyticsTabs.stories.tsx │ │ │ │ ├── AnalyticsTabs.tsx │ │ │ │ └── index.ts │ │ │ ├── auto-discover │ │ │ │ ├── EmptyState.tsx │ │ │ │ ├── EmptyState.types.ts │ │ │ │ ├── Header.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.ts │ │ │ ├── auto-refresh │ │ │ │ ├── AutoRefresh.spec.tsx │ │ │ │ ├── AutoRefresh.stories.tsx │ │ │ │ ├── AutoRefresh.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── styles.module.scss │ │ │ │ └── utils.ts │ │ │ ├── base │ │ │ │ ├── display │ │ │ │ │ ├── accordion │ │ │ │ │ │ └── RiAccordion.tsx │ │ │ │ │ ├── badge │ │ │ │ │ │ └── RiBadge.tsx │ │ │ │ │ ├── banner │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── call-out │ │ │ │ │ │ └── CallOut.tsx │ │ │ │ │ ├── collapsible-nav-group │ │ │ │ │ │ └── RICollapsibleNavGroup.tsx │ │ │ │ │ ├── image │ │ │ │ │ │ ├── RiImage.tsx │ │ │ │ │ │ └── image.styles.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── loader │ │ │ │ │ │ └── Loader.tsx │ │ │ │ │ ├── loading-logo │ │ │ │ │ │ └── RiLoadingLogo.tsx │ │ │ │ │ ├── modal │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── progress-bar │ │ │ │ │ │ ├── ProgressBarLoader.tsx │ │ │ │ │ │ └── progress-bar-loader.styles.ts │ │ │ │ │ ├── toast │ │ │ │ │ │ ├── RiToast.tsx │ │ │ │ │ │ ├── RiToaster.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tour │ │ │ │ │ │ ├── TourStep.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ ├── external-link │ │ │ │ │ ├── ExternalLink.spec.tsx │ │ │ │ │ ├── ExternalLink.styles.ts │ │ │ │ │ ├── ExternalLink.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── forms │ │ │ │ │ ├── FormField.tsx │ │ │ │ │ ├── button-group │ │ │ │ │ │ └── ButtonGroup.tsx │ │ │ │ │ ├── buttons │ │ │ │ │ │ ├── ActionIconButton.stories.tsx │ │ │ │ │ │ ├── ActionIconButton.tsx │ │ │ │ │ │ ├── Button.stories.tsx │ │ │ │ │ │ ├── Button.tsx │ │ │ │ │ │ ├── DestructiveButton.stories.tsx │ │ │ │ │ │ ├── DestructiveButton.tsx │ │ │ │ │ │ ├── EmptyButton.stories.tsx │ │ │ │ │ │ ├── EmptyButton.tsx │ │ │ │ │ │ ├── IconButton.stories.tsx │ │ │ │ │ │ ├── IconButton.tsx │ │ │ │ │ │ ├── PrimaryButton.stories.tsx │ │ │ │ │ │ ├── PrimaryButton.tsx │ │ │ │ │ │ ├── SecondaryButton.stories.tsx │ │ │ │ │ │ ├── SecondaryButton.tsx │ │ │ │ │ │ ├── ToggleButton.stories.tsx │ │ │ │ │ │ ├── ToggleButton.tsx │ │ │ │ │ │ ├── button.styles.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── checkbox │ │ │ │ │ │ ├── Checkbox.test.tsx │ │ │ │ │ │ └── Checkbox.tsx │ │ │ │ │ ├── combo-box │ │ │ │ │ │ ├── AutoTag.spec.tsx │ │ │ │ │ │ └── AutoTag.tsx │ │ │ │ │ ├── fieldset │ │ │ │ │ │ ├── FormFieldset.spec.tsx │ │ │ │ │ │ ├── FormFieldset.styles.ts │ │ │ │ │ │ ├── FormFieldset.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── file-picker │ │ │ │ │ │ ├── RiFilePicker.tsx │ │ │ │ │ │ └── styles.tsx │ │ │ │ │ ├── radio-group │ │ │ │ │ │ └── RadioGroup.tsx │ │ │ │ │ └── select │ │ │ │ │ │ ├── RISelectWithActions.spec.tsx │ │ │ │ │ │ ├── RISelectWithActions.tsx │ │ │ │ │ │ └── RiSelect.tsx │ │ │ │ ├── icons │ │ │ │ │ ├── Icon.tsx │ │ │ │ │ ├── RiIcon.tsx │ │ │ │ │ ├── iconRegistry.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── inputs │ │ │ │ │ ├── ComposedInput.tsx │ │ │ │ │ ├── NumericInput.tsx │ │ │ │ │ ├── PasswordInput.tsx │ │ │ │ │ ├── SearchInput.tsx │ │ │ │ │ ├── SwitchInput.spec.tsx │ │ │ │ │ ├── SwitchInput.tsx │ │ │ │ │ ├── TextArea.ts │ │ │ │ │ ├── TextInput.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── layout │ │ │ │ │ ├── card │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── drawer │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── empty-prompt │ │ │ │ │ │ └── RiEmptyPrompt.tsx │ │ │ │ │ ├── flex.module.scss │ │ │ │ │ ├── flex │ │ │ │ │ │ ├── flex.spec.tsx │ │ │ │ │ │ ├── flex.styles.ts │ │ │ │ │ │ ├── flex.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── horizontal-rule │ │ │ │ │ │ ├── HorizontalRule.spec.tsx │ │ │ │ │ │ ├── HorizontalRule.tsx │ │ │ │ │ │ └── horizontal-rule.styles.ts │ │ │ │ │ ├── horizontal-spacer │ │ │ │ │ │ ├── HorizontalSpacer.spec.tsx │ │ │ │ │ │ ├── horizontal-spacer.styles.ts │ │ │ │ │ │ ├── horizontal-spacer.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── list │ │ │ │ │ │ ├── Group.tsx │ │ │ │ │ │ ├── Item.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── list.styles.ts │ │ │ │ │ ├── loading-content │ │ │ │ │ │ ├── LoadingContent.spec.tsx │ │ │ │ │ │ ├── LoadingContent.tsx │ │ │ │ │ │ └── loading-content.styles.ts │ │ │ │ │ ├── menu │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── page │ │ │ │ │ │ ├── Page.tsx │ │ │ │ │ │ ├── PageBody.tsx │ │ │ │ │ │ ├── PageContentBody.tsx │ │ │ │ │ │ ├── PageHeader.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── page-body.spec.tsx │ │ │ │ │ │ ├── page-body.styles.ts │ │ │ │ │ │ ├── page-heading.styles.ts │ │ │ │ │ │ ├── page.spec.tsx │ │ │ │ │ │ └── page.styles.ts │ │ │ │ │ ├── profile-icon │ │ │ │ │ │ └── ProfileIcon.tsx │ │ │ │ │ ├── resize │ │ │ │ │ │ ├── container │ │ │ │ │ │ │ └── ResizableContainer.tsx │ │ │ │ │ │ ├── handle │ │ │ │ │ │ │ ├── ResizablePanelHandle.tsx │ │ │ │ │ │ │ └── resizable-panel-handle.styles.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── panel │ │ │ │ │ │ │ └── ResizablePanel.tsx │ │ │ │ │ ├── sidebar │ │ │ │ │ │ ├── SideBarItemIcon.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── sidebar-item-icon.styles.ts │ │ │ │ │ ├── spacer │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── spacer.spec.tsx │ │ │ │ │ │ ├── spacer.styles.ts │ │ │ │ │ │ └── spacer.tsx │ │ │ │ │ ├── stepper │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── table │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── tabs │ │ │ │ │ │ └── index.ts │ │ │ │ ├── link │ │ │ │ │ ├── Link.tsx │ │ │ │ │ └── link.styles.ts │ │ │ │ ├── popover │ │ │ │ │ ├── RiPopover.tsx │ │ │ │ │ ├── config.ts │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── types.ts │ │ │ │ ├── shared │ │ │ │ │ └── WindowControlGroup.tsx │ │ │ │ ├── text │ │ │ │ │ ├── ColorText.tsx │ │ │ │ │ ├── HealthText.tsx │ │ │ │ │ ├── MultilineEllipsisText.tsx │ │ │ │ │ ├── Text.tsx │ │ │ │ │ ├── Title.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── text.styles.ts │ │ │ │ ├── theme │ │ │ │ │ ├── index.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── tooltip │ │ │ │ │ ├── HoverContent.tsx │ │ │ │ │ ├── RITooltip.tsx │ │ │ │ │ ├── RiTooltip.spec.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── utils │ │ │ │ │ ├── FocusTrap.tsx │ │ │ │ │ ├── OutsideClickDetector.tsx │ │ │ │ │ ├── ShowHide.spec.tsx │ │ │ │ │ ├── ShowHide.tsx │ │ │ │ │ ├── WindowEvent.spec.tsx │ │ │ │ │ ├── WindowEvent.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ ├── generate-id.ts │ │ │ │ │ └── inner-text.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── outsideClickDetector.spec.tsx │ │ │ │ │ ├── pluginsThemeContext.tsx │ │ │ │ │ └── resize-observer │ │ │ │ │ └── ResizeObserver.tsx │ │ │ ├── bottom-group-components │ │ │ │ ├── BottomGroupComponents.spec.tsx │ │ │ │ ├── BottomGroupComponents.stories.tsx │ │ │ │ ├── BottomGroupComponents.tsx │ │ │ │ ├── components │ │ │ │ │ └── bottom-group-minimized │ │ │ │ │ │ ├── BottomGroupMinimized.spec.tsx │ │ │ │ │ │ ├── BottomGroupMinimized.stories.tsx │ │ │ │ │ │ ├── BottomGroupMinimized.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── bulk-actions-config │ │ │ │ ├── BulkActionsConfig.spec.tsx │ │ │ │ ├── BulkActionsConfig.tsx │ │ │ │ └── index.ts │ │ │ ├── charts │ │ │ │ ├── bar-chart │ │ │ │ │ ├── BarChart.spec.tsx │ │ │ │ │ ├── BarChart.stories.tsx │ │ │ │ │ ├── BarChart.styles.ts │ │ │ │ │ ├── BarChart.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── donut-chart │ │ │ │ │ ├── DonutChart.spec.tsx │ │ │ │ │ ├── DonutChart.stories.tsx │ │ │ │ │ ├── DonutChart.styles.ts │ │ │ │ │ ├── DonutChart.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── cli │ │ │ │ ├── Cli │ │ │ │ │ ├── Cli.spec.tsx │ │ │ │ │ ├── Cli.stories.tsx │ │ │ │ │ ├── Cli.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── CliWrapper.spec.tsx │ │ │ │ ├── CliWrapper.stories.tsx │ │ │ │ ├── CliWrapper.tsx │ │ │ │ └── components │ │ │ │ │ ├── cli-body │ │ │ │ │ ├── CliBody │ │ │ │ │ │ ├── CliBody.spec.tsx │ │ │ │ │ │ ├── CliBody.stories.tsx │ │ │ │ │ │ ├── CliBody.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── CliBodyWrapper.spec.tsx │ │ │ │ │ ├── CliBodyWrapper.stories.tsx │ │ │ │ │ ├── CliBodyWrapper.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── cli-header │ │ │ │ │ ├── CliHeader.spec.tsx │ │ │ │ │ ├── CliHeader.stories.tsx │ │ │ │ │ ├── CliHeader.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── cli-input │ │ │ │ │ ├── CliAutocomplete │ │ │ │ │ ├── CliAutocomplete.spec.tsx │ │ │ │ │ ├── CliAutocomplete.stories.tsx │ │ │ │ │ ├── CliAutocomplete.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── CliInput │ │ │ │ │ ├── CliInput.spec.tsx │ │ │ │ │ ├── CliInput.stories.tsx │ │ │ │ │ ├── CliInput.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── CliInputWrapper.spec.tsx │ │ │ │ │ ├── CliInputWrapper.stories.tsx │ │ │ │ │ ├── CliInputWrapper.tsx │ │ │ │ │ └── index.ts │ │ │ ├── code-block │ │ │ │ ├── CodeBlock.spec.tsx │ │ │ │ ├── CodeBlock.stories.tsx │ │ │ │ ├── CodeBlock.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── columns-config │ │ │ │ ├── ColumnsConfigPopover.spec.tsx │ │ │ │ └── ColumnsConfigPopover.tsx │ │ │ ├── command-helper │ │ │ │ ├── CommandHelper │ │ │ │ │ ├── CommandHelper.spec.tsx │ │ │ │ │ ├── CommandHelper.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── CommandHelperHeader │ │ │ │ │ ├── CommandHelperHeader.spec.tsx │ │ │ │ │ ├── CommandHelperHeader.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── CommandHelperWrapper.spec.tsx │ │ │ │ ├── CommandHelperWrapper.tsx │ │ │ │ ├── components │ │ │ │ │ ├── command-helper-info │ │ │ │ │ │ ├── CHCommandInfo.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── command-helper-search-output │ │ │ │ │ │ ├── CHSearchOutput.tsx │ │ │ │ │ │ ├── CliSearchOutput.spec.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── command-helper-search │ │ │ │ │ │ ├── CHSearchFilter │ │ │ │ │ │ ├── CHSearchFilter.spec.tsx │ │ │ │ │ │ ├── CHSearchFilter.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── CHSearchInput │ │ │ │ │ │ ├── CHSearchInput.spec.tsx │ │ │ │ │ │ ├── CHSearchInput.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── CHSearchWrapper.spec.tsx │ │ │ │ │ │ ├── CHSearchWrapper.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ └── index.ts │ │ │ ├── config │ │ │ │ ├── Config.spec.tsx │ │ │ │ ├── Config.tsx │ │ │ │ └── index.ts │ │ │ ├── confirmation-popover │ │ │ │ ├── ConfirmationPopover.spec.tsx │ │ │ │ ├── ConfirmationPopover.tsx │ │ │ │ └── index.ts │ │ │ ├── connectivity-error │ │ │ │ ├── ConnectivityError.spec.tsx │ │ │ │ └── ConnectivityError.tsx │ │ │ ├── consents-settings │ │ │ │ ├── ConsentOption │ │ │ │ │ ├── ConsentOption.spec.tsx │ │ │ │ │ ├── ConsentOption.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── ItemDescription.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ConsentsNotifications │ │ │ │ │ ├── ConsentsNotifications.spec.tsx │ │ │ │ │ ├── ConsentsNotifications.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ConsentsPrivacy │ │ │ │ │ ├── ConsentsPrivacy.spec.tsx │ │ │ │ │ ├── ConsentsPrivacy.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── ConsentsSettings.spec.tsx │ │ │ │ ├── ConsentsSettings.tsx │ │ │ │ ├── ConsentsSettingsPopup │ │ │ │ │ ├── ConsentsSettingsPopup.spec.tsx │ │ │ │ │ └── ConsentsSettingsPopup.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── styles.module.scss │ │ │ │ └── styles.ts │ │ │ ├── copy-button │ │ │ │ ├── CopyButton.spec.tsx │ │ │ │ ├── CopyButton.styles.ts │ │ │ │ ├── CopyButton.tsx │ │ │ │ ├── CopyButton.types.ts │ │ │ │ ├── components │ │ │ │ │ ├── ButtonWithTooltip │ │ │ │ │ │ ├── ButtonWithTooltip.tsx │ │ │ │ │ │ ├── ButtonWithTooltip.types.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── css.d.ts │ │ │ ├── database-list-modules │ │ │ │ ├── DatabaseListModules.spec.tsx │ │ │ │ ├── DatabaseListModules.stories.tsx │ │ │ │ ├── DatabaseListModules.styles.ts │ │ │ │ ├── DatabaseListModules.tsx │ │ │ │ ├── DatabaseListModules.types.ts │ │ │ │ ├── components │ │ │ │ │ ├── DatabaseModuleContent │ │ │ │ │ │ ├── DatabaseModuleContent.tsx │ │ │ │ │ │ └── DatabaseModuleContent.types.ts │ │ │ │ │ ├── DatabaseModuleContentItem │ │ │ │ │ │ ├── DatabaseModuleContentItem.styles.ts │ │ │ │ │ │ ├── DatabaseModuleContentItem.tsx │ │ │ │ │ │ └── DatabaseModuleContentItem.types.ts │ │ │ │ │ ├── DatabaseModuleItem │ │ │ │ │ │ ├── DatabaseModuleItem.styles.ts │ │ │ │ │ │ ├── DatabaseModuleItem.tsx │ │ │ │ │ │ └── DatabaseModuleItem.types.ts │ │ │ │ │ ├── DatabaseModulesList │ │ │ │ │ │ ├── DatabaseModulesList.tsx │ │ │ │ │ │ └── DatabaseModulesList.types.ts │ │ │ │ │ └── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── database-list-options │ │ │ │ ├── DatabaseListOptions.spec.tsx │ │ │ │ ├── DatabaseListOptions.stories.tsx │ │ │ │ ├── DatabaseListOptions.styles.ts │ │ │ │ ├── DatabaseListOptions.tsx │ │ │ │ ├── components │ │ │ │ │ └── Tooltip.tsx │ │ │ │ └── constants.ts │ │ │ ├── database-overview │ │ │ │ ├── DatabaseOverview.spec.tsx │ │ │ │ ├── DatabaseOverview.tsx │ │ │ │ ├── components │ │ │ │ │ ├── OverviewMetrics │ │ │ │ │ │ ├── MetricItem.tsx │ │ │ │ │ │ ├── OverviewMetrics.spec.tsx │ │ │ │ │ │ ├── OverviewMetrics.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── icons.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useDatabaseOverview.spec.ts │ │ │ │ │ └── useDatabaseOverview.ts │ │ │ │ └── styles.module.scss │ │ │ ├── divider │ │ │ │ ├── Divider.spec.tsx │ │ │ │ ├── Divider.styles.ts │ │ │ │ └── Divider.tsx │ │ │ ├── explore-guides │ │ │ │ ├── ExploreGuides.spec.tsx │ │ │ │ ├── ExploreGuides.tsx │ │ │ │ ├── icons.ts │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── feature-flag-component │ │ │ │ ├── FeatureFlagComponent.spec.tsx │ │ │ │ ├── FeatureFlagComponent.tsx │ │ │ │ └── index.ts │ │ │ ├── field-message │ │ │ │ ├── FieldMessage.spec.tsx │ │ │ │ ├── FieldMessage.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── form-dialog │ │ │ │ ├── FooterDatabaseForm.ts │ │ │ │ ├── FormDialog.spec.tsx │ │ │ │ ├── FormDialog.styles.ts │ │ │ │ ├── FormDialog.tsx │ │ │ │ └── index.ts │ │ │ ├── formated-date │ │ │ │ ├── FormatedDate.spec.tsx │ │ │ │ ├── FormatedDate.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── full-screen │ │ │ │ ├── FullScreen.spec.tsx │ │ │ │ ├── FullScreen.tsx │ │ │ │ └── index.ts │ │ │ ├── global-dialogs │ │ │ │ ├── GlobalDialogs.tsx │ │ │ │ └── index.ts │ │ │ ├── global-subscriptions │ │ │ │ ├── CommonAppSubscription │ │ │ │ │ ├── CommonAppSubscription.spec.tsx │ │ │ │ │ ├── CommonAppSubscription.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── GlobalSubscriptions.tsx │ │ │ │ └── index.ts │ │ │ ├── global-url-handler │ │ │ │ ├── GlobalUrlHandler.spec.tsx │ │ │ │ ├── GlobalUrlHandler.tsx │ │ │ │ └── index.ts │ │ │ ├── group-badge │ │ │ │ ├── GroupBadge.stories.tsx │ │ │ │ ├── GroupBadge.styles.ts │ │ │ │ ├── GroupBadge.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── hightlighted-feature │ │ │ │ ├── HighlightedFeature.spec.tsx │ │ │ │ ├── HighlightedFeature.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── home-tabs │ │ │ │ ├── HomeTabs.spec.tsx │ │ │ │ ├── HomeTabs.tsx │ │ │ │ ├── constants.ts │ │ │ │ └── index.ts │ │ │ ├── hooks │ │ │ │ ├── useConnectionType.spec.ts │ │ │ │ └── useConnectionType.ts │ │ │ ├── import-file-modal │ │ │ │ ├── ImportFileModal.spec.tsx │ │ │ │ ├── ImportFileModal.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── index.ts │ │ │ ├── init │ │ │ │ ├── AppInit.spec.tsx │ │ │ │ └── AppInit.tsx │ │ │ ├── inline-item-editor │ │ │ │ ├── InlineItemEditor.spec.tsx │ │ │ │ ├── InlineItemEditor.styles.tsx │ │ │ │ ├── InlineItemEditor.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── input-field-sentinel │ │ │ │ ├── InputFieldSentinel.spec.tsx │ │ │ │ ├── InputFieldSentinel.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── instance-header │ │ │ │ ├── InstanceHeader.spec.tsx │ │ │ │ ├── InstanceHeader.stories.tsx │ │ │ │ ├── InstanceHeader.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ShortInstanceInfo.spec.tsx │ │ │ │ │ ├── ShortInstanceInfo.styles.ts │ │ │ │ │ ├── ShortInstanceInfo.tsx │ │ │ │ │ ├── instances-navigation-popover │ │ │ │ │ │ ├── InstancesNavigationPopover.spec.tsx │ │ │ │ │ │ ├── InstancesNavigationPopover.styles.ts │ │ │ │ │ │ ├── InstancesNavigationPopover.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── instances-list │ │ │ │ │ │ │ │ ├── InstancesList.spec.tsx │ │ │ │ │ │ │ │ ├── InstancesList.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── user-profile │ │ │ │ │ │ ├── CloudUserProfile.tsx │ │ │ │ │ │ ├── UserProfile.spec.tsx │ │ │ │ │ │ ├── UserProfile.tsx │ │ │ │ │ │ ├── UserProfileBadge.spec.tsx │ │ │ │ │ │ └── UserProfileBadge.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── item-list │ │ │ │ ├── ItemList.spec.tsx │ │ │ │ ├── ItemList.tsx │ │ │ │ ├── components │ │ │ │ │ ├── action-bar │ │ │ │ │ │ ├── ActionBar.spec.tsx │ │ │ │ │ │ ├── ActionBar.styles.ts │ │ │ │ │ │ └── ActionBar.tsx │ │ │ │ │ ├── delete-action │ │ │ │ │ │ ├── DeleteAction.spec.tsx │ │ │ │ │ │ └── DeleteAction.tsx │ │ │ │ │ ├── export-action │ │ │ │ │ │ ├── ExportAction.spec.tsx │ │ │ │ │ │ └── ExportAction.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.ts │ │ │ │ ├── styles.module.scss │ │ │ │ ├── utils.spec.ts │ │ │ │ └── utils.ts │ │ │ ├── json-viewer │ │ │ │ ├── JSONViewer.spec.tsx │ │ │ │ ├── JSONViewer.tsx │ │ │ │ ├── components │ │ │ │ │ ├── json-array │ │ │ │ │ │ ├── JsonArray.spec.tsx │ │ │ │ │ │ ├── JsonArray.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── json-object │ │ │ │ │ │ ├── JsonObject.spec.tsx │ │ │ │ │ │ ├── JsonObject.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── json-pretty │ │ │ │ │ │ ├── JsonPretty.spec.tsx │ │ │ │ │ │ ├── JsonPretty.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── json-primitive │ │ │ │ │ │ ├── JsonPrimitive.spec.tsx │ │ │ │ │ │ ├── JsonPrimitive.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── utils.spec.ts │ │ │ │ └── utils.ts │ │ │ ├── keyboard-shortcut │ │ │ │ ├── KeyboardShortcut.spec.tsx │ │ │ │ ├── KeyboardShortcut.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── keys-summary │ │ │ │ ├── KeysSummary.spec.tsx │ │ │ │ ├── KeysSummary.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── main-router │ │ │ │ ├── MainRouter.spec.tsx │ │ │ │ ├── MainRouter.tsx │ │ │ │ ├── components │ │ │ │ │ ├── RedisStackRoutes.spec.tsx │ │ │ │ │ ├── RedisStackRoutes.tsx │ │ │ │ │ ├── SuspenseLoader.tsx │ │ │ │ │ └── loader.module.scss │ │ │ │ ├── config.ts │ │ │ │ ├── constants │ │ │ │ │ ├── commonRoutes.ts │ │ │ │ │ ├── defaultRoutes.ts │ │ │ │ │ ├── redisStackRoutes.ts │ │ │ │ │ └── sub-routes │ │ │ │ │ │ ├── analyticsRoutes.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── rdiPipelineManagementRoutes.ts │ │ │ │ │ │ └── vectorSearchRoutes.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useActivityMonitor.spec.ts │ │ │ │ │ └── useActivityMonitor.ts │ │ │ │ └── interfaces.ts │ │ │ ├── main │ │ │ │ └── MainComponent.tsx │ │ │ ├── markdown │ │ │ │ ├── CloudLink │ │ │ │ │ ├── CloudLink.spec.tsx │ │ │ │ │ ├── CloudLink.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── CodeButtonBlock │ │ │ │ │ ├── CodeButtonBlock.spec.tsx │ │ │ │ │ ├── CodeButtonBlock.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── RunConfirmationPopover.spec.tsx │ │ │ │ │ │ ├── RunConfirmationPopover.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── Image │ │ │ │ │ ├── Image.spec.tsx │ │ │ │ │ ├── Image.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── RedisInsightLink │ │ │ │ │ ├── RedisInsightLink.spec.tsx │ │ │ │ │ ├── RedisInsightLink.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── RedisUploadButton │ │ │ │ │ ├── RedisUploadButton.spec.tsx │ │ │ │ │ ├── RedisUploadButton.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ └── index.ts │ │ │ ├── message-bar │ │ │ │ ├── MessageBar.spec.tsx │ │ │ │ ├── MessageBar.styles.ts │ │ │ │ ├── MessageBar.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── messages │ │ │ │ ├── cli-output │ │ │ │ │ ├── cliOutput.spec.tsx │ │ │ │ │ └── cliOutput.tsx │ │ │ │ ├── database-not-opened │ │ │ │ │ ├── DatabaseNotOpened.spec.tsx │ │ │ │ │ ├── DatabaseNotOpened.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── filter-not-available │ │ │ │ │ ├── FilterNotAvailable.spec.tsx │ │ │ │ │ ├── FilterNotAvailable.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.ts │ │ │ │ ├── module-not-loaded-minimalized │ │ │ │ │ ├── ModuleNotLoadedMinimalized.spec.tsx │ │ │ │ │ ├── ModuleNotLoadedMinimalized.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ └── module-not-loaded │ │ │ │ │ ├── ModuleNotLoaded.spec.tsx │ │ │ │ │ ├── ModuleNotLoaded.tsx │ │ │ │ │ ├── ModuleNotLoadedButton.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ ├── monaco-editor │ │ │ │ ├── MonacoEditor.spec.tsx │ │ │ │ ├── MonacoEditor.tsx │ │ │ │ ├── components │ │ │ │ │ ├── dedicated-editor │ │ │ │ │ │ ├── DedicatedEditor.spec.tsx │ │ │ │ │ │ ├── DedicatedEditor.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── monaco-json │ │ │ │ │ │ ├── MonacoJson.spec.tsx │ │ │ │ │ │ ├── MonacoJson.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── monaco-yaml │ │ │ │ │ │ ├── MonacoYaml.spec.tsx │ │ │ │ │ │ ├── MonacoYaml.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── monacoYamlModel.ts │ │ │ │ ├── index.ts │ │ │ │ ├── styles.module.scss │ │ │ │ ├── useMonacoValidation.spec.tsx │ │ │ │ └── useMonacoValidation.ts │ │ │ ├── monaco-laguages │ │ │ │ ├── MonacoLanguages.spec.tsx │ │ │ │ ├── MonacoLanguages.tsx │ │ │ │ └── index.ts │ │ │ ├── monitor-config │ │ │ │ ├── MonitorConfig.spec.tsx │ │ │ │ ├── MonitorConfig.tsx │ │ │ │ └── index.ts │ │ │ ├── monitor │ │ │ │ ├── Monitor │ │ │ │ │ ├── Monitor.spec.tsx │ │ │ │ │ ├── Monitor.styles.tsx │ │ │ │ │ ├── Monitor.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── MonitorHeader │ │ │ │ │ ├── MonitorHeader.spec.tsx │ │ │ │ │ ├── MonitorHeader.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── MonitorLog │ │ │ │ │ ├── MonitorLog.spec.tsx │ │ │ │ │ ├── MonitorLog.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── MonitorOutputList │ │ │ │ │ ├── MonitorOutputList.spec.tsx │ │ │ │ │ ├── MonitorOutputList.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── MonitorWrapper.spec.tsx │ │ │ │ ├── MonitorWrapper.tsx │ │ │ │ └── index.ts │ │ │ ├── multi-search │ │ │ │ ├── MultiSearch.spec.tsx │ │ │ │ ├── MultiSearch.styles.ts │ │ │ │ └── MultiSearch.tsx │ │ │ ├── navigation-menu │ │ │ │ ├── NavigationMenu.spec.tsx │ │ │ │ ├── NavigationMenu.tsx │ │ │ │ ├── app-navigation │ │ │ │ │ ├── AppNavigation.styles.ts │ │ │ │ │ ├── AppNavigation.tsx │ │ │ │ │ └── AppNavigationTabTrigger.tsx │ │ │ │ ├── components │ │ │ │ │ ├── create-cloud │ │ │ │ │ │ ├── CreateCloud.spec.tsx │ │ │ │ │ │ ├── CreateCloud.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── help-menu │ │ │ │ │ │ ├── HelpMenu.spec.tsx │ │ │ │ │ │ ├── HelpMenu.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── notifications-center │ │ │ │ │ │ ├── Notification │ │ │ │ │ │ │ ├── Notification.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── NotificationCenter.spec.tsx │ │ │ │ │ │ ├── NotificationCenter.tsx │ │ │ │ │ │ ├── NotificationMenu.spec.tsx │ │ │ │ │ │ ├── NotificationMenu.tsx │ │ │ │ │ │ ├── PopoverNotification │ │ │ │ │ │ │ ├── PopoverNotification.spec.tsx │ │ │ │ │ │ │ ├── PopoverNotification.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── redis-logo │ │ │ │ │ │ ├── RedisLogo.spec.tsx │ │ │ │ │ │ └── RedisLogo.tsx │ │ │ │ ├── hooks │ │ │ │ │ └── useNavigation.ts │ │ │ │ ├── navigation.types.ts │ │ │ │ └── styles.module.scss │ │ │ ├── new-index │ │ │ │ ├── create-index-step │ │ │ │ │ ├── field-box │ │ │ │ │ │ ├── FieldBox.spec.tsx │ │ │ │ │ │ ├── FieldBox.styles.ts │ │ │ │ │ │ ├── FieldBox.tsx │ │ │ │ │ │ ├── FieldTag.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ │ └── field-boxes-group │ │ │ │ │ │ ├── FieldBoxesGroup.spec.tsx │ │ │ │ │ │ ├── FieldBoxesGroup.styles.ts │ │ │ │ │ │ └── FieldBoxesGroup.tsx │ │ │ │ └── selection-box │ │ │ │ │ ├── SelectionBox.spec.tsx │ │ │ │ │ ├── SelectionBox.styles.tsx │ │ │ │ │ ├── SelectionBox.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── notifications │ │ │ │ ├── Notifications.spec.tsx │ │ │ │ ├── Notifications.stories.tsx │ │ │ │ ├── Notifications.tsx │ │ │ │ ├── components │ │ │ │ │ ├── cloud-capi-unauthorized │ │ │ │ │ │ ├── CloudCapiUnAuthorizedErrorContent.spec.tsx │ │ │ │ │ │ ├── CloudCapiUnAuthorizedErrorContent.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── default-error-content │ │ │ │ │ │ ├── DefaultErrorContent.spec.tsx │ │ │ │ │ │ ├── DefaultErrorContent.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── encryption-error-content │ │ │ │ │ │ ├── EncryptionErrorContent.spec.tsx │ │ │ │ │ │ ├── EncryptionErrorContent.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── infinite-messages │ │ │ │ │ │ ├── InfiniteMessages.spec.tsx │ │ │ │ │ │ ├── InfiniteMessages.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── rdi-deploy-error-content │ │ │ │ │ │ ├── RdiDeployErrorContent.spec.tsx │ │ │ │ │ │ ├── RdiDeployErrorContent.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── error-messages.spec.tsx │ │ │ │ ├── error-messages.tsx │ │ │ │ ├── hooks │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useErrorNotifications.ts │ │ │ │ │ ├── useInfiniteNotifications.ts │ │ │ │ │ └── useMessageNotifications.tsx │ │ │ │ ├── index.ts │ │ │ │ └── success-messages.tsx │ │ │ ├── oauth │ │ │ │ ├── index.ts │ │ │ │ ├── oauth-connect-free-db │ │ │ │ │ ├── OAuthConnectFreeDb.spec.tsx │ │ │ │ │ ├── OAuthConnectFreeDb.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── oauth-jobs │ │ │ │ │ ├── OAuthJobs.spec.tsx │ │ │ │ │ ├── OAuthJobs.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── oauth-select-account-dialog │ │ │ │ │ ├── OAuthSelectAccountDialog.spec.tsx │ │ │ │ │ ├── OAuthSelectAccountDialog.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── oauth-select-plan │ │ │ │ │ ├── OAuthSelectPlan.spec.tsx │ │ │ │ │ ├── OAuthSelectPlan.styles.ts │ │ │ │ │ ├── OAuthSelectPlan.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── oauth-sign-in-button │ │ │ │ │ ├── OAuthSignInButton.spec.tsx │ │ │ │ │ ├── OAuthSignInButton.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── oauth-sso-dialog │ │ │ │ │ ├── OAuthSsoDialog.spec.tsx │ │ │ │ │ ├── OAuthSsoDialog.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── oauth-sso-handler-dialog │ │ │ │ │ ├── OAuthSsoHandlerDialog.spec.tsx │ │ │ │ │ ├── OAuthSsoHandlerDialog.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── oauth-sso │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── oauth-autodiscovery │ │ │ │ │ │ ├── OAuthAutodiscovery.spec.tsx │ │ │ │ │ │ ├── OAuthAutodiscovery.styles.ts │ │ │ │ │ │ ├── OAuthAutodiscovery.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── oauth-create-db │ │ │ │ │ │ ├── OAuthCreateDb.spec.tsx │ │ │ │ │ │ ├── OAuthCreateDb.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── oauth-sign-in │ │ │ │ │ │ ├── OAuthSignIn.spec.tsx │ │ │ │ │ │ ├── OAuthSignIn.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── oauth-user-profile │ │ │ │ │ ├── OAuthUserProfile.spec.tsx │ │ │ │ │ ├── OAuthUserProfile.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ └── shared │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── oauth-advantages │ │ │ │ │ ├── OAuthAdvantages.spec.tsx │ │ │ │ │ ├── OAuthAdvantages.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── oauth-agreement │ │ │ │ │ ├── OAuthAgreement.spec.tsx │ │ │ │ │ ├── OAuthAgreement.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── oauth-form │ │ │ │ │ ├── OAuthForm.spec.tsx │ │ │ │ │ ├── OAuthForm.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── oauth-sso-form │ │ │ │ │ │ │ ├── OAuthSsoForm.styles.ts │ │ │ │ │ │ │ ├── OAuthSsoForm.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── oauth-recommended-settings │ │ │ │ │ ├── OAuthRecommendedSettings.spec.tsx │ │ │ │ │ ├── OAuthRecommendedSettings.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── oauth-social-buttons │ │ │ │ │ ├── OAuthSocialButtons.spec.tsx │ │ │ │ │ ├── OAuthSocialButtons.styles.ts │ │ │ │ │ ├── OAuthSocialButtons.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ └── styles.ts │ │ │ ├── onboarding-features │ │ │ │ ├── OnboardingFeatures.spec.tsx │ │ │ │ ├── OnboardingFeatures.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── onboarding-tour │ │ │ │ ├── OnboardingTour.spec.tsx │ │ │ │ ├── OnboardingTour.tsx │ │ │ │ ├── OnboardingTourWrapper.spec.tsx │ │ │ │ ├── OnboardingTourWrapper.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ └── styles.module.scss │ │ │ ├── page-header │ │ │ │ ├── PageHeader.module.scss │ │ │ │ ├── PageHeader.spec.tsx │ │ │ │ ├── PageHeader.tsx │ │ │ │ └── components │ │ │ │ │ └── index.ts │ │ │ ├── page-placeholder │ │ │ │ ├── PagePlaceholder.spec.tsx │ │ │ │ ├── PagePlaceholder.tsx │ │ │ │ └── index.ts │ │ │ ├── panel │ │ │ │ └── index.ts │ │ │ ├── promo-link │ │ │ │ ├── PromoLink.spec.tsx │ │ │ │ ├── PromoLink.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── pub-sub-config │ │ │ │ ├── PubSubConfig.spec.tsx │ │ │ │ ├── PubSubConfig.tsx │ │ │ │ └── index.ts │ │ │ ├── query │ │ │ │ ├── components │ │ │ │ │ └── RunButton.tsx │ │ │ │ ├── context │ │ │ │ │ ├── view-mode-context.spec.tsx │ │ │ │ │ └── view-mode.context.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── query-actions │ │ │ │ │ ├── QueryActions.spec.tsx │ │ │ │ │ ├── QueryActions.styles.ts │ │ │ │ │ ├── QueryActions.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── query-card │ │ │ │ │ ├── QueryCard.spec.tsx │ │ │ │ │ ├── QueryCard.tsx │ │ │ │ │ ├── QueryCardCliDefaultResult │ │ │ │ │ │ ├── QueryCardCliDefaultResult.spec.tsx │ │ │ │ │ │ ├── QueryCardCliDefaultResult.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── QueryCardCliGroupResult │ │ │ │ │ │ ├── QueryCardCliGroupResult.spec.tsx │ │ │ │ │ │ ├── QueryCardCliGroupResult.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── QueryCardCliPlugin │ │ │ │ │ │ ├── QueryCardCliPlugin.spec.tsx │ │ │ │ │ │ ├── QueryCardCliPlugin.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── QueryCardCliResultWrapper │ │ │ │ │ │ ├── QueryCardCliResultWrapper.spec.tsx │ │ │ │ │ │ ├── QueryCardCliResultWrapper.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── QueryCardCommonResult │ │ │ │ │ │ ├── QueryCardCommonResult.spec.tsx │ │ │ │ │ │ ├── QueryCardCommonResult.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── CommonErrorResponse │ │ │ │ │ │ │ │ ├── CommonErrorResponse.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── QueryCardHeader │ │ │ │ │ │ ├── QueryCardHeader.spec.tsx │ │ │ │ │ │ ├── QueryCardHeader.styles.ts │ │ │ │ │ │ ├── QueryCardHeader.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── QueryCardTooltip │ │ │ │ │ │ ├── QueryCardTooltip.spec.tsx │ │ │ │ │ │ ├── QueryCardTooltip.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── query-lite-actions │ │ │ │ │ ├── QueryActions.spec.tsx │ │ │ │ │ ├── QueryLiteActions.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── query-tutorials │ │ │ │ │ ├── QueryTutorials.spec.tsx │ │ │ │ │ ├── QueryTutorials.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ ├── range-filter │ │ │ │ ├── RangeFilter.spec.tsx │ │ │ │ ├── RangeFilter.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── rdi-instance-header │ │ │ │ ├── RdiInstanceHeader.spec.tsx │ │ │ │ ├── RdiInstanceHeader.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── recommendation │ │ │ │ ├── badge-icon │ │ │ │ │ ├── BadgeIcon.spec.tsx │ │ │ │ │ ├── BadgeIcon.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── constants.tsx │ │ │ │ ├── content-element │ │ │ │ │ ├── ContentElement.spec.tsx │ │ │ │ │ ├── ContentElement.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── internal-link │ │ │ │ │ ├── InternalLink.spec.tsx │ │ │ │ │ ├── InternalLink.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── recommendation-badges-legend │ │ │ │ │ ├── RecommendationBadgesLegend.spec.tsx │ │ │ │ │ ├── RecommendationBadgesLegend.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── recommendation-badges │ │ │ │ │ ├── RecommendationBadges.spec.tsx │ │ │ │ │ ├── RecommendationBadges.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── recommendation-body │ │ │ │ │ ├── RecommendationBody.spec.tsx │ │ │ │ │ ├── RecommendationBody.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── recommendation-copy-component │ │ │ │ │ ├── RecommendationCopyComponent.spec.tsx │ │ │ │ │ ├── RecommendationCopyComponent.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── recommendation-voting │ │ │ │ │ ├── RecommendationVoting.spec.tsx │ │ │ │ │ ├── RecommendationVoting.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── vote-option │ │ │ │ │ │ │ ├── VoteOption.spec.tsx │ │ │ │ │ │ │ ├── VoteOption.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ └── styles.module.scss │ │ │ ├── scan-more │ │ │ │ ├── ScanMore.spec.tsx │ │ │ │ ├── ScanMore.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── settings-item │ │ │ │ ├── SettingItem.spec.tsx │ │ │ │ ├── SettingItem.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── shortcuts-flyout │ │ │ │ ├── ShortcutsFlyout.spec.tsx │ │ │ │ ├── ShortcutsFlyout.tsx │ │ │ │ └── schema.tsx │ │ │ ├── side-panels │ │ │ │ ├── SidePanels.styles.ts │ │ │ │ ├── SidePanels.test.tsx │ │ │ │ ├── SidePanels.tsx │ │ │ │ ├── components │ │ │ │ │ ├── copilot-panel │ │ │ │ │ │ ├── CopilotPanel.spec.tsx │ │ │ │ │ │ ├── CopilotPanel.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── header │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.ts │ │ │ │ │ └── insights-panel │ │ │ │ │ │ ├── InsightsPanel.spec.tsx │ │ │ │ │ │ ├── InsightsPanel.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── panels │ │ │ │ │ ├── ai-assistant │ │ │ │ │ │ ├── AiAssistant.spec.tsx │ │ │ │ │ │ ├── AiAssistant.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── assistance-chat │ │ │ │ │ │ │ │ ├── AssistanceChat.spec.tsx │ │ │ │ │ │ │ │ ├── AssistanceChat.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── chats-wrapper │ │ │ │ │ │ │ │ ├── ChatsWrapper.spec.tsx │ │ │ │ │ │ │ │ ├── ChatsWrapper.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── expert-chat │ │ │ │ │ │ │ │ ├── ExpertChat.spec.tsx │ │ │ │ │ │ │ │ ├── ExpertChat.tsx │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── expert-chat-header │ │ │ │ │ │ │ │ │ │ ├── ExpertChatHeader.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── ExpertChatHeader.tsx │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ │ └── no-indexes-initial-message │ │ │ │ │ │ │ │ │ │ ├── NoIndexesInitialMessage.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── NoIndexesInitialMessage.tsx │ │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── shared │ │ │ │ │ │ │ │ ├── chat-form │ │ │ │ │ │ │ │ │ ├── ChatForm.spec.tsx │ │ │ │ │ │ │ │ │ ├── ChatForm.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── chat-history │ │ │ │ │ │ │ │ │ ├── ChatHistory.spec.tsx │ │ │ │ │ │ │ │ │ ├── ChatHistory.styles.ts │ │ │ │ │ │ │ │ │ ├── ChatHistory.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── texts.tsx │ │ │ │ │ │ │ │ ├── error-message │ │ │ │ │ │ │ │ │ ├── ErrorMessage.spec.tsx │ │ │ │ │ │ │ │ │ ├── ErrorMessage.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── loading-message │ │ │ │ │ │ │ │ │ ├── LoadingMessage.spec.tsx │ │ │ │ │ │ │ │ │ ├── LoadingMessage.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── markdown-message │ │ │ │ │ │ │ │ │ ├── MarkdownMessage.spec.tsx │ │ │ │ │ │ │ │ │ ├── MarkdownMessage.tsx │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ │ ├── chat-external-link │ │ │ │ │ │ │ │ │ │ │ ├── ChatExternalLink.spec.tsx │ │ │ │ │ │ │ │ │ │ │ ├── ChatExternalLink.tsx │ │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ │ ├── code-block │ │ │ │ │ │ │ │ │ │ │ ├── CodeBlock.spec.tsx │ │ │ │ │ │ │ │ │ │ │ ├── CodeBlock.tsx │ │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── restart-chat │ │ │ │ │ │ │ │ │ ├── RestartChat.spec.tsx │ │ │ │ │ │ │ │ │ ├── RestartChat.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── texts.tsx │ │ │ │ │ │ │ └── welcome-ai-assistant │ │ │ │ │ │ │ │ ├── WelcomeAiAssistant.spec.tsx │ │ │ │ │ │ │ │ ├── WelcomeAiAssistant.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── enablement-area │ │ │ │ │ │ ├── EnablementArea │ │ │ │ │ │ │ ├── EnablementArea.spec.tsx │ │ │ │ │ │ │ ├── EnablementArea.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── Code │ │ │ │ │ │ │ │ │ ├── Code.spec.tsx │ │ │ │ │ │ │ │ │ ├── Code.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── CreateTutorialLink │ │ │ │ │ │ │ │ │ ├── CreateTutorialLink.spec.tsx │ │ │ │ │ │ │ │ │ ├── CreateTutorialLink.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── DeleteTutorialButton │ │ │ │ │ │ │ │ │ ├── DeleteTutorialButton.spec.tsx │ │ │ │ │ │ │ │ │ ├── DeleteTutorialButton.styles.ts │ │ │ │ │ │ │ │ │ ├── DeleteTutorialButton.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── EmptyPrompt │ │ │ │ │ │ │ │ │ ├── EmptyPrompt.spec.tsx │ │ │ │ │ │ │ │ │ ├── EmptyPrompt.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── Group │ │ │ │ │ │ │ │ │ ├── Group.spec.tsx │ │ │ │ │ │ │ │ │ ├── Group.styles.ts │ │ │ │ │ │ │ │ │ ├── Group.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.scss │ │ │ │ │ │ │ │ ├── InternalLink │ │ │ │ │ │ │ │ │ ├── InternalLink.spec.tsx │ │ │ │ │ │ │ │ │ ├── InternalLink.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ │ │ │ │ └── styles.scss │ │ │ │ │ │ │ │ ├── InternalPage │ │ │ │ │ │ │ │ │ ├── InternalPage.spec.tsx │ │ │ │ │ │ │ │ │ ├── InternalPage.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── LazyInternalPage │ │ │ │ │ │ │ │ │ ├── LazyInternalPage.spec.tsx │ │ │ │ │ │ │ │ │ ├── LazyInternalPage.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── Navigation │ │ │ │ │ │ │ │ │ ├── Navigation.spec.tsx │ │ │ │ │ │ │ │ │ ├── Navigation.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── Pagination │ │ │ │ │ │ │ │ │ ├── Pagination.spec.tsx │ │ │ │ │ │ │ │ │ ├── Pagination.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── PlainText │ │ │ │ │ │ │ │ │ ├── PlainText.spec.tsx │ │ │ │ │ │ │ │ │ ├── PlainText.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── UploadTutorialForm │ │ │ │ │ │ │ │ │ ├── UploadTutorialForm.spec.tsx │ │ │ │ │ │ │ │ │ ├── UploadTutorialForm.styles.ts │ │ │ │ │ │ │ │ │ ├── UploadTutorialForm.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── getFileInfo.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ └── getFileInfo.spec.ts │ │ │ │ │ │ ├── EnablementAreaWrapper.spec.tsx │ │ │ │ │ │ ├── EnablementAreaWrapper.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── live-time-recommendations │ │ │ │ │ │ ├── LiveTimeRecommendations.spec.tsx │ │ │ │ │ │ ├── LiveTimeRecommendations.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── popover-run-analyze │ │ │ │ │ │ │ ├── PopoverRunAnalyze.spec.tsx │ │ │ │ │ │ │ ├── PopoverRunAnalyze.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── recommendation │ │ │ │ │ │ │ ├── Recommendation.spec.tsx │ │ │ │ │ │ │ ├── Recommendation.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ └── welcome-screen │ │ │ │ │ │ │ ├── WelcomeScreen.spec.tsx │ │ │ │ │ │ │ ├── WelcomeScreen.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ └── styles.module.scss │ │ │ ├── table-column-search-trigger │ │ │ │ ├── TableColumnSearchTrigger.spec.tsx │ │ │ │ ├── TableColumnSearchTrigger.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── table-column-search │ │ │ │ ├── TableColumnSearch.spec.tsx │ │ │ │ ├── TableColumnSearch.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── triggers │ │ │ │ ├── copilot-trigger │ │ │ │ │ ├── CopilotTrigger.styles.ts │ │ │ │ │ ├── CopilotTrigger.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── insights-trigger │ │ │ │ │ ├── InsightsTrigger.spec.tsx │ │ │ │ │ ├── InsightsTrigger.styles.ts │ │ │ │ │ ├── InsightsTrigger.tsx │ │ │ │ │ └── index.ts │ │ │ ├── upload-file │ │ │ │ ├── UploadFile.spec.tsx │ │ │ │ ├── UploadFile.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── upload-warning │ │ │ │ ├── UploadWarning.spec.tsx │ │ │ │ ├── UploadWarning.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── styles.ts │ │ │ ├── virtual-grid │ │ │ │ ├── VirtualGrid.spec.tsx │ │ │ │ ├── VirtualGrid.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── styles.module.scss │ │ │ │ ├── tests │ │ │ │ │ └── utils.spec.ts │ │ │ │ └── utils.tsx │ │ │ ├── virtual-list │ │ │ │ ├── VirtualList.spec.tsx │ │ │ │ ├── VirtualList.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── virtual-table │ │ │ │ ├── VirtualTable.spec.tsx │ │ │ │ ├── VirtualTable.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── styles.module.scss │ │ │ │ └── utils.tsx │ │ │ └── yaml-validator │ │ │ │ ├── index.ts │ │ │ │ ├── validatePipeline.test.ts │ │ │ │ ├── validatePipeline.ts │ │ │ │ ├── validateYamlSchema.test.ts │ │ │ │ └── validateYamlSchema.ts │ │ ├── config │ │ │ ├── default.ts │ │ │ ├── domain.ts │ │ │ └── index.ts │ │ ├── constants │ │ │ ├── allRedisModules.json │ │ │ ├── api.ts │ │ │ ├── apiErrors.ts │ │ │ ├── apiStatusCode.ts │ │ │ ├── breadcrumbs.ts │ │ │ ├── browser.ts │ │ │ ├── browser │ │ │ │ └── keyDetailsHeader.ts │ │ │ ├── bulkActions.ts │ │ │ ├── cliOutput.ts │ │ │ ├── commands.ts │ │ │ ├── commandsVersions.ts │ │ │ ├── customErrorCodes.ts │ │ │ ├── databaseList.ts │ │ │ ├── datetime.ts │ │ │ ├── durationUnits.tsx │ │ │ ├── env.ts │ │ │ ├── featureFlags.ts │ │ │ ├── featuresHighlighting.tsx │ │ │ ├── help-texts.tsx │ │ │ ├── importDatabasesTableResult.ts │ │ │ ├── index.ts │ │ │ ├── keyboardShortcuts.tsx │ │ │ ├── keys.ts │ │ │ ├── links.ts │ │ │ ├── mocks │ │ │ │ ├── mock-custom-tutorials.ts │ │ │ │ ├── mock-explore-guides.ts │ │ │ │ ├── mock-recommendations.ts │ │ │ │ ├── mock-redis-commands.ts │ │ │ │ ├── mock-sso.ts │ │ │ │ └── mock-tutorials.ts │ │ │ ├── modules.ts │ │ │ ├── monaco │ │ │ │ ├── cypher │ │ │ │ │ ├── functions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── monacoCypher.ts │ │ │ │ ├── index.ts │ │ │ │ ├── jmespath │ │ │ │ │ ├── index.ts │ │ │ │ │ └── monacoJmespath.ts │ │ │ │ ├── monaco.ts │ │ │ │ ├── monacoRedis.ts │ │ │ │ ├── monitorEvents.ts │ │ │ │ ├── sqliteFunctions │ │ │ │ │ ├── functions.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── monacoSQLiteFunctions.ts │ │ │ │ └── theme.ts │ │ │ ├── notifications.ts │ │ │ ├── onboarding.ts │ │ │ ├── pages.ts │ │ │ ├── prop-types │ │ │ │ ├── keys.ts │ │ │ │ └── zset.ts │ │ │ ├── pubSub.ts │ │ │ ├── rdiList.ts │ │ │ ├── recommendations.ts │ │ │ ├── redisearch.ts │ │ │ ├── redisinsight.ts │ │ │ ├── regex.ts │ │ │ ├── securityField.ts │ │ │ ├── serverVersions.ts │ │ │ ├── socketErrors.ts │ │ │ ├── socketEvents.ts │ │ │ ├── sorting.ts │ │ │ ├── storage.ts │ │ │ ├── streamViews.ts │ │ │ ├── string.ts │ │ │ ├── table.ts │ │ │ ├── telemetry.ts │ │ │ ├── texts.tsx │ │ │ ├── themes.tsx │ │ │ ├── tutorials.ts │ │ │ ├── validationErrors.ts │ │ │ ├── workbench.ts │ │ │ └── workbenchResults.ts │ │ ├── contexts │ │ │ ├── AppNavigationActionsProvider.tsx │ │ │ ├── ModalTitleProvider.tsx │ │ │ └── themeContext.tsx │ │ ├── electron │ │ │ ├── AppElectron.spec.tsx │ │ │ ├── AppElectron.tsx │ │ │ ├── components │ │ │ │ ├── ConfigElectron │ │ │ │ │ ├── ConfigElectron.spec.tsx │ │ │ │ │ ├── ConfigElectron.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── ConfigOAuth │ │ │ │ │ ├── ConfigOAuth.spec.tsx │ │ │ │ │ ├── ConfigOAuth.tsx │ │ │ │ │ └── index.tsx │ │ │ │ └── index.ts │ │ │ ├── constants │ │ │ │ ├── cloudAuth.ts │ │ │ │ ├── index.ts │ │ │ │ ├── ipcEvent.ts │ │ │ │ └── storageElectron.ts │ │ │ └── utils │ │ │ │ ├── index.ts │ │ │ │ ├── ipcAppRestart.ts │ │ │ │ ├── ipcAuth.ts │ │ │ │ ├── ipcCheckUpdates.ts │ │ │ │ ├── ipcDeleteStoreValues.ts │ │ │ │ ├── ipcThemeChange.ts │ │ │ │ └── tests │ │ │ │ └── ipcCheckUpdates.spec.ts │ │ ├── helpers │ │ │ ├── constructKeysToTree.ts │ │ │ ├── index.ts │ │ │ └── tests │ │ │ │ ├── constructKeysToTree.spec.ts │ │ │ │ └── constructKeysToTreeMockResult.ts │ │ ├── hoc │ │ │ └── extractRouter.hoc.tsx │ │ ├── mocks │ │ │ ├── content │ │ │ │ └── content.ts │ │ │ ├── data │ │ │ │ ├── analysis.ts │ │ │ │ ├── bigString.ts │ │ │ │ ├── dateNow.ts │ │ │ │ ├── instances.ts │ │ │ │ ├── mocked_redis_commands.ts │ │ │ │ ├── oauth.ts │ │ │ │ └── rdi.ts │ │ │ ├── factories │ │ │ │ ├── browser │ │ │ │ │ └── bulkActions │ │ │ │ │ │ └── bulkActionOverview.factory.ts │ │ │ │ ├── cloud │ │ │ │ │ ├── RedisCloudAccount.factory.ts │ │ │ │ │ ├── RedisCloudInstance.factory.ts │ │ │ │ │ └── RedisCloudSubscription.factory.ts │ │ │ │ ├── cluster │ │ │ │ │ ├── ClusterNodeDetails.factory.ts │ │ │ │ │ └── RedisClusterInstance.factory.ts │ │ │ │ ├── database-analysis │ │ │ │ │ └── DatabaseAnalysis.factory.ts │ │ │ │ ├── database │ │ │ │ │ ├── DBInstance.factory.ts │ │ │ │ │ └── DbConnectionInfo.factory.ts │ │ │ │ ├── rdi │ │ │ │ │ └── RdiPipelineStatus.factory.ts │ │ │ │ ├── redisearch │ │ │ │ │ ├── IndexInfo.factory.ts │ │ │ │ │ └── VectorSearchBox.factory.ts │ │ │ │ ├── sentinel │ │ │ │ │ └── SentinelMaster.factory.ts │ │ │ │ └── workbench │ │ │ │ │ └── commandExectution.factory.ts │ │ │ ├── handlers │ │ │ │ ├── ai │ │ │ │ │ ├── assistantHandlers.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── analytics │ │ │ │ │ ├── clusterDetailsHandlers.ts │ │ │ │ │ ├── dbAnalysisHistoryHandlers.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── app │ │ │ │ │ ├── featureHandlers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── infoHandlers.ts │ │ │ │ │ └── telemetryHandlers.ts │ │ │ │ ├── browser │ │ │ │ │ ├── bulkActionsHandlers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── redisearchHandlers.ts │ │ │ │ ├── content │ │ │ │ │ ├── createRedisButtonsHandlers.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ ├── instances │ │ │ │ │ ├── caCertsHandlers.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── instancesHandlers.ts │ │ │ │ ├── misc │ │ │ │ │ └── index.ts │ │ │ │ ├── oauth │ │ │ │ │ ├── cloud.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── rdi │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── rdiHandler.ts │ │ │ │ │ └── rdiPipelineStrategiesHandlers.ts │ │ │ │ ├── recommendations │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── recommendationsHandler.ts │ │ │ │ │ └── recommendationsReadHandler.ts │ │ │ │ ├── tutorials │ │ │ │ │ ├── index.ts │ │ │ │ │ └── tutorialsHandlers.ts │ │ │ │ ├── user │ │ │ │ │ ├── index.ts │ │ │ │ │ └── userSettingsHandlers.ts │ │ │ │ └── workbench │ │ │ │ │ ├── commands.ts │ │ │ │ │ └── index.ts │ │ │ ├── rdi │ │ │ │ └── RdiInstance.factory.ts │ │ │ ├── res │ │ │ │ └── responseComposition.ts │ │ │ └── server.ts │ │ ├── packages │ │ │ ├── clients-list │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ ├── json_view_icon_dark.svg │ │ │ │ │ ├── json_view_icon_light.svg │ │ │ │ │ ├── table_view_icon_dark.svg │ │ │ │ │ └── table_view_icon_light.svg │ │ │ │ ├── src │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── json-view │ │ │ │ │ │ │ ├── JSONView.spec.tsx │ │ │ │ │ │ │ ├── JSONView.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── json-array │ │ │ │ │ │ │ │ │ ├── JsonArray.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── json-object │ │ │ │ │ │ │ │ │ ├── JsonObject.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── json-pretty │ │ │ │ │ │ │ │ │ ├── JsonPretty.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── json-primitive │ │ │ │ │ │ │ │ │ ├── JsonPrimitive.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ └── table-view │ │ │ │ │ │ │ ├── TableView.spec.tsx │ │ │ │ │ │ │ ├── TableView.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── arrow_down.jsx │ │ │ │ │ │ ├── arrow_left.jsx │ │ │ │ │ │ ├── arrow_right.jsx │ │ │ │ │ │ ├── check.js │ │ │ │ │ │ ├── copy.js │ │ │ │ │ │ ├── cross.js │ │ │ │ │ │ └── empty.js │ │ │ │ │ ├── main.tsx │ │ │ │ │ ├── result.json │ │ │ │ │ ├── styles │ │ │ │ │ │ └── styles.scss │ │ │ │ │ └── utils │ │ │ │ │ │ ├── cachedIcons.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── parseResponse.ts │ │ │ │ └── yarn.lock │ │ │ ├── common │ │ │ │ └── package.json │ │ │ ├── package.json │ │ │ ├── redisearch │ │ │ │ ├── index.html │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ ├── table_view_icon_dark.svg │ │ │ │ │ └── table_view_icon_light.svg │ │ │ │ ├── src │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── GroupBadge │ │ │ │ │ │ │ ├── GroupBadge.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── TableInfoResult │ │ │ │ │ │ │ ├── TableInfoResult.spec.tsx │ │ │ │ │ │ │ ├── TableInfoResult.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── TableResult │ │ │ │ │ │ │ ├── TableResult.spec.tsx │ │ │ │ │ │ │ ├── TableResult.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── constants │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── main.tsx │ │ │ │ │ ├── result.json │ │ │ │ │ ├── result2.json │ │ │ │ │ ├── result3.json │ │ │ │ │ ├── resultInfo.json │ │ │ │ │ ├── result_aggregate_array.json │ │ │ │ │ ├── styles │ │ │ │ │ │ └── styles.scss │ │ │ │ │ └── utils │ │ │ │ │ │ ├── formatLongName.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── parseResponse.ts │ │ │ │ │ │ ├── replaceSpaces.ts │ │ │ │ │ │ └── tests │ │ │ │ │ │ ├── formatLongName.spec.ts │ │ │ │ │ │ └── parseResponse.spec.ts │ │ │ │ └── yarn.lock │ │ │ ├── redisgraph │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── Graph.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── graphd3.ts │ │ │ │ │ ├── main.tsx │ │ │ │ │ ├── mockData │ │ │ │ │ │ └── resultGraph.json │ │ │ │ │ ├── parser.ts │ │ │ │ │ ├── result.ts │ │ │ │ │ ├── styles │ │ │ │ │ │ └── styles.scss │ │ │ │ │ └── utils.ts │ │ │ │ ├── types │ │ │ │ │ └── @elastic │ │ │ │ │ │ └── index.d.ts │ │ │ │ └── yarn.lock │ │ │ ├── redisinsight-plugin-sdk │ │ │ │ ├── .gitignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── events.js │ │ │ │ ├── helpers.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── package-lock.json │ │ │ │ └── package.json │ │ │ ├── redistimeseries-app │ │ │ │ ├── .gitignore │ │ │ │ ├── README.md │ │ │ │ ├── global.d.ts │ │ │ │ ├── index.html │ │ │ │ ├── jest.config.js │ │ │ │ ├── mockData │ │ │ │ │ └── resultTimeSeries.json │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── Chart │ │ │ │ │ │ │ ├── Chart.tsx │ │ │ │ │ │ │ ├── ChartConfigForm.tsx │ │ │ │ │ │ │ ├── ChartResultView.tsx │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ │ │ ├── utils.test.ts │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── main.tsx │ │ │ │ │ ├── response.ts │ │ │ │ │ └── styles │ │ │ │ │ │ └── styles.scss │ │ │ │ └── yarn.lock │ │ │ ├── ri-explain │ │ │ │ ├── README.md │ │ │ │ ├── index.html │ │ │ │ ├── package.json │ │ │ │ ├── public │ │ │ │ │ ├── profile_icon_dark.svg │ │ │ │ │ └── profile_icon_light.svg │ │ │ │ ├── src │ │ │ │ │ ├── App.tsx │ │ │ │ │ ├── Explain.tsx │ │ │ │ │ ├── Node.tsx │ │ │ │ │ ├── constants.ts │ │ │ │ │ ├── global.d.ts │ │ │ │ │ ├── main.tsx │ │ │ │ │ ├── parser.ts │ │ │ │ │ └── styles │ │ │ │ │ │ ├── _dark_theme.less │ │ │ │ │ │ ├── _light_theme.less │ │ │ │ │ │ └── styles.scss │ │ │ │ ├── test-data │ │ │ │ │ ├── result-explain-pd.json │ │ │ │ │ ├── result-explain.json │ │ │ │ │ ├── result-profile_r7--aggregate.json │ │ │ │ │ ├── result-profile_r7.json │ │ │ │ │ └── result-profile_r8.json │ │ │ │ └── yarn.lock │ │ │ ├── vite.config.mjs │ │ │ └── yarn.lock │ │ ├── pages │ │ │ ├── analytics │ │ │ │ ├── AnalyticsPage.spec.tsx │ │ │ │ ├── AnalyticsPage.tsx │ │ │ │ ├── AnalyticsPageRouter.spec.tsx │ │ │ │ ├── AnalyticsPageRouter.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── autodiscover-cloud │ │ │ │ ├── column-definitions │ │ │ │ │ ├── columns │ │ │ │ │ │ ├── alert.tsx │ │ │ │ │ │ ├── database.tsx │ │ │ │ │ │ ├── databaseResult.tsx │ │ │ │ │ │ ├── endpoint.tsx │ │ │ │ │ │ ├── endpointResult.tsx │ │ │ │ │ │ ├── id.tsx │ │ │ │ │ │ ├── messageResult.tsx │ │ │ │ │ │ ├── modules.tsx │ │ │ │ │ │ ├── modulesResult.tsx │ │ │ │ │ │ ├── numberOfDbs.tsx │ │ │ │ │ │ ├── options.tsx │ │ │ │ │ │ ├── optionsResult.tsx │ │ │ │ │ │ ├── provider.tsx │ │ │ │ │ │ ├── region.tsx │ │ │ │ │ │ ├── selection.ts │ │ │ │ │ │ ├── status.tsx │ │ │ │ │ │ ├── statusDb.tsx │ │ │ │ │ │ ├── statusDbResult.tsx │ │ │ │ │ │ ├── subscription.tsx │ │ │ │ │ │ ├── subscriptionDb.tsx │ │ │ │ │ │ ├── subscriptionDbResult.tsx │ │ │ │ │ │ ├── subscriptionId.tsx │ │ │ │ │ │ ├── subscriptionIdResult.tsx │ │ │ │ │ │ ├── subscriptionType.tsx │ │ │ │ │ │ ├── subscriptionTypeResult.tsx │ │ │ │ │ │ └── type.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── AlertCell │ │ │ │ │ │ │ ├── AlertCell.spec.tsx │ │ │ │ │ │ │ ├── AlertCell.tsx │ │ │ │ │ │ │ └── AlertCell.types.ts │ │ │ │ │ │ ├── DatabaseCell │ │ │ │ │ │ │ ├── DatabaseCell.spec.tsx │ │ │ │ │ │ │ ├── DatabaseCell.tsx │ │ │ │ │ │ │ └── DatabaseCell.types.ts │ │ │ │ │ │ ├── EndpointCell │ │ │ │ │ │ │ ├── EndpointCell.spec.tsx │ │ │ │ │ │ │ ├── EndpointCell.tsx │ │ │ │ │ │ │ └── EndpointCell.types.ts │ │ │ │ │ │ ├── MessageResultCell │ │ │ │ │ │ │ ├── MessageResultCell.spec.tsx │ │ │ │ │ │ │ ├── MessageResultCell.tsx │ │ │ │ │ │ │ └── MessageResultCell.types.ts │ │ │ │ │ │ ├── SubscriptionCell │ │ │ │ │ │ │ ├── SubscriptionCell.spec.tsx │ │ │ │ │ │ │ ├── SubscriptionCell.tsx │ │ │ │ │ │ │ └── SubscriptionCell.types.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── components │ │ │ │ │ └── AlertStatusContent.tsx │ │ │ │ ├── constants │ │ │ │ │ └── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── redis-cloud-databases-result │ │ │ │ │ ├── RedisCloudDatabasesResult.spec.tsx │ │ │ │ │ ├── RedisCloudDatabasesResult.stories.tsx │ │ │ │ │ ├── RedisCloudDatabasesResult.tsx │ │ │ │ │ ├── RedisCloudDatabasesResultPage.spec.tsx │ │ │ │ │ ├── RedisCloudDatabasesResultPage.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── SummaryText │ │ │ │ │ │ │ ├── SummaryText.tsx │ │ │ │ │ │ │ └── SummaryText.types.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useCloudDatabasesResultConfig.ts │ │ │ │ │ │ └── useCloudDatabasesResultConfig.types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ └── utils │ │ │ │ │ │ ├── colFactory.spec.ts │ │ │ │ │ │ └── colFactory.ts │ │ │ │ ├── redis-cloud-databases │ │ │ │ │ ├── RedisCloudDatabases │ │ │ │ │ │ ├── RedisCloudDatabases.spec.tsx │ │ │ │ │ │ ├── RedisCloudDatabases.stories.tsx │ │ │ │ │ │ ├── RedisCloudDatabases.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── RedisCloudDatabasesPage.spec.tsx │ │ │ │ │ ├── RedisCloudDatabasesPage.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useCloudDatabasesConfig.test.ts │ │ │ │ │ │ ├── useCloudDatabasesConfig.ts │ │ │ │ │ │ └── useCloudDatabasesConfig.types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ └── utils │ │ │ │ │ │ ├── colFactory.spec.ts │ │ │ │ │ │ └── colFactory.ts │ │ │ │ ├── redis-cloud-subscriptions │ │ │ │ │ ├── RedisCloudSubscriptions │ │ │ │ │ │ ├── RedisCloudSubscriptions.spec.tsx │ │ │ │ │ │ ├── RedisCloudSubscriptions.stories.tsx │ │ │ │ │ │ ├── RedisCloudSubscriptions.styles.ts │ │ │ │ │ │ └── RedisCloudSubscriptions.tsx │ │ │ │ │ ├── RedisCloudSubscriptionsPage.spec.tsx │ │ │ │ │ ├── RedisCloudSubscriptionsPage.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ ├── Account.style.ts │ │ │ │ │ │ │ ├── Account.tsx │ │ │ │ │ │ │ └── Account.types.ts │ │ │ │ │ │ ├── CancelButton │ │ │ │ │ │ │ ├── CancelButton.tsx │ │ │ │ │ │ │ └── CancelButton.types.ts │ │ │ │ │ │ ├── SubmitButton │ │ │ │ │ │ │ ├── SubmitButton.tsx │ │ │ │ │ │ │ └── SubmitButton.types.ts │ │ │ │ │ │ ├── SummaryText │ │ │ │ │ │ │ ├── SummaryText.tsx │ │ │ │ │ │ │ └── SummaryText.types.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useCloudSubscriptionConfig.test.ts │ │ │ │ │ │ ├── useCloudSubscriptionConfig.ts │ │ │ │ │ │ └── useCloudSubscriptionConfig.types.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ └── utils │ │ │ │ │ │ ├── canSelectRow.test.ts │ │ │ │ │ │ ├── canSelectRow.ts │ │ │ │ │ │ ├── colFactory.spec.ts │ │ │ │ │ │ └── colFactory.ts │ │ │ │ ├── redis-cloud │ │ │ │ │ ├── RedisCloudPage.spec.tsx │ │ │ │ │ ├── RedisCloudPage.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── utils.tsx │ │ │ ├── autodiscover-sentinel │ │ │ │ ├── constants │ │ │ │ │ └── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── sentinel-databases-result │ │ │ │ │ ├── SentinelDatabasesResultPage.spec.tsx │ │ │ │ │ ├── SentinelDatabasesResultPage.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── SentinelDatabasesResult │ │ │ │ │ │ │ ├── SentinelDatabasesResult.spec.tsx │ │ │ │ │ │ │ ├── SentinelDatabasesResult.stories.tsx │ │ │ │ │ │ │ ├── SentinelDatabasesResult.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── Summary.tsx │ │ │ │ │ │ │ │ └── SummaryTextProps.types.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── column-definitions │ │ │ │ │ │ │ ├── columns │ │ │ │ │ │ │ │ ├── address.tsx │ │ │ │ │ │ │ │ ├── alias.tsx │ │ │ │ │ │ │ │ ├── db.tsx │ │ │ │ │ │ │ │ ├── numberOfReplicas.ts │ │ │ │ │ │ │ │ ├── password.tsx │ │ │ │ │ │ │ │ ├── primaryGroup.tsx │ │ │ │ │ │ │ │ ├── result.tsx │ │ │ │ │ │ │ │ └── username.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── AddErrorButton │ │ │ │ │ │ │ │ │ ├── AddErrorButton.tsx │ │ │ │ │ │ │ │ │ └── AddErrorButton.types.ts │ │ │ │ │ │ │ │ ├── AddressCell │ │ │ │ │ │ │ │ │ ├── AddressCell.tsx │ │ │ │ │ │ │ │ │ └── AddressCell.types.ts │ │ │ │ │ │ │ │ ├── AliasCell │ │ │ │ │ │ │ │ │ ├── AliasCell.tsx │ │ │ │ │ │ │ │ │ └── AliasCell.types.ts │ │ │ │ │ │ │ │ ├── DbCell │ │ │ │ │ │ │ │ │ ├── DbCell.tsx │ │ │ │ │ │ │ │ │ └── DbCell.types.ts │ │ │ │ │ │ │ │ ├── PasswordCell │ │ │ │ │ │ │ │ │ ├── PasswordCell.tsx │ │ │ │ │ │ │ │ │ └── PasswordCell.types.ts │ │ │ │ │ │ │ │ ├── PrimaryGroupCell │ │ │ │ │ │ │ │ │ ├── PrimaryGroupCell.tsx │ │ │ │ │ │ │ │ │ └── PrimaryGroupCell.types.ts │ │ │ │ │ │ │ │ ├── ResultCell │ │ │ │ │ │ │ │ │ ├── ResultCell.tsx │ │ │ │ │ │ │ │ │ └── ResultCell.types.ts │ │ │ │ │ │ │ │ ├── UsernameCell │ │ │ │ │ │ │ │ │ ├── UsernameCell.tsx │ │ │ │ │ │ │ │ │ └── UsernameCell.types.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useSentinelDatabasesResultConfig.tsx │ │ │ │ ├── sentinel-databases │ │ │ │ │ ├── SentinelDatabasesPage.spec.tsx │ │ │ │ │ ├── SentinelDatabasesPage.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── SentinelDatabases │ │ │ │ │ │ │ ├── SentinelDatabases.spec.tsx │ │ │ │ │ │ │ ├── SentinelDatabases.stories.tsx │ │ │ │ │ │ │ ├── SentinelDatabases.tsx │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ ├── CancelButton │ │ │ │ │ │ │ │ ├── CancelButton.tsx │ │ │ │ │ │ │ │ ├── CancelButton.types.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── NoMastersMessage │ │ │ │ │ │ │ │ ├── NoMastersMessage.tsx │ │ │ │ │ │ │ │ └── NoMastersMessage.types.ts │ │ │ │ │ │ │ │ ├── SubmitButton │ │ │ │ │ │ │ │ ├── SubmitButton.tsx │ │ │ │ │ │ │ │ └── SubmitButton.types.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── column-definitions │ │ │ │ │ │ │ ├── columns │ │ │ │ │ │ │ │ ├── address.tsx │ │ │ │ │ │ │ │ ├── alias.tsx │ │ │ │ │ │ │ │ ├── dbIndex.tsx │ │ │ │ │ │ │ │ ├── numberOfReplicas.ts │ │ │ │ │ │ │ │ ├── password.tsx │ │ │ │ │ │ │ │ ├── primaryGroup.tsx │ │ │ │ │ │ │ │ ├── selection.ts │ │ │ │ │ │ │ │ └── username.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── AddressCell │ │ │ │ │ │ │ │ │ ├── AddressCell.tsx │ │ │ │ │ │ │ │ │ └── AddressCell.types.ts │ │ │ │ │ │ │ │ ├── AliasCell │ │ │ │ │ │ │ │ │ ├── AliasCell.tsx │ │ │ │ │ │ │ │ │ └── AliasCell.types.ts │ │ │ │ │ │ │ │ ├── DbIndexCell │ │ │ │ │ │ │ │ │ ├── DbIndexCell.tsx │ │ │ │ │ │ │ │ │ └── DbIndexCell.types.ts │ │ │ │ │ │ │ │ ├── PasswordCell │ │ │ │ │ │ │ │ │ ├── PasswordCell.tsx │ │ │ │ │ │ │ │ │ └── PasswordCell.types.ts │ │ │ │ │ │ │ │ ├── PrimaryGroupCell │ │ │ │ │ │ │ │ │ ├── PrimaryGroupCell.tsx │ │ │ │ │ │ │ │ │ └── PrimaryGroupCell.types.ts │ │ │ │ │ │ │ │ ├── UsernameCell │ │ │ │ │ │ │ │ │ ├── UsernameCell.tsx │ │ │ │ │ │ │ │ │ └── UsernameCell.types.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── useSentinelDatabasesConfig.tsx │ │ │ │ ├── sentinel │ │ │ │ │ ├── SentinelPage.spec.tsx │ │ │ │ │ ├── SentinelPage.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── browser │ │ │ │ ├── BrowserPage.spec.tsx │ │ │ │ ├── BrowserPage.test.tsx │ │ │ │ ├── BrowserPage.tsx │ │ │ │ ├── components │ │ │ │ │ ├── action-footer │ │ │ │ │ │ ├── ActionFooter.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── actions │ │ │ │ │ │ ├── Actions.spec.tsx │ │ │ │ │ │ └── Actions.tsx │ │ │ │ │ ├── add-key │ │ │ │ │ │ ├── AddKey.spec.tsx │ │ │ │ │ │ ├── AddKey.styles.ts │ │ │ │ │ │ ├── AddKey.tsx │ │ │ │ │ │ ├── AddKeyCommonFields │ │ │ │ │ │ │ ├── AddKeyCommonFields.spec.tsx │ │ │ │ │ │ │ ├── AddKeyCommonFields.tsx │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── AddKeyFooter │ │ │ │ │ │ │ ├── AddKeyFooter.spec.tsx │ │ │ │ │ │ │ └── AddKeyFooter.tsx │ │ │ │ │ │ ├── AddKeyHash │ │ │ │ │ │ │ ├── AddKeyHash.spec.tsx │ │ │ │ │ │ │ ├── AddKeyHash.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── interfaces.ts │ │ │ │ │ │ ├── AddKeyList │ │ │ │ │ │ │ ├── AddKeyList.spec.tsx │ │ │ │ │ │ │ ├── AddKeyList.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── AddKeyReJSON │ │ │ │ │ │ │ ├── AddKeyReJSON.spec.tsx │ │ │ │ │ │ │ ├── AddKeyReJSON.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── AddKeySet │ │ │ │ │ │ │ ├── AddKeySet.spec.tsx │ │ │ │ │ │ │ ├── AddKeySet.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── interfaces.ts │ │ │ │ │ │ ├── AddKeyStream │ │ │ │ │ │ │ ├── AddKeyStream.spec.tsx │ │ │ │ │ │ │ ├── AddKeyStream.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── AddKeyString │ │ │ │ │ │ │ ├── AddKeyString.spec.tsx │ │ │ │ │ │ │ ├── AddKeyString.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── AddKeyZset │ │ │ │ │ │ │ ├── AddKeyZset.spec.tsx │ │ │ │ │ │ │ ├── AddKeyZset.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── interfaces.ts │ │ │ │ │ │ ├── constants │ │ │ │ │ │ │ ├── fields-config.ts │ │ │ │ │ │ │ └── key-type-options.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── add-multiple-fields │ │ │ │ │ │ ├── AddMultipleFields.spec.tsx │ │ │ │ │ │ ├── AddMultipleFields.styles.ts │ │ │ │ │ │ ├── AddMultipleFields.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── browser-left-panel │ │ │ │ │ │ ├── BrowserLeftPanel.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── browser-right-panel │ │ │ │ │ │ ├── BrowserRightPanel.spec.tsx │ │ │ │ │ │ ├── BrowserRightPanel.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── browser-search-panel │ │ │ │ │ │ ├── BrowserSearchPanel.spec.tsx │ │ │ │ │ │ ├── BrowserSearchPanel.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── bulk-actions │ │ │ │ │ │ ├── BulkActionSummary │ │ │ │ │ │ │ ├── BulkActionSummary.spec.tsx │ │ │ │ │ │ │ ├── BulkActionSummary.styles.ts │ │ │ │ │ │ │ ├── BulkActionSummary.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── BulkActions.spec.tsx │ │ │ │ │ │ ├── BulkActions.styles.ts │ │ │ │ │ │ ├── BulkActions.tsx │ │ │ │ │ │ ├── BulkActionsInfo │ │ │ │ │ │ │ ├── BulkActionsInfo.spec.tsx │ │ │ │ │ │ │ ├── BulkActionsInfo.styles.tsx │ │ │ │ │ │ │ ├── BulkActionsInfo.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── BulkActionsStatusDisplay │ │ │ │ │ │ │ ├── BulkActionsStatusDisplay.spec.tsx │ │ │ │ │ │ │ ├── BulkActionsStatusDisplay.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── BulkActionsTabs │ │ │ │ │ │ │ ├── BulkActionsTabs.spec.tsx │ │ │ │ │ │ │ ├── BulkActionsTabs.styles.ts │ │ │ │ │ │ │ ├── BulkActionsTabs.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── BulkDelete │ │ │ │ │ │ │ ├── BulkDelete.tsx │ │ │ │ │ │ │ ├── BulkDeleteContent │ │ │ │ │ │ │ │ ├── BulkDeleteContent.spec.tsx │ │ │ │ │ │ │ │ ├── BulkDeleteContent.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── BulkDeleteFooter │ │ │ │ │ │ │ │ ├── BulkDeleteFooter.spec.tsx │ │ │ │ │ │ │ │ ├── BulkDeleteFooter.styles.ts │ │ │ │ │ │ │ │ ├── BulkDeleteFooter.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── BulkDeleteSummary │ │ │ │ │ │ │ │ ├── BulkDeleteSummary.spec.tsx │ │ │ │ │ │ │ │ ├── BulkDeleteSummary.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── BulkUpload │ │ │ │ │ │ │ ├── BulkUpload.spec.tsx │ │ │ │ │ │ │ ├── BulkUpload.styles.ts │ │ │ │ │ │ │ ├── BulkUpload.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── constants │ │ │ │ │ │ │ └── bulk-type-options.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── create-redisearch-index │ │ │ │ │ │ ├── CreateRedisearchIndex.tsx │ │ │ │ │ │ ├── CreateRedisearchIndexWrapper.spec.tsx │ │ │ │ │ │ ├── CreateRedisearchIndexWrapper.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── delete-key-popover │ │ │ │ │ │ ├── DeleteKeyPopover.spec.tsx │ │ │ │ │ │ └── DeleteKeyPopover.tsx │ │ │ │ │ ├── filter-key-type │ │ │ │ │ │ ├── FilterKeyType.spec.tsx │ │ │ │ │ │ ├── FilterKeyType.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── key-list │ │ │ │ │ │ ├── KeyList.spec.tsx │ │ │ │ │ │ ├── KeyList.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── key-row-name │ │ │ │ │ │ ├── KeyRowName.spec.tsx │ │ │ │ │ │ ├── KeyRowName.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── key-row-size │ │ │ │ │ │ ├── KeyRowSize.spec.tsx │ │ │ │ │ │ ├── KeyRowSize.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── key-row-ttl │ │ │ │ │ │ ├── KeyRowTTL.spec.tsx │ │ │ │ │ │ ├── KeyRowTTL.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── key-row-type │ │ │ │ │ │ ├── KeyRowType.spec.tsx │ │ │ │ │ │ ├── KeyRowType.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── key-tree │ │ │ │ │ │ ├── KeyTree.spec.tsx │ │ │ │ │ │ ├── KeyTree.tsx │ │ │ │ │ │ ├── KeyTreeSettings │ │ │ │ │ │ │ ├── KeyTreeSettings.spec.tsx │ │ │ │ │ │ │ ├── KeyTreeSettings.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── keys-header │ │ │ │ │ │ ├── KeysHeader.spec.tsx │ │ │ │ │ │ ├── KeysHeader.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── load-sample-data │ │ │ │ │ │ ├── LoadSampleData.spec.tsx │ │ │ │ │ │ ├── LoadSampleData.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── no-keys-found │ │ │ │ │ │ ├── NoKeysFound.spec.tsx │ │ │ │ │ │ ├── NoKeysFound.styles.ts │ │ │ │ │ │ ├── NoKeysFound.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── no-keys-message │ │ │ │ │ │ ├── NoKeysMessage.spec.tsx │ │ │ │ │ │ ├── NoKeysMessage.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── onboarding-start-popover │ │ │ │ │ │ ├── OnboardingStartPopover.spec.tsx │ │ │ │ │ │ ├── OnboardingStartPopover.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── popover-delete │ │ │ │ │ │ ├── PopoverDelete.spec.tsx │ │ │ │ │ │ ├── PopoverDelete.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── redisearch-key-list │ │ │ │ │ │ ├── RediSearchIndexesList.spec.tsx │ │ │ │ │ │ ├── RediSearchIndexesList.styles.ts │ │ │ │ │ │ ├── RediSearchIndexesList.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── search-key-list │ │ │ │ │ │ ├── SearchKeyList.spec.tsx │ │ │ │ │ │ ├── SearchKeyList.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── use-key-format │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── useKeyFormat.spec.tsx │ │ │ │ │ │ └── useKeyFormat.ts │ │ │ │ │ └── virtual-tree │ │ │ │ │ │ ├── VirtualTree.spec.tsx │ │ │ │ │ │ ├── VirtualTree.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ └── Node │ │ │ │ │ │ │ ├── Node.spec.tsx │ │ │ │ │ │ │ ├── Node.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── index.ts │ │ │ │ ├── modules │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── key-details-header │ │ │ │ │ │ ├── KeyDetailsHeader.spec.tsx │ │ │ │ │ │ ├── KeyDetailsHeader.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── key-details-header-delete │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderDelete.spec.tsx │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderDelete.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── key-details-header-formatter │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderFormatter.spec.tsx │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderFormatter.styles.tsx │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderFormatter.tsx │ │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── key-details-header-name │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderName.spec.tsx │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderName.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── key-details-header-size-length │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderSizeLength.spec.tsx │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderSizeLength.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ └── key-details-header-ttl │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderTTL.spec.tsx │ │ │ │ │ │ │ │ ├── KeyDetailsHeaderTTL.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── key-details │ │ │ │ │ │ ├── KeyDetails.spec.tsx │ │ │ │ │ │ ├── KeyDetails.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── change-editor-type-button │ │ │ │ │ │ │ ├── ChangeEditorTypeButton.spec.tsx │ │ │ │ │ │ │ ├── ChangeEditorTypeButton.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── useChangeEditorType.spec.ts │ │ │ │ │ │ │ └── useChangeEditorType.tsx │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── AddKeysContainer.styled.ts │ │ │ │ │ │ ├── dynamic-type-details │ │ │ │ │ │ │ ├── DynamicTypeDetails.spec.tsx │ │ │ │ │ │ │ ├── DynamicTypeDetails.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── hash-details │ │ │ │ │ │ │ ├── HashDetails.spec.tsx │ │ │ │ │ │ │ ├── HashDetails.tsx │ │ │ │ │ │ │ ├── add-hash-fields │ │ │ │ │ │ │ │ ├── AddHashFields.spec.tsx │ │ │ │ │ │ │ │ └── AddHashFields.tsx │ │ │ │ │ │ │ ├── hash-details-table │ │ │ │ │ │ │ │ ├── HashDetailsTable.spec.tsx │ │ │ │ │ │ │ │ ├── HashDetailsTable.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── key-details-actions │ │ │ │ │ │ │ ├── add-items-action │ │ │ │ │ │ │ │ ├── AddItemsAction.spec.tsx │ │ │ │ │ │ │ │ └── AddItemsAction.tsx │ │ │ │ │ │ │ ├── edit-item-action │ │ │ │ │ │ │ │ ├── EditItemAction.spec.tsx │ │ │ │ │ │ │ │ └── EditItemAction.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── remove-items-action │ │ │ │ │ │ │ │ ├── RemoveItemsAction.spec.tsx │ │ │ │ │ │ │ │ └── RemoveItemsAction.tsx │ │ │ │ │ │ │ ├── stream-items-action │ │ │ │ │ │ │ │ ├── StreamItemsAction.spec.tsx │ │ │ │ │ │ │ │ └── StreamItemsAction.tsx │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── key-details-subheader │ │ │ │ │ │ │ ├── KeyDetailsSubheader.spec.tsx │ │ │ │ │ │ │ ├── KeyDetailsSubheader.tsx │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── list-details │ │ │ │ │ │ │ ├── ListDetails.spec.tsx │ │ │ │ │ │ │ ├── ListDetails.tsx │ │ │ │ │ │ │ ├── add-list-elements │ │ │ │ │ │ │ │ ├── AddListElements.spec.tsx │ │ │ │ │ │ │ │ └── AddListElements.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── list-details-table │ │ │ │ │ │ │ │ ├── ListDetailsTable.spec.tsx │ │ │ │ │ │ │ │ ├── ListDetailsTable.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── remove-list-elements │ │ │ │ │ │ │ │ ├── RemoveListElements.spec.tsx │ │ │ │ │ │ │ │ ├── RemoveListElements.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── modules-type-details │ │ │ │ │ │ │ ├── ModulesTypeDetails.spec.tsx │ │ │ │ │ │ │ ├── ModulesTypeDetails.tsx │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── no-key-selected │ │ │ │ │ │ │ ├── NoKeySelected.spec.tsx │ │ │ │ │ │ │ ├── NoKeySelected.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── rejson-details │ │ │ │ │ │ │ ├── RejsonDetailsWrapper.spec.tsx │ │ │ │ │ │ │ ├── RejsonDetailsWrapper.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── add-item-field-action │ │ │ │ │ │ │ │ │ ├── AddItemFieldAction.spec.tsx │ │ │ │ │ │ │ │ │ ├── AddItemFieldAction.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── add-item │ │ │ │ │ │ │ │ │ ├── AddItem.spec.tsx │ │ │ │ │ │ │ │ │ ├── AddItem.tsx │ │ │ │ │ │ │ │ │ ├── ConfirmOverwrite.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── edit-entire-item-action │ │ │ │ │ │ │ │ │ ├── EditEntireItemAction.spec.tsx │ │ │ │ │ │ │ │ │ ├── EditEntireItemAction.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── edit-item-field-action │ │ │ │ │ │ │ │ │ ├── EditItemFieldAction.spec.tsx │ │ │ │ │ │ │ │ │ ├── EditItemFieldAction.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── interfaces.ts │ │ │ │ │ │ │ ├── monaco-editor │ │ │ │ │ │ │ │ ├── MonacoEditor.spec.tsx │ │ │ │ │ │ │ │ ├── MonacoEditor.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── rejson-details │ │ │ │ │ │ │ │ ├── RejsonDetails.spec.tsx │ │ │ │ │ │ │ │ ├── RejsonDetails.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── rejson-dynamic-types │ │ │ │ │ │ │ │ ├── RejsonDynamicTypes.spec.tsx │ │ │ │ │ │ │ │ ├── RejsonDynamicTypes.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── rejson-object │ │ │ │ │ │ │ │ ├── RejsonObject.spec.tsx │ │ │ │ │ │ │ │ ├── RejsonObject.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── rejson-scalar │ │ │ │ │ │ │ │ ├── RejsonScalar.spec.tsx │ │ │ │ │ │ │ │ ├── RejsonScalar.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ │ │ ├── styles.scss │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── utils.spec.ts │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ ├── set-details │ │ │ │ │ │ │ ├── SetDetails.spec.tsx │ │ │ │ │ │ │ ├── SetDetails.tsx │ │ │ │ │ │ │ ├── add-set-members │ │ │ │ │ │ │ │ ├── AddSetMembers.spec.tsx │ │ │ │ │ │ │ │ ├── AddSetMembers.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── set-details-table │ │ │ │ │ │ │ │ ├── SetDetailsTable.spec.tsx │ │ │ │ │ │ │ │ ├── SetDetailsTable.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── stream-details │ │ │ │ │ │ │ ├── StreamDetails.spec.tsx │ │ │ │ │ │ │ ├── StreamDetails.tsx │ │ │ │ │ │ │ ├── add-stream-entity │ │ │ │ │ │ │ │ ├── AddStreamEntries.spec.tsx │ │ │ │ │ │ │ │ ├── AddStreamEntries.styles.ts │ │ │ │ │ │ │ │ ├── AddStreamEntries.tsx │ │ │ │ │ │ │ │ ├── StreamEntryFields │ │ │ │ │ │ │ │ │ ├── StreamEntryFields.spec.tsx │ │ │ │ │ │ │ │ │ └── StreamEntryFields.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ ├── add-stream-group │ │ │ │ │ │ │ │ ├── AddStreamGroup.spec.tsx │ │ │ │ │ │ │ │ ├── AddStreamGroup.styles.ts │ │ │ │ │ │ │ │ ├── AddStreamGroup.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ ├── consumers-view │ │ │ │ │ │ │ │ ├── ConsumersView │ │ │ │ │ │ │ │ │ ├── ConsumersView.spec.tsx │ │ │ │ │ │ │ │ │ ├── ConsumersView.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── ConsumersViewWrapper.spec.tsx │ │ │ │ │ │ │ │ ├── ConsumersViewWrapper.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── groups-view │ │ │ │ │ │ │ │ ├── GroupsView │ │ │ │ │ │ │ │ │ ├── GroupsView.spec.tsx │ │ │ │ │ │ │ │ │ ├── GroupsView.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── GroupsViewWrapper.spec.tsx │ │ │ │ │ │ │ │ ├── GroupsViewWrapper.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ ├── messages-view │ │ │ │ │ │ │ │ ├── MessageAckPopover │ │ │ │ │ │ │ │ │ ├── MessageAckPopover.spec.tsx │ │ │ │ │ │ │ │ │ ├── MessageAckPopover.tsx │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── MessageClaimPopover │ │ │ │ │ │ │ │ │ ├── MessageClaimPopover.spec.tsx │ │ │ │ │ │ │ │ │ ├── MessageClaimPopover.tsx │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── MessagesView │ │ │ │ │ │ │ │ │ ├── MessagesView.spec.tsx │ │ │ │ │ │ │ │ │ ├── MessagesView.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── MessagesViewWrapper.spec.tsx │ │ │ │ │ │ │ │ ├── MessagesViewWrapper.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── stream-data-view │ │ │ │ │ │ │ │ ├── StreamDataView │ │ │ │ │ │ │ │ │ ├── StreamDataView.spec.tsx │ │ │ │ │ │ │ │ │ ├── StreamDataView.tsx │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── StreamDataViewWrapper.spec.tsx │ │ │ │ │ │ │ │ ├── StreamDataViewWrapper.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── stream-details-body │ │ │ │ │ │ │ │ ├── StreamDetailsBody.spec.tsx │ │ │ │ │ │ │ │ ├── StreamDetailsBody.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ └── stream-tabs │ │ │ │ │ │ │ │ ├── StreamTabs.spec.tsx │ │ │ │ │ │ │ │ ├── StreamTabs.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── string-details │ │ │ │ │ │ │ ├── StringDetails.spec.tsx │ │ │ │ │ │ │ ├── StringDetails.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── string-details-value │ │ │ │ │ │ │ │ ├── StringDetailsValue.spec.tsx │ │ │ │ │ │ │ │ ├── StringDetailsValue.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── text-details-wrapper │ │ │ │ │ │ │ ├── TextDetailsWrapper.spec.tsx │ │ │ │ │ │ │ ├── TextDetailsWrapper.tsx │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── too-long-key-name-details │ │ │ │ │ │ │ ├── TooLongKeyNameDetails.spec.tsx │ │ │ │ │ │ │ └── TooLongKeyNameDetails.tsx │ │ │ │ │ │ ├── unsupported-type-details │ │ │ │ │ │ │ ├── UnsupportedTypeDetails.spec.tsx │ │ │ │ │ │ │ ├── UnsupportedTypeDetails.tsx │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ └── zset-details │ │ │ │ │ │ │ ├── ZSetDetails.spec.tsx │ │ │ │ │ │ │ ├── ZSetDetails.tsx │ │ │ │ │ │ │ ├── add-zset-members │ │ │ │ │ │ │ ├── AddZsetMembers.spec.tsx │ │ │ │ │ │ │ └── AddZsetMembers.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── zset-details-table │ │ │ │ │ │ │ ├── ZSetDetailsTable.spec.tsx │ │ │ │ │ │ │ ├── ZSetDetailsTable.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── shared │ │ │ │ │ │ ├── editable-input │ │ │ │ │ │ │ ├── EditableInput.spec.tsx │ │ │ │ │ │ │ ├── EditableInput.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── editable-popover │ │ │ │ │ │ │ ├── EditablePopover.spec.tsx │ │ │ │ │ │ │ ├── EditablePopover.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── editable-textarea │ │ │ │ │ │ │ ├── EditableTextArea.spec.tsx │ │ │ │ │ │ │ ├── EditableTextArea.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── formatted-value │ │ │ │ │ │ │ ├── FormattedValue.spec.tsx │ │ │ │ │ │ │ ├── FormattedValue.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ └── styles.module.scss │ │ │ ├── cluster-details │ │ │ │ ├── ClusterDetailsPage.spec.tsx │ │ │ │ ├── ClusterDetailsPage.styles.ts │ │ │ │ ├── ClusterDetailsPage.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ClusterNodesTable │ │ │ │ │ │ ├── ClusterNodesTable.constants.ts │ │ │ │ │ │ ├── ClusterNodesTable.spec.tsx │ │ │ │ │ │ ├── ClusterNodesTable.tsx │ │ │ │ │ │ ├── ClusterNodesTable.types.ts │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── ClusterNodesEmptyState │ │ │ │ │ │ │ ├── ClusterNodesEmptyState.styles.ts │ │ │ │ │ │ │ └── ClusterNodesEmptyState.tsx │ │ │ │ │ │ │ ├── ClusterNodesHostCell │ │ │ │ │ │ │ ├── ClusterNodesHostCell.styles.ts │ │ │ │ │ │ │ └── ClusterNodesHostCell.tsx │ │ │ │ │ │ │ └── ClusterNodesNumericCell │ │ │ │ │ │ │ ├── ClusterNodesNumericCell.spec.tsx │ │ │ │ │ │ │ ├── ClusterNodesNumericCell.tsx │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ ├── formatters.ts │ │ │ │ │ │ │ ├── isMaxColumnFieldValue.spec.ts │ │ │ │ │ │ │ └── isMaxColumnFieldValue.ts │ │ │ │ │ ├── cluster-details-graphics │ │ │ │ │ │ ├── ClusterDetailsGraphics.spec.tsx │ │ │ │ │ │ ├── ClusterDetailsGraphics.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── cluster-details-header │ │ │ │ │ │ ├── ClusterDetailsHeader.spec.tsx │ │ │ │ │ │ ├── ClusterDetailsHeader.styles.ts │ │ │ │ │ │ ├── ClusterDetailsHeader.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── database-analysis │ │ │ │ ├── DatabaseAnalysisPage.spec.tsx │ │ │ │ ├── DatabaseAnalysisPage.tsx │ │ │ │ ├── DatabaseAnalysisPageView.stories.tsx │ │ │ │ ├── DatabaseAnalysisPageView.tsx │ │ │ │ ├── components │ │ │ │ │ ├── analysis-data-view │ │ │ │ │ │ ├── AnalysisDataView.spec.tsx │ │ │ │ │ │ ├── AnalysisDataView.styles.ts │ │ │ │ │ │ ├── AnalysisDataView.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── analysis-page-container │ │ │ │ │ │ ├── AnalysisPageContainer.styles.ts │ │ │ │ │ │ ├── AnalysisPageContainer.tsx │ │ │ │ │ │ ├── AnalysisPageContainer.types.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── analysis-ttl-view │ │ │ │ │ │ ├── ExpirationGroupsView.spec.tsx │ │ │ │ │ │ ├── ExpirationGroupsView.stories.tsx │ │ │ │ │ │ ├── ExpirationGroupsView.styles.ts │ │ │ │ │ │ ├── ExpirationGroupsView.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── analytics-page-header │ │ │ │ │ │ ├── AnalyticsPageHeader.styles.ts │ │ │ │ │ │ ├── AnalyticsPageHeader.tsx │ │ │ │ │ │ ├── AnalyticsPageHeader.types.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── base │ │ │ │ │ │ ├── TableTextBtn.tsx │ │ │ │ │ │ └── TextBtn.tsx │ │ │ │ │ ├── data-nav-tabs │ │ │ │ │ │ ├── DatabaseAnalysisTabs.spec.tsx │ │ │ │ │ │ ├── DatabaseAnalysisTabs.styles.ts │ │ │ │ │ │ ├── DatabaseAnalysisTabs.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── empty-analysis-message │ │ │ │ │ │ ├── EmptyAnalysisMessage.spec.tsx │ │ │ │ │ │ ├── EmptyAnalysisMessage.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── header │ │ │ │ │ │ ├── Header.spec.tsx │ │ │ │ │ │ ├── Header.styles.ts │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── recommendations-view │ │ │ │ │ │ ├── Recommendations.spec.tsx │ │ │ │ │ │ ├── Recommendations.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── styles.ts │ │ │ │ │ ├── summary-per-data │ │ │ │ │ │ ├── SummaryPerData.spec.tsx │ │ │ │ │ │ ├── SummaryPerData.styles.ts │ │ │ │ │ │ ├── SummaryPerData.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── table-loader │ │ │ │ │ │ ├── TableLoader.spec.tsx │ │ │ │ │ │ ├── TableLoader.styles.ts │ │ │ │ │ │ ├── TableLoader.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── top-keys │ │ │ │ │ │ ├── TopKeys.spec.tsx │ │ │ │ │ │ ├── TopKeys.stories.tsx │ │ │ │ │ │ ├── TopKeys.tsx │ │ │ │ │ │ ├── TopKeysTable.spec.tsx │ │ │ │ │ │ └── TopKeysTable.tsx │ │ │ │ │ └── top-namespace │ │ │ │ │ │ ├── TopNamespace.spec.tsx │ │ │ │ │ │ ├── TopNamespace.stories.tsx │ │ │ │ │ │ ├── TopNamespace.styles.ts │ │ │ │ │ │ ├── TopNamespace.tsx │ │ │ │ │ │ ├── TopNamespacesTable.spec.tsx │ │ │ │ │ │ ├── TopNamespacesTable.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── constants.ts │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── home │ │ │ │ ├── HomePage.spec.tsx │ │ │ │ ├── HomePage.tsx │ │ │ │ ├── components │ │ │ │ │ ├── ManualConnection.styles.ts │ │ │ │ │ ├── add-database-screen │ │ │ │ │ │ ├── AddDatabaseScreen.spec.tsx │ │ │ │ │ │ ├── AddDatabaseScreen.styles.ts │ │ │ │ │ │ ├── AddDatabaseScreen.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── connection-url │ │ │ │ │ │ │ │ ├── ConnectionUrl.spec.tsx │ │ │ │ │ │ │ │ ├── ConnectionUrl.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── connectivity-options │ │ │ │ │ │ │ │ ├── ConnectivityOptions.spec.tsx │ │ │ │ │ │ │ │ ├── ConnectivityOptions.styles.ts │ │ │ │ │ │ │ │ ├── ConnectivityOptions.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── constants.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── cloud-connection │ │ │ │ │ │ ├── CloudConnectionFormWrapper.spec.tsx │ │ │ │ │ │ ├── CloudConnectionFormWrapper.tsx │ │ │ │ │ │ ├── cloud-connection-form │ │ │ │ │ │ │ ├── CloudConnectionForm.spec.tsx │ │ │ │ │ │ │ ├── CloudConnectionForm.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── cluster-connection │ │ │ │ │ │ ├── ClusterConnectionFormWrapper.spec.tsx │ │ │ │ │ │ ├── ClusterConnectionFormWrapper.tsx │ │ │ │ │ │ ├── cluster-connection-form │ │ │ │ │ │ │ ├── ClusterConnectionForm.spec.tsx │ │ │ │ │ │ │ ├── ClusterConnectionForm.stories.tsx │ │ │ │ │ │ │ ├── ClusterConnectionForm.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── database-list-component │ │ │ │ │ │ ├── DatabasesListWrapper.spec.tsx │ │ │ │ │ │ ├── DatabasesListWrapper.stories.tsx │ │ │ │ │ │ ├── DatabasesListWrapper.test.tsx │ │ │ │ │ │ ├── DatabasesListWrapper.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── methods │ │ │ │ │ │ │ └── handleClickFreeCloudDb.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── database-list-header │ │ │ │ │ │ ├── DatabaseListHeader.spec.tsx │ │ │ │ │ │ ├── DatabaseListHeader.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── database-manage-tags-modal │ │ │ │ │ │ ├── ManageTagsModal.spec.tsx │ │ │ │ │ │ ├── ManageTagsModal.styles.ts │ │ │ │ │ │ ├── ManageTagsModal.tsx │ │ │ │ │ │ ├── TagInputField.spec.tsx │ │ │ │ │ │ ├── TagInputField.tsx │ │ │ │ │ │ ├── TagInputField.types.ts │ │ │ │ │ │ ├── TagSuggestions.spec.tsx │ │ │ │ │ │ ├── TagSuggestions.styles.ts │ │ │ │ │ │ ├── TagSuggestions.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ └── utils.ts │ │ │ │ │ ├── database-panel-dialog │ │ │ │ │ │ ├── DatabasePanelDialog.spec.tsx │ │ │ │ │ │ ├── DatabasePanelDialog.stories.tsx │ │ │ │ │ │ ├── DatabasePanelDialog.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── databases-list │ │ │ │ │ │ ├── DatabasesList.config.tsx │ │ │ │ │ │ ├── DatabasesList.tsx │ │ │ │ │ │ ├── DatabasesList.types.ts │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── BulkItemsActions │ │ │ │ │ │ │ │ ├── BulkItemsActions.tsx │ │ │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ │ │ ├── handlers.spec.ts │ │ │ │ │ │ │ │ │ └── handlers.ts │ │ │ │ │ │ │ ├── DatabasesListCellConnectionType │ │ │ │ │ │ │ │ └── DatabasesListCellConnectionType.tsx │ │ │ │ │ │ │ ├── DatabasesListCellControls │ │ │ │ │ │ │ │ ├── DatabasesListCellControls.spec.tsx │ │ │ │ │ │ │ │ ├── DatabasesListCellControls.styles.ts │ │ │ │ │ │ │ │ ├── DatabasesListCellControls.tsx │ │ │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ │ │ ├── handlers.spec.ts │ │ │ │ │ │ │ │ │ └── handlers.ts │ │ │ │ │ │ │ ├── DatabasesListCellHost │ │ │ │ │ │ │ │ ├── DatabasesListCellHost.styles.ts │ │ │ │ │ │ │ │ ├── DatabasesListCellHost.tsx │ │ │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ │ │ ├── handlers.spec.ts │ │ │ │ │ │ │ │ │ └── handlers.ts │ │ │ │ │ │ │ ├── DatabasesListCellLastConnection │ │ │ │ │ │ │ │ └── DatabasesListCellLastConnection.tsx │ │ │ │ │ │ │ ├── DatabasesListCellModules │ │ │ │ │ │ │ │ └── DatabasesListCellModules.tsx │ │ │ │ │ │ │ ├── DatabasesListCellName │ │ │ │ │ │ │ │ ├── DatabasesListCellName.styles.ts │ │ │ │ │ │ │ │ └── DatabasesListCellName.tsx │ │ │ │ │ │ │ └── DatabasesListCellTags │ │ │ │ │ │ │ │ └── DatabasesListCellTags.tsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── useDatabaseListData.spec.ts │ │ │ │ │ │ │ └── useDatabaseListData.ts │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ ├── handlers.spec.ts │ │ │ │ │ │ │ └── handlers.ts │ │ │ │ │ ├── db-status │ │ │ │ │ │ ├── DbStatus.spec.tsx │ │ │ │ │ │ ├── DbStatus.styles.ts │ │ │ │ │ │ ├── DbStatus.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── texts.tsx │ │ │ │ │ ├── empty-message │ │ │ │ │ │ ├── EmptyMessage.spec.tsx │ │ │ │ │ │ ├── EmptyMessage.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── form │ │ │ │ │ │ ├── DatabaseForm.spec.tsx │ │ │ │ │ │ ├── DatabaseForm.tsx │ │ │ │ │ │ ├── DbCompressor.tsx │ │ │ │ │ │ ├── DbIndex.tsx │ │ │ │ │ │ ├── DbInfo.styles.ts │ │ │ │ │ │ ├── DbInfo.tsx │ │ │ │ │ │ ├── ForceStandalone.tsx │ │ │ │ │ │ ├── KeyFormatSelector.tsx │ │ │ │ │ │ ├── Messages.tsx │ │ │ │ │ │ ├── SSHDetails.tsx │ │ │ │ │ │ ├── TlsDetails.spec.tsx │ │ │ │ │ │ ├── TlsDetails.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ ├── sentinel │ │ │ │ │ │ │ ├── DbInfoSentinel.styles.ts │ │ │ │ │ │ │ ├── DbInfoSentinel.tsx │ │ │ │ │ │ │ ├── PrimaryGroupSentinel.tsx │ │ │ │ │ │ │ ├── SentinelMasterDatabase.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── host-info-tooltip-content │ │ │ │ │ │ ├── HostInfoTooltipContent.styles.ts │ │ │ │ │ │ └── HostInfoTooltipContent.tsx │ │ │ │ │ ├── import-database │ │ │ │ │ │ ├── ImportDatabase.spec.tsx │ │ │ │ │ │ ├── ImportDatabase.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── ResultsLog │ │ │ │ │ │ │ │ ├── ResultLog.styles.ts │ │ │ │ │ │ │ │ ├── ResultsLog.config.tsx │ │ │ │ │ │ │ │ ├── ResultsLog.spec.tsx │ │ │ │ │ │ │ │ ├── ResultsLog.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── TableResult │ │ │ │ │ │ │ │ ├── TableResult.spec.tsx │ │ │ │ │ │ │ │ ├── TableResult.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── manual-connection │ │ │ │ │ │ ├── ManualConnectionWrapper.spec.tsx │ │ │ │ │ │ ├── ManualConnectionWrapper.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── manual-connection-form │ │ │ │ │ │ │ ├── ManualConnectionForm.stories.tsx │ │ │ │ │ │ │ ├── ManualConnectionForm.tsx │ │ │ │ │ │ │ ├── ManualConnectionFrom.spec.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── CloneConnection.tsx │ │ │ │ │ │ │ └── FooterActions.tsx │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ ├── forms │ │ │ │ │ │ │ ├── AddConnection.tsx │ │ │ │ │ │ │ ├── DecompressionAndFormatters.tsx │ │ │ │ │ │ │ ├── EditConnection.tsx │ │ │ │ │ │ │ ├── EditSentinelConnection.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── search-databases-list │ │ │ │ │ │ ├── SearchDatabasesList.spec.tsx │ │ │ │ │ │ ├── SearchDatabasesList.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── sentinel-connection │ │ │ │ │ │ ├── SentinelConnectionWrapper.spec.tsx │ │ │ │ │ │ ├── SentinelConnectionWrapper.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── sentinel-connection-form │ │ │ │ │ │ │ ├── SentinelConnectionForm.spec.tsx │ │ │ │ │ │ │ ├── SentinelConnectionForm.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ └── tags-cell │ │ │ │ │ │ ├── TagsCell.spec.tsx │ │ │ │ │ │ ├── TagsCell.tsx │ │ │ │ │ │ ├── TagsCellHeader.spec.tsx │ │ │ │ │ │ ├── TagsCellHeader.tsx │ │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ │ ├── useFilterTags.spec.ts │ │ │ │ │ │ └── useFilterTags.ts │ │ │ │ ├── constants │ │ │ │ │ ├── database.ts │ │ │ │ │ ├── form.ts │ │ │ │ │ ├── help-links.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── contexts │ │ │ │ │ └── HomePageDataProvider.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces │ │ │ │ │ ├── form.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── styles.module.scss │ │ │ │ ├── styles.scss │ │ │ │ └── utils │ │ │ │ │ ├── form.tsx │ │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── instance │ │ │ │ ├── InstancePage.spec.tsx │ │ │ │ ├── InstancePage.tsx │ │ │ │ ├── InstancePageRouter.spec.tsx │ │ │ │ ├── InstancePageRouter.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── instanceConnectionLost.spec.tsx │ │ │ │ ├── instanceConnectionLost.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── not-found-error │ │ │ │ ├── NotFoundErrorPage.spec.tsx │ │ │ │ ├── NotFoundErrorPage.tsx │ │ │ │ └── styles.module.scss │ │ │ ├── pub-sub │ │ │ │ ├── PubSubPage.spec.tsx │ │ │ │ ├── PubSubPage.styles.tsx │ │ │ │ ├── PubSubPage.tsx │ │ │ │ ├── components │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── messages-list │ │ │ │ │ │ ├── EmptyMessagesList │ │ │ │ │ │ │ ├── EmptyMessagesList.spec.tsx │ │ │ │ │ │ │ ├── EmptyMessagesList.styles.tsx │ │ │ │ │ │ │ ├── EmptyMessagesList.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── MessagesListTable │ │ │ │ │ │ │ ├── MessagesListTable.config.tsx │ │ │ │ │ │ │ ├── MessagesListTable.constants.ts │ │ │ │ │ │ │ ├── MessagesListTable.spec.tsx │ │ │ │ │ │ │ ├── MessagesListTable.styles.tsx │ │ │ │ │ │ │ ├── MessagesListTable.tsx │ │ │ │ │ │ │ ├── MessagesListTable.types.ts │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ └── MessagesListTableCellTimestamp.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── patternsInfo │ │ │ │ │ │ ├── PatternsInfo.spec.tsx │ │ │ │ │ │ ├── PatternsInfo.styles.tsx │ │ │ │ │ │ ├── PatternsInfo.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── publish-message │ │ │ │ │ │ ├── PublishMessage.spec.tsx │ │ │ │ │ │ ├── PublishMessage.styles.tsx │ │ │ │ │ │ ├── PublishMessage.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── subscribe-form │ │ │ │ │ │ ├── SubscribeForm.spec.tsx │ │ │ │ │ │ ├── SubscribeForm.styles.tsx │ │ │ │ │ │ ├── SubscribeForm.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── subscribe-information │ │ │ │ │ │ ├── SubscribeInformation.spec.tsx │ │ │ │ │ │ ├── SubscribeInformation.styles.tsx │ │ │ │ │ │ ├── SubscribeInformation.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ └── index.ts │ │ │ ├── rdi │ │ │ │ ├── components │ │ │ │ │ └── confirmation-popover │ │ │ │ │ │ ├── ConfirmationPopover.spec.tsx │ │ │ │ │ │ ├── ConfirmationPopover.tsx │ │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── constants │ │ │ │ │ ├── errors.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── home │ │ │ │ │ ├── RdiPage.spec.tsx │ │ │ │ │ ├── RdiPage.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ └── rdi-instances-list │ │ │ │ │ │ │ ├── RdiInstancesList.config.ts │ │ │ │ │ │ │ ├── RdiInstancesList.tsx │ │ │ │ │ │ │ ├── RdiInstancesList.types.ts │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── BulkItemsActions │ │ │ │ │ │ │ │ ├── BulkItemsActions.spec.tsx │ │ │ │ │ │ │ │ ├── BulkItemsActions.tsx │ │ │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ │ │ └── handlers.ts │ │ │ │ │ │ │ ├── RdiInstancesListCell │ │ │ │ │ │ │ │ ├── RdiInstancesListCell.spec.tsx │ │ │ │ │ │ │ │ ├── RdiInstancesListCell.styles.ts │ │ │ │ │ │ │ │ └── RdiInstancesListCell.tsx │ │ │ │ │ │ │ ├── RdiInstancesListCellControls │ │ │ │ │ │ │ │ └── RdiInstancesListCellControls.tsx │ │ │ │ │ │ │ └── RdiInstancesListCellSelect │ │ │ │ │ │ │ │ └── RdiInstancesListCellSelect.tsx │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ ├── useRdiInstancesListData.spec.ts │ │ │ │ │ │ │ └── useRdiInstancesListData.ts │ │ │ │ │ │ │ └── methods │ │ │ │ │ │ │ ├── handlers.ts │ │ │ │ │ │ │ ├── sortingAdapters.spec.ts │ │ │ │ │ │ │ └── sortingAdapters.ts │ │ │ │ │ ├── connection-form │ │ │ │ │ │ ├── ConnectionForm.spec.tsx │ │ │ │ │ │ ├── ConnectionForm.tsx │ │ │ │ │ │ ├── ConnectionFormWrapper.spec.tsx │ │ │ │ │ │ ├── ConnectionFormWrapper.tsx │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── ValidationTooltip.spec.tsx │ │ │ │ │ │ │ └── ValidationTooltip.tsx │ │ │ │ │ ├── contexts │ │ │ │ │ │ └── RdiPageDataProvider.tsx │ │ │ │ │ ├── empty-message │ │ │ │ │ │ ├── EmptyMessage.spec.tsx │ │ │ │ │ │ ├── EmptyMessage.tsx │ │ │ │ │ │ └── styles.ts │ │ │ │ │ ├── header │ │ │ │ │ │ ├── RdiHeader.spec.tsx │ │ │ │ │ │ └── RdiHeader.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── search │ │ │ │ │ │ ├── SearchRdiList.spec.tsx │ │ │ │ │ │ └── SearchRdiList.tsx │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── instance │ │ │ │ │ ├── InstancePage.spec.tsx │ │ │ │ │ ├── InstancePage.tsx │ │ │ │ │ ├── InstancePageRouter.spec.tsx │ │ │ │ │ ├── InstancePageRouter.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── download │ │ │ │ │ │ │ ├── Download.spec.tsx │ │ │ │ │ │ │ ├── Download.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── header │ │ │ │ │ │ │ ├── RdiPipelineHeader.spec.tsx │ │ │ │ │ │ │ ├── RdiPipelineHeader.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── buttons │ │ │ │ │ │ │ │ │ ├── deploy-pipeline-button │ │ │ │ │ │ │ │ │ │ ├── DeployPipelineButton.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── DeployPipelineButton.tsx │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── reset-pipeline-button │ │ │ │ │ │ │ │ │ │ ├── ResetPipelineButton.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── ResetPipelineButton.tsx │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ ├── start-pipeline-button │ │ │ │ │ │ │ │ │ │ ├── StartPipelineButton.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── StartPipelineButton.tsx │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ ├── stop-pipeline-button │ │ │ │ │ │ │ │ │ │ ├── StopPipelineButton.spec.tsx │ │ │ │ │ │ │ │ │ │ ├── StopPipelineButton.tsx │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ │ │ ├── current-pipeline-status │ │ │ │ │ │ │ │ │ ├── CurrentPipelineStatus.spec.tsx │ │ │ │ │ │ │ │ │ ├── CurrentPipelineStatus.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ ├── pipeline-actions │ │ │ │ │ │ │ │ │ ├── PipelineActions.spec.tsx │ │ │ │ │ │ │ │ │ ├── PipelineActions.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── rdi-config-file-action-menu │ │ │ │ │ │ │ │ │ ├── RdiConfigFileActionMenu.spec.tsx │ │ │ │ │ │ │ │ │ ├── RdiConfigFileActionMenu.tsx │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── pipeline-management │ │ │ │ │ ├── PipelineManagementPage.spec.tsx │ │ │ │ │ ├── PipelineManagementPage.styles.tsx │ │ │ │ │ ├── PipelineManagementPage.tsx │ │ │ │ │ ├── PipelineManagementPageRouter.spec.tsx │ │ │ │ │ ├── PipelineManagementPageRouter.tsx │ │ │ │ │ ├── components │ │ │ │ │ │ ├── download-from-server-modal │ │ │ │ │ │ │ ├── DownloadFromServerModal.spec.tsx │ │ │ │ │ │ │ └── DownloadFromServerModal.tsx │ │ │ │ │ │ ├── dry-run-job-commands │ │ │ │ │ │ │ ├── DryRunJobCommands.spec.tsx │ │ │ │ │ │ │ ├── DryRunJobCommands.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── dry-run-job-transformations │ │ │ │ │ │ │ ├── DryRunJobTransformations.spec.tsx │ │ │ │ │ │ │ ├── DryRunJobTransformations.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── jobs-panel │ │ │ │ │ │ │ ├── Panel.spec.tsx │ │ │ │ │ │ │ ├── Panel.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ ├── navigation │ │ │ │ │ │ │ ├── Navigation.spec.tsx │ │ │ │ │ │ │ ├── Navigation.tsx │ │ │ │ │ │ │ ├── cards │ │ │ │ │ │ │ │ ├── BaseCard.styles.ts │ │ │ │ │ │ │ │ ├── BaseCard.tsx │ │ │ │ │ │ │ │ ├── ConfigurationCard.spec.tsx │ │ │ │ │ │ │ │ ├── ConfigurationCard.tsx │ │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ │ ├── useConfigurationState.spec.ts │ │ │ │ │ │ │ │ │ └── useConfigurationState.ts │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── jobs │ │ │ │ │ │ │ │ │ ├── JobNameForm.tsx │ │ │ │ │ │ │ │ │ ├── JobsCard.spec.tsx │ │ │ │ │ │ │ │ │ ├── JobsCard.tsx │ │ │ │ │ │ │ │ │ └── JobsItem.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── source-pipeline-dialog │ │ │ │ │ │ │ ├── SourcePipelineModal.spec.tsx │ │ │ │ │ │ │ ├── SourcePipelineModal.styles.ts │ │ │ │ │ │ │ ├── SourcePipelineModal.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── template-button │ │ │ │ │ │ │ ├── TemplateButton.spec.tsx │ │ │ │ │ │ │ ├── TemplateButton.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── template-form │ │ │ │ │ │ │ ├── TemplateForm.spec.tsx │ │ │ │ │ │ │ ├── TemplateForm.tsx │ │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── template-popover │ │ │ │ │ │ │ ├── TemplatePopover.spec.tsx │ │ │ │ │ │ │ ├── TemplatePopover.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── test-connections-log │ │ │ │ │ │ │ ├── TestConnectionsLog.spec.tsx │ │ │ │ │ │ │ ├── TestConnectionsLog.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── test-connections-panel │ │ │ │ │ │ │ ├── TestConnectionsPanel.spec.tsx │ │ │ │ │ │ │ ├── TestConnectionsPanel.tsx │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ ├── upload-modal │ │ │ │ │ │ │ ├── UploadModal.spec.tsx │ │ │ │ │ │ │ ├── UploadModal.tsx │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ └── upload-dialog │ │ │ │ │ │ │ │ ├── UploadDialog.spec.tsx │ │ │ │ │ │ │ │ └── UploadDialog.tsx │ │ │ │ │ │ └── validation-errors-list │ │ │ │ │ │ │ ├── ValidationErrorsList.spec.tsx │ │ │ │ │ │ │ └── ValidationErrorsList.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── pages │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Config.spec.tsx │ │ │ │ │ │ ├── Config.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.ts │ │ │ │ │ │ └── job │ │ │ │ │ │ ├── Job.spec.tsx │ │ │ │ │ │ ├── Job.tsx │ │ │ │ │ │ ├── JobWrapper.tsx │ │ │ │ │ │ ├── JobsWrapper.spec.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.ts │ │ │ │ └── statistics │ │ │ │ │ ├── StatisticsPage.spec.tsx │ │ │ │ │ ├── StatisticsPage.styles.ts │ │ │ │ │ ├── StatisticsPage.tsx │ │ │ │ │ ├── clients │ │ │ │ │ ├── Clients.spec.tsx │ │ │ │ │ ├── Clients.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── components │ │ │ │ │ ├── accordion │ │ │ │ │ │ ├── Accordion.spec.tsx │ │ │ │ │ │ ├── Accordion.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── panel │ │ │ │ │ │ ├── Panel.spec.tsx │ │ │ │ │ │ ├── Panel.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ └── vertical-divider │ │ │ │ │ │ ├── VerticalDivider.spec.tsx │ │ │ │ │ │ ├── VerticalDivider.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── data-streams │ │ │ │ │ ├── DataStreams.config.ts │ │ │ │ │ ├── DataStreams.spec.tsx │ │ │ │ │ ├── DataStreams.tsx │ │ │ │ │ ├── DataStreams.types.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── LastArrivalCell.tsx │ │ │ │ │ │ ├── StreamNameCell.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── empty │ │ │ │ │ ├── Empty.spec.tsx │ │ │ │ │ ├── Empty.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── processing-performance │ │ │ │ │ ├── ProcessingPerformance.spec.tsx │ │ │ │ │ ├── ProcessingPerformance.tsx │ │ │ │ │ └── index.ts │ │ │ │ │ ├── status │ │ │ │ │ ├── Status.spec.tsx │ │ │ │ │ ├── Status.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.ts │ │ │ │ │ ├── styles.ts │ │ │ │ │ └── target-connections │ │ │ │ │ ├── TargetConnections.spec.tsx │ │ │ │ │ ├── TargetConnections.tsx │ │ │ │ │ └── index.ts │ │ │ ├── redis-cluster │ │ │ │ ├── RedisClusterDatabases.stories.tsx │ │ │ │ ├── RedisClusterDatabases.tsx │ │ │ │ ├── RedisClusterDatabasesPage.spec.tsx │ │ │ │ ├── RedisClusterDatabasesPage.tsx │ │ │ │ ├── RedisClusterDatabasesResult.spec.tsx │ │ │ │ ├── RedisClusterDatabasesResult.stories.tsx │ │ │ │ ├── RedisClusterDatabasesResult.tsx │ │ │ │ ├── column-definitions │ │ │ │ │ ├── columns │ │ │ │ │ │ ├── capabilities.tsx │ │ │ │ │ │ ├── database.tsx │ │ │ │ │ │ ├── endpoint.tsx │ │ │ │ │ │ ├── options.tsx │ │ │ │ │ │ ├── result.tsx │ │ │ │ │ │ ├── selection.ts │ │ │ │ │ │ └── status.ts │ │ │ │ │ ├── components │ │ │ │ │ │ ├── DatabaseCell.tsx │ │ │ │ │ │ ├── EndpointCell.tsx │ │ │ │ │ │ ├── ResultCell.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── components │ │ │ │ │ ├── CancelButton │ │ │ │ │ │ ├── CancelButton.style.ts │ │ │ │ │ │ ├── CancelButton.tsx │ │ │ │ │ │ └── CancelButton.types.ts │ │ │ │ │ ├── SummaryText │ │ │ │ │ │ ├── SummaryText.tsx │ │ │ │ │ │ └── SummaryText.types.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── constants │ │ │ │ │ └── constants.ts │ │ │ │ ├── index.ts │ │ │ │ ├── styles.module.scss │ │ │ │ └── useClusterDatabasesConfig.tsx │ │ │ ├── redis-stack │ │ │ │ └── components │ │ │ │ │ ├── edit-connection │ │ │ │ │ ├── EditConnection.spec.tsx │ │ │ │ │ ├── EditConnection.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── styles.module.scss │ │ │ │ │ └── styles.scss │ │ │ │ │ └── protected-route │ │ │ │ │ ├── ProtectedRoute.spec.tsx │ │ │ │ │ ├── ProtectedRoute.tsx │ │ │ │ │ └── index.ts │ │ │ ├── settings │ │ │ │ ├── SettingsPage.spec.tsx │ │ │ │ ├── SettingsPage.stories.tsx │ │ │ │ ├── SettingsPage.tsx │ │ │ │ ├── components │ │ │ │ │ ├── advanced-settings │ │ │ │ │ │ ├── AdvancedSettings.spec.tsx │ │ │ │ │ │ ├── AdvancedSettings.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── cloud-settings │ │ │ │ │ │ ├── CloudSettings.spec.tsx │ │ │ │ │ │ ├── CloudSettings.tsx │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ └── user-api-keys-table │ │ │ │ │ │ │ │ ├── UserApiKeysTable.spec.tsx │ │ │ │ │ │ │ │ ├── UserApiKeysTable.tsx │ │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── general-settings │ │ │ │ │ │ ├── datetime-formatter │ │ │ │ │ │ │ ├── DateTimeFormatter.spec.tsx │ │ │ │ │ │ │ ├── DateTimeFormatter.stories.tsx │ │ │ │ │ │ │ ├── DateTimeFormatter.tsx │ │ │ │ │ │ │ └── components │ │ │ │ │ │ │ │ ├── datetime-form │ │ │ │ │ │ │ │ ├── DatetimeForm.spec.tsx │ │ │ │ │ │ │ │ └── DatetimeForm.tsx │ │ │ │ │ │ │ │ └── timezone-form │ │ │ │ │ │ │ │ ├── TimezoneForm.spec.tsx │ │ │ │ │ │ │ │ └── TimezoneForm.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── theme-settings │ │ │ │ │ │ ├── ThemeSettings.spec.tsx │ │ │ │ │ │ ├── ThemeSettings.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── workbench-settings │ │ │ │ │ │ ├── WorkbenchSettings.spec.tsx │ │ │ │ │ │ ├── WorkbenchSettings.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── slow-log │ │ │ │ ├── SlowLogPage.spec.tsx │ │ │ │ ├── SlowLogPage.styles.ts │ │ │ │ ├── SlowLogPage.tsx │ │ │ │ ├── components │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── Actions.spec.tsx │ │ │ │ │ │ ├── Actions.styles.ts │ │ │ │ │ │ ├── Actions.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── ClearSlowLogModal │ │ │ │ │ │ ├── ClearSlowLogModal.spec.tsx │ │ │ │ │ │ ├── ClearSlowLogModal.styles.ts │ │ │ │ │ │ └── ClearSlowLogModal.tsx │ │ │ │ │ ├── EmptySlowLog │ │ │ │ │ │ ├── EmptySlowLog.spec.tsx │ │ │ │ │ │ ├── EmptySlowLog.styles.ts │ │ │ │ │ │ ├── EmptySlowLog.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── SlowLogConfig │ │ │ │ │ │ ├── SlowLogConfig.spec.tsx │ │ │ │ │ │ ├── SlowLogConfig.styles.ts │ │ │ │ │ │ ├── SlowLogConfig.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── SlowLogTable │ │ │ │ │ │ ├── SlowLogTable.spec.tsx │ │ │ │ │ │ ├── SlowLogTable.styles.ts │ │ │ │ │ │ ├── SlowLogTable.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ │ ├── index.ts │ │ │ │ └── utils.ts │ │ │ ├── vector-search │ │ │ │ ├── components │ │ │ │ │ ├── QueryCard.spec.tsx │ │ │ │ │ ├── QueryCard.tsx │ │ │ │ │ ├── commands-view │ │ │ │ │ │ ├── CommandsView │ │ │ │ │ │ │ ├── CommandsView.spec.tsx │ │ │ │ │ │ │ ├── CommandsView.styles.ts │ │ │ │ │ │ │ ├── CommandsView.tsx │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ ├── CommandsViewWrapper.tsx │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── no-data-message │ │ │ │ │ │ ├── NoDataMessage.spec.tsx │ │ │ │ │ │ ├── NoDataMessage.styles.ts │ │ │ │ │ │ ├── NoDataMessage.tsx │ │ │ │ │ │ └── data.ts │ │ │ │ │ ├── onboarding │ │ │ │ │ │ ├── VectorSearchOnboarding.spec.tsx │ │ │ │ │ │ ├── VectorSearchOnboarding.styles.ts │ │ │ │ │ │ ├── VectorSearchOnboarding.tsx │ │ │ │ │ │ └── components │ │ │ │ │ │ │ ├── Actions.spec.tsx │ │ │ │ │ │ │ ├── Actions.tsx │ │ │ │ │ │ │ ├── Features.styles.ts │ │ │ │ │ │ │ ├── Features.tsx │ │ │ │ │ │ │ ├── Footer.styles.ts │ │ │ │ │ │ │ ├── Footer.tsx │ │ │ │ │ │ │ ├── Header.tsx │ │ │ │ │ │ │ └── Stepper.tsx │ │ │ │ │ ├── rqe-not-available │ │ │ │ │ │ ├── ReqNotAvailableCard.styles.ts │ │ │ │ │ │ ├── RqeNotAvailableCard.spec.tsx │ │ │ │ │ │ └── RqeNotAvailableCard.tsx │ │ │ │ │ └── vector-set-not-available │ │ │ │ │ │ ├── VectorSetNotAvailableBanner.tsx │ │ │ │ │ │ └── VectorSetNotAvailableBenner.test.tsx │ │ │ │ ├── context │ │ │ │ │ ├── VectorSearchOnboardingContext.spec.tsx │ │ │ │ │ └── VectorSearchOnboardingContext.tsx │ │ │ │ ├── create-index │ │ │ │ │ ├── VectorSearchCreateIndex.spec.tsx │ │ │ │ │ ├── VectorSearchCreateIndex.tsx │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── useCreateIndex.spec.ts │ │ │ │ │ │ ├── useCreateIndex.ts │ │ │ │ │ │ ├── useRedisInstanceCompatibility.spec.ts │ │ │ │ │ │ └── useRedisInstanceCompatibility.ts │ │ │ │ │ ├── steps │ │ │ │ │ │ ├── AddDataStep.spec.tsx │ │ │ │ │ │ ├── AddDataStep.tsx │ │ │ │ │ │ ├── CreateIndexStep.spec.tsx │ │ │ │ │ │ ├── CreateIndexStep.tsx │ │ │ │ │ │ ├── PreviewCommandDrawer.tsx │ │ │ │ │ │ ├── SelectDatabaseStep.tsx │ │ │ │ │ │ ├── config.tsx │ │ │ │ │ │ ├── data.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── hooks │ │ │ │ │ ├── useStartWizard.spec.ts │ │ │ │ │ ├── useStartWizard.ts │ │ │ │ │ ├── useTelemetryMountEvent.spec.ts │ │ │ │ │ └── useTelemetryMountEvent.ts │ │ │ │ ├── index.ts │ │ │ │ ├── manage-indexes │ │ │ │ │ ├── DeleteConfirmationButton.spec.tsx │ │ │ │ │ ├── DeleteConfirmationButton.tsx │ │ │ │ │ ├── IndexAttributesList.spec.tsx │ │ │ │ │ ├── IndexAttributesList.styles.ts │ │ │ │ │ ├── IndexAttributesList.tsx │ │ │ │ │ ├── IndexSection.spec.tsx │ │ │ │ │ ├── IndexSection.tsx │ │ │ │ │ ├── ManageIndexesList.spec.tsx │ │ │ │ │ ├── ManageIndexesList.styles.ts │ │ │ │ │ ├── ManageIndexesList.tsx │ │ │ │ │ ├── ManageIndexesScreen.spec.tsx │ │ │ │ │ ├── ManageIndexesScreen.tsx │ │ │ │ │ └── styles.ts │ │ │ │ ├── pages │ │ │ │ │ ├── VectorSearchCreateIndexPage.spec.tsx │ │ │ │ │ ├── VectorSearchCreateIndexPage.tsx │ │ │ │ │ ├── VectorSearchPage.spec.tsx │ │ │ │ │ ├── VectorSearchPage.tsx │ │ │ │ │ └── VectorSearchPageRouter.tsx │ │ │ │ ├── query │ │ │ │ │ ├── HeaderActions.spec.tsx │ │ │ │ │ ├── HeaderActions.tsx │ │ │ │ │ ├── StartWizardButton.spec.tsx │ │ │ │ │ ├── StartWizardButton.tsx │ │ │ │ │ ├── VectorSearchQuery.spec.tsx │ │ │ │ │ ├── VectorSearchQuery.styles.ts │ │ │ │ │ ├── VectorSearchQuery.tsx │ │ │ │ │ ├── useQuery.spec.ts │ │ │ │ │ ├── useQuery.ts │ │ │ │ │ └── utils.ts │ │ │ │ ├── saved-queries │ │ │ │ │ ├── IndexSelect.spec.tsx │ │ │ │ │ ├── IndexSelect.tsx │ │ │ │ │ ├── QueryCard.spec.tsx │ │ │ │ │ ├── QueryCard.tsx │ │ │ │ │ ├── SavedQueriesScreen.spec.tsx │ │ │ │ │ ├── SavedQueriesScreen.tsx │ │ │ │ │ ├── saved-queries.tsx │ │ │ │ │ ├── styles.ts │ │ │ │ │ └── types.ts │ │ │ │ ├── styles.ts │ │ │ │ ├── telemetry.spec.ts │ │ │ │ ├── telemetry.ts │ │ │ │ └── useRedisearchListData.ts │ │ │ └── workbench │ │ │ │ ├── WorkbenchPage.spec.tsx │ │ │ │ ├── WorkbenchPage.tsx │ │ │ │ ├── components │ │ │ │ ├── query │ │ │ │ │ ├── Query │ │ │ │ │ │ ├── Query.spec.tsx │ │ │ │ │ │ ├── Query.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── QueryWrapper.spec.tsx │ │ │ │ │ ├── QueryWrapper.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── wb-no-results-message │ │ │ │ │ ├── WbNoResultsMessage.spec.tsx │ │ │ │ │ ├── WbNoResultsMessage.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ ├── wb-results │ │ │ │ │ ├── WBResults │ │ │ │ │ │ ├── WBResults.spec.tsx │ │ │ │ │ │ ├── WBResults.tsx │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── WBResultsWrapper.spec.tsx │ │ │ │ │ ├── WBResultsWrapper.tsx │ │ │ │ │ └── index.ts │ │ │ │ └── wb-view │ │ │ │ │ ├── WBView │ │ │ │ │ ├── WBView.spec.tsx │ │ │ │ │ ├── WBView.tsx │ │ │ │ │ ├── index.ts │ │ │ │ │ └── styles.module.scss │ │ │ │ │ ├── WBViewWrapper.spec.tsx │ │ │ │ │ ├── WBViewWrapper.tsx │ │ │ │ │ └── index.ts │ │ │ │ ├── constants.ts │ │ │ │ ├── contexts │ │ │ │ └── enablementAreaContext.tsx │ │ │ │ ├── data │ │ │ │ └── supported_commands.json │ │ │ │ ├── index.ts │ │ │ │ ├── interfaces.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils │ │ │ │ ├── helpers.ts │ │ │ │ ├── monaco.ts │ │ │ │ ├── profile.ts │ │ │ │ ├── query.ts │ │ │ │ ├── query_old.ts │ │ │ │ ├── searchSuggestions.ts │ │ │ │ ├── suggestions.ts │ │ │ │ └── tests │ │ │ │ ├── monaco.spec.ts │ │ │ │ ├── profile.spec.ts │ │ │ │ ├── query.spec.ts │ │ │ │ └── test-cases │ │ │ │ ├── common.ts │ │ │ │ ├── ft-aggregate.ts │ │ │ │ ├── ft-search.ts │ │ │ │ └── index.ts │ │ ├── plugins │ │ │ ├── pluginEvents.spec.ts │ │ │ ├── pluginEvents.ts │ │ │ ├── pluginImport.spec.ts │ │ │ └── pluginImport.ts │ │ ├── resourses │ │ │ └── en-EN.ts │ │ ├── services │ │ │ ├── PluginAPI.ts │ │ │ ├── apiService.ts │ │ │ ├── capability.ts │ │ │ ├── commands-history │ │ │ │ ├── commandsHistoryService.spec.ts │ │ │ │ ├── commandsHistoryService.ts │ │ │ │ ├── database │ │ │ │ │ ├── CommandsHistoryIndexedDB.spec.ts │ │ │ │ │ ├── CommandsHistoryIndexedDB.ts │ │ │ │ │ ├── CommandsHistorySQLite.spec.ts │ │ │ │ │ ├── CommandsHistorySQLite.ts │ │ │ │ │ └── interface.ts │ │ │ │ └── utils │ │ │ │ │ ├── command-execution.mapper.spec.ts │ │ │ │ │ └── command-execution.mapper.ts │ │ │ ├── database │ │ │ │ └── instancesService.ts │ │ │ ├── databaseSettingsService.ts │ │ │ ├── executeQuery.spec.ts │ │ │ ├── executeQuery.ts │ │ │ ├── formatter │ │ │ │ ├── FormatSelector.spec.ts │ │ │ │ ├── FormatSelector.ts │ │ │ │ ├── HtmlToJsxString.ts │ │ │ │ ├── MarkdownToJsxString.ts │ │ │ │ └── formatter.interfaces.ts │ │ │ ├── hooks │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ ├── useCabability.ts │ │ │ │ ├── useIoConnection.ts │ │ │ │ ├── useLoadData.spec.ts │ │ │ │ ├── useLoadData.ts │ │ │ │ ├── useStateWithContext.ts │ │ │ │ ├── useSystemThemeListener.ts │ │ │ │ └── useWebworkers.ts │ │ │ ├── index.ts │ │ │ ├── keys.ts │ │ │ ├── migrateStorageData.ts │ │ │ ├── resourcesService.ts │ │ │ ├── routing.ts │ │ │ ├── storage.ts │ │ │ ├── tests │ │ │ │ ├── PluguinApi.spec.ts │ │ │ │ ├── apiService.spec.ts │ │ │ │ ├── formatter │ │ │ │ │ ├── HtmlToJsxString.spec.tsx │ │ │ │ │ └── MarkdownToJsxString.spec.ts │ │ │ │ ├── resourcesService.spec.ts │ │ │ │ └── routing.spec.tsx │ │ │ ├── theme.ts │ │ │ ├── utils │ │ │ │ └── index.ts │ │ │ ├── vectorSearchHistoryStorage.ts │ │ │ ├── workbenchStorage.ts │ │ │ └── wsService.ts │ │ ├── setup-env.ts │ │ ├── setup-tests.ts │ │ ├── slices │ │ │ ├── analytics │ │ │ │ ├── clusterDetails.ts │ │ │ │ ├── dbAnalysis.ts │ │ │ │ ├── settings.ts │ │ │ │ └── slowlog.ts │ │ │ ├── app │ │ │ │ ├── connectivity.ts │ │ │ │ ├── context.ts │ │ │ │ ├── csrf.ts │ │ │ │ ├── db-settings.ts │ │ │ │ ├── features.ts │ │ │ │ ├── info.ts │ │ │ │ ├── init.ts │ │ │ │ ├── notifications.ts │ │ │ │ ├── plugins.ts │ │ │ │ ├── redis-commands.ts │ │ │ │ ├── socket-connection.ts │ │ │ │ └── url-handling.ts │ │ │ ├── browser │ │ │ │ ├── bulkActions.ts │ │ │ │ ├── hash.ts │ │ │ │ ├── keys.ts │ │ │ │ ├── list.ts │ │ │ │ ├── redisearch.ts │ │ │ │ ├── rejson.ts │ │ │ │ ├── set.ts │ │ │ │ ├── stream.ts │ │ │ │ ├── string.ts │ │ │ │ └── zset.ts │ │ │ ├── cli │ │ │ │ ├── cli-output.ts │ │ │ │ ├── cli-settings.ts │ │ │ │ └── monitor.ts │ │ │ ├── content │ │ │ │ ├── create-redis-buttons.ts │ │ │ │ └── guide-links.ts │ │ │ ├── instances │ │ │ │ ├── caCerts.ts │ │ │ │ ├── clientCerts.ts │ │ │ │ ├── cloud.ts │ │ │ │ ├── cluster.ts │ │ │ │ ├── instances.ts │ │ │ │ ├── sentinel.ts │ │ │ │ └── tags.ts │ │ │ ├── interfaces │ │ │ │ ├── aiAssistant.ts │ │ │ │ ├── analytics.ts │ │ │ │ ├── api.ts │ │ │ │ ├── app.ts │ │ │ │ ├── bulkActions.ts │ │ │ │ ├── cli.ts │ │ │ │ ├── cloud.ts │ │ │ │ ├── content.ts │ │ │ │ ├── hash.ts │ │ │ │ ├── index.ts │ │ │ │ ├── insights.ts │ │ │ │ ├── instances.ts │ │ │ │ ├── keys.ts │ │ │ │ ├── list.ts │ │ │ │ ├── monitor.ts │ │ │ │ ├── pubsub.ts │ │ │ │ ├── rdi.ts │ │ │ │ ├── recommendations.ts │ │ │ │ ├── redisearch.ts │ │ │ │ ├── searchAndQuery.ts │ │ │ │ ├── stream.ts │ │ │ │ ├── string.ts │ │ │ │ ├── tag.ts │ │ │ │ ├── urlHandling.ts │ │ │ │ ├── user.ts │ │ │ │ ├── workbench.ts │ │ │ │ └── zset.ts │ │ │ ├── oauth │ │ │ │ └── cloud.ts │ │ │ ├── panels │ │ │ │ ├── aiAssistant.ts │ │ │ │ └── sidePanels.ts │ │ │ ├── pubsub │ │ │ │ └── pubsub.ts │ │ │ ├── rdi │ │ │ │ ├── dryRun.ts │ │ │ │ ├── instances.ts │ │ │ │ ├── pipeline.ts │ │ │ │ ├── statistics.ts │ │ │ │ └── testConnections.ts │ │ │ ├── recommendations │ │ │ │ └── recommendations.ts │ │ │ ├── search │ │ │ │ └── searchAndQuery.ts │ │ │ ├── store.ts │ │ │ ├── tests │ │ │ │ ├── analytics │ │ │ │ │ ├── clusterDetails.spec.ts │ │ │ │ │ ├── dbAnalysis.spec.ts │ │ │ │ │ ├── settings.spec.ts │ │ │ │ │ └── slowlog.spec.ts │ │ │ │ ├── app │ │ │ │ │ ├── connectivity.spec.ts │ │ │ │ │ ├── context.spec.ts │ │ │ │ │ ├── csrf.spec.ts │ │ │ │ │ ├── db-settings.spec.ts │ │ │ │ │ ├── features.spec.ts │ │ │ │ │ ├── info.spec.ts │ │ │ │ │ ├── init.spec.ts │ │ │ │ │ ├── notifications.spec.ts │ │ │ │ │ ├── plugins.spec.ts │ │ │ │ │ ├── redis-commands.spec.ts │ │ │ │ │ └── url-handling.spec.ts │ │ │ │ ├── browser │ │ │ │ │ ├── bulkActions.spec.ts │ │ │ │ │ ├── hash.spec.ts │ │ │ │ │ ├── keys.spec.ts │ │ │ │ │ ├── list.spec.ts │ │ │ │ │ ├── redisearch.spec.ts │ │ │ │ │ ├── rejson.setJsonDataAction.spec.ts │ │ │ │ │ ├── rejson.spec.ts │ │ │ │ │ ├── set.spec.ts │ │ │ │ │ ├── stream.spec.ts │ │ │ │ │ ├── string.spec.ts │ │ │ │ │ └── zset.spec.ts │ │ │ │ ├── cli │ │ │ │ │ ├── cli-output.spec.ts │ │ │ │ │ ├── cli-settings.spec.ts │ │ │ │ │ └── monitor.spec.ts │ │ │ │ ├── content │ │ │ │ │ ├── create-redis-buttons.spec.ts │ │ │ │ │ └── guide-links.spec.ts │ │ │ │ ├── instances │ │ │ │ │ ├── caCerts.spec.ts │ │ │ │ │ ├── clientCerts.spec.ts │ │ │ │ │ ├── cloud.spec.ts │ │ │ │ │ ├── cluster.spec.ts │ │ │ │ │ ├── instances.spec.ts │ │ │ │ │ └── sentinel.spec.ts │ │ │ │ ├── oauth │ │ │ │ │ └── cloud.spec.ts │ │ │ │ ├── panels │ │ │ │ │ ├── aiAssistant.spec.ts │ │ │ │ │ └── sidePanels.spec.ts │ │ │ │ ├── pubsub │ │ │ │ │ └── pubsub.spec.ts │ │ │ │ ├── rdi │ │ │ │ │ ├── dryRun.spec.tsx │ │ │ │ │ ├── instances.spec.ts │ │ │ │ │ ├── pipeline.spec.ts │ │ │ │ │ └── testConnections.spec.ts │ │ │ │ ├── recommendations │ │ │ │ │ └── recommendations.spec.ts │ │ │ │ ├── search │ │ │ │ │ └── searchAndQuery.spec.ts │ │ │ │ ├── user │ │ │ │ │ └── user-settings.spec.ts │ │ │ │ └── workbench │ │ │ │ │ ├── wb-custom-tutorials.spec.ts │ │ │ │ │ ├── wb-results.spec.ts │ │ │ │ │ └── wb-tutorials.spec.ts │ │ │ ├── user │ │ │ │ ├── cloud-user-profile.ts │ │ │ │ └── user-settings.ts │ │ │ └── workbench │ │ │ │ ├── wb-custom-tutorials.ts │ │ │ │ ├── wb-results.ts │ │ │ │ └── wb-tutorials.ts │ │ ├── styles │ │ │ ├── base │ │ │ │ ├── _base.scss │ │ │ │ ├── _flex_groups.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _functions.scss │ │ │ │ ├── _functions_electron.scss │ │ │ │ ├── _helpers.scss │ │ │ │ ├── _inputs.scss │ │ │ │ ├── _monaco.scss │ │ │ │ ├── _overrides.scss │ │ │ │ ├── _react_virtualized.scss │ │ │ │ ├── _selects.scss │ │ │ │ └── _typography.scss │ │ │ ├── components │ │ │ │ ├── _accordion.scss │ │ │ │ ├── _badge.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _callout.scss │ │ │ │ ├── _cli_output.scss │ │ │ │ ├── _components.scss │ │ │ │ ├── _database.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _homePage.scss │ │ │ │ ├── _itemList.scss │ │ │ │ ├── _json_view.scss │ │ │ │ ├── _modal.scss │ │ │ │ ├── _notificationBody.scss │ │ │ │ ├── _popover.scss │ │ │ │ ├── _radio.scss │ │ │ │ ├── _resizable_container.scss │ │ │ │ ├── _table.scss │ │ │ │ ├── _toasts.scss │ │ │ │ └── markdown │ │ │ │ │ ├── _blockquote.scss │ │ │ │ │ ├── _code.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _table.scss │ │ │ │ │ ├── _typography.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── index.scss │ │ │ ├── elastic.css │ │ │ ├── globalStyles.ts │ │ │ ├── main.scss │ │ │ ├── main_plugin.scss │ │ │ ├── mixins │ │ │ │ ├── _eui.scss │ │ │ │ ├── _global.scss │ │ │ │ ├── index.ts │ │ │ │ └── styledComponents.ts │ │ │ └── themes │ │ │ │ ├── dark_theme │ │ │ │ ├── _theme_color.scss │ │ │ │ └── darkTheme.scss │ │ │ │ └── light_theme │ │ │ │ ├── _theme_color.scss │ │ │ │ └── lightTheme.scss │ │ ├── telemetry │ │ │ ├── analytics.d.ts │ │ │ ├── checkAnalytics.ts │ │ │ ├── events.ts │ │ │ ├── index.ts │ │ │ ├── interfaces.ts │ │ │ ├── pageViews.ts │ │ │ ├── telemetryUtils.ts │ │ │ ├── tests │ │ │ │ ├── telemetryUtils.spec.ts │ │ │ │ └── usePageViewTelemetry.spec.ts │ │ │ └── usePageViewTelemetry.ts │ │ ├── templates │ │ │ ├── autodiscovery-page-template │ │ │ │ ├── AutoDiscoveryPageTemplate.spec.tsx │ │ │ │ ├── AutodiscoveryPageTemplate.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── explore-panel │ │ │ │ ├── ExplorePanelTemplate.spec.tsx │ │ │ │ ├── ExplorePanelTemplate.tsx │ │ │ │ ├── index.ts │ │ │ │ └── styles.module.scss │ │ │ ├── home-page-template │ │ │ │ ├── HomePageTemplate.spec.tsx │ │ │ │ ├── HomePageTemplate.styles.ts │ │ │ │ ├── HomePageTemplate.tsx │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── instance-page-template │ │ │ │ ├── InstancePageTemplate.spec.tsx │ │ │ │ ├── InstancePageTemplate.tsx │ │ │ │ └── index.ts │ │ │ └── rdi-instance-page-template │ │ │ │ ├── RdiInstancePageTemplate.spec.tsx │ │ │ │ ├── RdiInstancePageTemplate.tsx │ │ │ │ ├── index.ts │ │ │ │ ├── styles.module.scss │ │ │ │ └── styles.ts │ │ ├── types │ │ │ └── index.d.ts │ │ └── utils │ │ │ ├── api │ │ │ ├── chatbots.ts │ │ │ └── index.ts │ │ │ ├── apiResponse.ts │ │ │ ├── bigString.ts │ │ │ ├── calculateTextareaLines.ts │ │ │ ├── capability.ts │ │ │ ├── cliHelper.tsx │ │ │ ├── cliOutputActions.ts │ │ │ ├── colors.ts │ │ │ ├── commands.ts │ │ │ ├── common.ts │ │ │ ├── comparisons │ │ │ ├── bigKeys.ts │ │ │ ├── compareConsents.ts │ │ │ ├── compareVersions.ts │ │ │ ├── diff.ts │ │ │ └── index.ts │ │ │ ├── content.ts │ │ │ ├── decompressors │ │ │ ├── decompressors.ts │ │ │ └── index.ts │ │ │ ├── dom │ │ │ ├── downloadFile.ts │ │ │ ├── handleBrowsers.ts │ │ │ ├── handlePlatforms.ts │ │ │ ├── index.ts │ │ │ ├── pagePlaceholder.ts │ │ │ ├── scrollIntoView.ts │ │ │ ├── setPageTitle.ts │ │ │ └── triggerDownloadFromUrl.ts │ │ │ ├── errors.tsx │ │ │ ├── events │ │ │ ├── handleDownloadButton.ts │ │ │ ├── handlePasteHostName.ts │ │ │ ├── index.ts │ │ │ └── selectOnFocus.ts │ │ │ ├── features.ts │ │ │ ├── formatters │ │ │ ├── bufferFormatters.ts │ │ │ ├── index.ts │ │ │ ├── java-date.ts │ │ │ ├── json.ts │ │ │ ├── markdown │ │ │ │ ├── index.ts │ │ │ │ ├── rehypeLinks.ts │ │ │ │ ├── remarkCode.ts │ │ │ │ ├── remarkImage.ts │ │ │ │ ├── remarkLink.ts │ │ │ │ ├── remarkRedisUpload.ts │ │ │ │ └── remarkSanitize.ts │ │ │ ├── utils.ts │ │ │ └── valueFormatters.tsx │ │ │ ├── getLetterByIndex.ts │ │ │ ├── groupTypes.ts │ │ │ ├── index.ts │ │ │ ├── index │ │ │ ├── generateFtCreateCommand.spec.ts │ │ │ └── generateFtCreateCommand.ts │ │ │ ├── instance │ │ │ ├── getUrlInstance.ts │ │ │ ├── index.ts │ │ │ ├── instanceModules.spec.ts │ │ │ ├── instanceModules.ts │ │ │ ├── instanceNavigation.ts │ │ │ └── instanceOptions.ts │ │ │ ├── links.ts │ │ │ ├── longNames.tsx │ │ │ ├── modules.ts │ │ │ ├── monaco │ │ │ ├── completionProvider.ts │ │ │ ├── index.ts │ │ │ ├── monacoActions.ts │ │ │ ├── monacoDecorations.ts │ │ │ ├── monacoInterfaces.ts │ │ │ ├── monacoRedisCompletionProvider.ts │ │ │ ├── monacoRedisMonarchTokensProvider.ts │ │ │ ├── monacoRedisSignatureHelpProvider.ts │ │ │ ├── monacoUtils.ts │ │ │ ├── monarchTokens │ │ │ │ ├── cypherTokens.ts │ │ │ │ ├── jmespathTokens.ts │ │ │ │ ├── redisearchTokensSubRedis.ts │ │ │ │ ├── redisearchTokensTemplates.ts │ │ │ │ └── sqliteFunctionsTokens.ts │ │ │ ├── redisearch │ │ │ │ └── utils.ts │ │ │ └── regex.ts │ │ │ ├── monitorUtils.ts │ │ │ ├── numbers.ts │ │ │ ├── oauth │ │ │ └── cloudSsoUtm.tsx │ │ │ ├── onboarding.tsx │ │ │ ├── parseRedisUrl.ts │ │ │ ├── parseResponse.ts │ │ │ ├── pathUtil.ts │ │ │ ├── plugins.ts │ │ │ ├── polyfills.ts │ │ │ ├── pubSubUtils.ts │ │ │ ├── rdi │ │ │ ├── getUrlRdiInstance.ts │ │ │ ├── index.ts │ │ │ └── pipeline.ts │ │ │ ├── recommendation │ │ │ ├── helper.ts │ │ │ └── index.ts │ │ │ ├── redisearch.ts │ │ │ ├── redistack.ts │ │ │ ├── rejson.spec.ts │ │ │ ├── rejson.ts │ │ │ ├── routerWithSubRoutes.tsx │ │ │ ├── routing.ts │ │ │ ├── statuses.ts │ │ │ ├── streamUtils.ts │ │ │ ├── telemetry.ts │ │ │ ├── test-store.ts │ │ │ ├── test-utils.tsx │ │ │ ├── tests │ │ │ ├── apiResponse.spec.ts │ │ │ ├── bigString.spec.ts │ │ │ ├── capability.spec.ts │ │ │ ├── cliHelper.spec.ts │ │ │ ├── cliOutputActions.spec.ts │ │ │ ├── colors.spec.ts │ │ │ ├── commands.spec.ts │ │ │ ├── common.spec.tsx │ │ │ ├── comparisons │ │ │ │ ├── bigKeys.spec.ts │ │ │ │ ├── compareConsents.spec.ts │ │ │ │ ├── compareVersions.spec.ts │ │ │ │ └── diff.spec.ts │ │ │ ├── decompressors │ │ │ │ ├── constants.ts │ │ │ │ ├── decompressors.spec.ts │ │ │ │ └── index.ts │ │ │ ├── dom │ │ │ │ ├── downloadFile.spec.ts │ │ │ │ ├── handlePlatform.spec.ts │ │ │ │ └── scrollIntoView.spec.ts │ │ │ ├── errors.spec.tsx │ │ │ ├── events │ │ │ │ └── handleDownloadButton.spec.ts │ │ │ ├── formatters │ │ │ │ ├── bufferFormatters.spec.ts │ │ │ │ ├── markdown │ │ │ │ │ ├── remarkImage.spec.ts │ │ │ │ │ ├── remarkLink.spec.ts │ │ │ │ │ ├── remarkRedisCode.spec.ts │ │ │ │ │ ├── remarkRedisUpload.spec.ts │ │ │ │ │ └── remarkSanitize.spec.ts │ │ │ │ └── valueFormatters.spec.ts │ │ │ ├── getLetterByIndex.spec.ts │ │ │ ├── groupTypes.spec.ts │ │ │ ├── highlighting.spec.ts │ │ │ ├── instance │ │ │ │ ├── instanceNavigation.spec.ts │ │ │ │ └── instanceOptions.spec.ts │ │ │ ├── links.spec.ts │ │ │ ├── longNames.spec.ts │ │ │ ├── modules.spec.ts │ │ │ ├── monaco │ │ │ │ ├── cyber │ │ │ │ │ ├── completionProvider.spec.ts │ │ │ │ │ └── monarchTokensProvider.spec.ts │ │ │ │ ├── monacoRedisCompletionProvider.spec.ts │ │ │ │ └── monacoUtils.spec.ts │ │ │ ├── monitorUtils.spec.ts │ │ │ ├── nodes.json │ │ │ ├── oauth │ │ │ │ └── cloudSsoUtm.spec.tsx │ │ │ ├── onboarding.spec.tsx │ │ │ ├── parseRedisUrl.spec.ts │ │ │ ├── parseResponse.spec.ts │ │ │ ├── pathUtil.spec.ts │ │ │ ├── plugins.spec.ts │ │ │ ├── rdi │ │ │ │ ├── getUrlRdiInstance.spec.ts │ │ │ │ └── pipeline.spec.ts │ │ │ ├── recommendation │ │ │ │ └── helper.spec.ts │ │ │ ├── redisearch.spec.ts │ │ │ ├── redistack.spec.ts │ │ │ ├── routerWithSubRoutes.spec.tsx │ │ │ ├── routing.spec.ts │ │ │ ├── streamUtils.spec.ts │ │ │ ├── telemetry.spec.ts │ │ │ ├── transformers │ │ │ │ ├── browser.spec.ts │ │ │ │ ├── chatbot.spec.ts │ │ │ │ ├── cliTextFormatter.spec.ts │ │ │ │ ├── extrapolation.spec.ts │ │ │ │ ├── formatBytes.spec.ts │ │ │ │ ├── formatDate.spec.ts │ │ │ │ ├── getTruncatedName.spec.ts │ │ │ │ ├── removeEmpty.spec.ts │ │ │ │ ├── replaceSpaces.spec.ts │ │ │ │ ├── transformQueryParams.spec.ts │ │ │ │ ├── transformRdiPipeline.spec.ts │ │ │ │ ├── truncateNumber.spec.ts │ │ │ │ └── truncateTTL.spec.ts │ │ │ ├── tree.spec.ts │ │ │ ├── validations.spec.ts │ │ │ ├── workbench.spec.ts │ │ │ └── сontent.spec.ts │ │ │ ├── transformers │ │ │ ├── browser.ts │ │ │ ├── chatbot.ts │ │ │ ├── cliTextFormatter.ts │ │ │ ├── extrapolation.ts │ │ │ ├── formatBytes.ts │ │ │ ├── formatDate.ts │ │ │ ├── getTruncatedName.ts │ │ │ ├── index.ts │ │ │ ├── parseRedisJsonPath.spec.ts │ │ │ ├── parseRedisJsonPath.ts │ │ │ ├── redisCommands.ts │ │ │ ├── removeEmpty.ts │ │ │ ├── replaceSpaces.ts │ │ │ ├── toRedisCodeBlock.ts │ │ │ ├── transformQueryParams.ts │ │ │ ├── transformRdiPipeline.ts │ │ │ ├── truncateNumber.ts │ │ │ └── truncateTTL.ts │ │ │ ├── tree.ts │ │ │ ├── types.ts │ │ │ ├── validations.ts │ │ │ └── workbench.ts │ ├── tsconfig.json │ ├── vite-env.d.ts │ └── vite.config.mjs └── yarn.lock ├── resources ├── app │ └── redisinsight.sh ├── entitlements.mac.plist ├── entitlements.mas.inherit.plist ├── entitlements.mas.loginhelper.plist ├── entitlements.mas.plist ├── icon-tray-colored.png ├── icon-tray-white.png ├── icon.ico ├── icon.png ├── icons │ ├── 1024x1024.png │ ├── 128x128.png │ ├── 16x16.png │ ├── 24x24.png │ ├── 256x256.png │ ├── 32x32.png │ ├── 48x48.png │ ├── 512x512.png │ ├── 64x64.png │ └── 96x96.png ├── logo.svg └── resources.d.ts ├── scripts ├── .eslintrc ├── DeleteDistWeb.js ├── DeleteSourceMaps.js ├── build-statics.cmd ├── build-statics.sh ├── check-port-in-use.js ├── deb-after-install.sh ├── deb-before-remove.sh ├── prebuild.js └── update-version.js ├── stories ├── Playground.mdx ├── Start.mdx └── playground │ ├── Colors.tsx │ ├── Gallery.tsx │ ├── Playground.stories.tsx │ ├── PlaygroundPage.tsx │ └── Theme.tsx ├── tests ├── e2e │ ├── .desktop.env │ ├── .dockerignore │ ├── .env │ ├── .eslintignore │ ├── .eslintrc │ ├── .gitignore │ ├── .testcafe-electron-rc.js │ ├── README.md │ ├── REDIS_ENVIRONMENTS.md │ ├── common-actions │ │ ├── browser-actions.ts │ │ ├── common-elements-actions.ts │ │ ├── databases-actions.ts │ │ ├── recommendations-actions.ts │ │ └── workbench-actions.ts │ ├── desktop.runner.ci.ts │ ├── desktop.runner.ts │ ├── desktop.runner.win.ts │ ├── docker.web.docker-compose.yml │ ├── e2e.Dockerfile │ ├── helpers │ │ ├── api │ │ │ ├── api-common.ts │ │ │ ├── api-database.ts │ │ │ ├── api-info.ts │ │ │ ├── api-keys.ts │ │ │ └── api-rdi.ts │ │ ├── async-helper.ts │ │ ├── common.ts │ │ ├── conf.ts │ │ ├── constants.ts │ │ ├── database-scripts.ts │ │ ├── database.ts │ │ ├── decompressors │ │ │ ├── base-decompressors-populator.ts │ │ │ ├── brotli-database-populator.ts │ │ │ ├── gzip-database-populator.ts │ │ │ ├── lz4-database-populator.ts │ │ │ └── php-gzcompress-database-populator.ts │ │ ├── helpers.ts │ │ ├── index.ts │ │ ├── insights.ts │ │ ├── keys.ts │ │ ├── notifications.ts │ │ ├── pub-sub.ts │ │ ├── scripts │ │ │ ├── browser-scripts.ts │ │ │ ├── close_chrome_tab.applescript │ │ │ ├── generate-big-data.ts │ │ │ └── get_chrome_tab_url.applescript │ │ ├── sso-authorization.ts │ │ ├── telemetry.ts │ │ └── utils.ts │ ├── local.web.docker-compose.yml │ ├── package.json │ ├── pageObjects │ │ ├── auto-discover-redis-enterprise-databases.ts │ │ ├── base-overview-page.ts │ │ ├── base-page.ts │ │ ├── browser-page.ts │ │ ├── cluster-details-page.ts │ │ ├── components │ │ │ ├── bottom-panel │ │ │ │ ├── cli.ts │ │ │ │ ├── command-helper.ts │ │ │ │ ├── index.ts │ │ │ │ ├── profiler.ts │ │ │ │ └── survey-link.ts │ │ │ ├── browser │ │ │ │ ├── bulk-actions.ts │ │ │ │ ├── index.ts │ │ │ │ └── tree-view.ts │ │ │ ├── chatbot │ │ │ │ ├── ai-chatbot-panel.ts │ │ │ │ ├── chatbot-base-tab.ts │ │ │ │ ├── database-chatbot-tab.ts │ │ │ │ └── general-chatbot-tab.ts │ │ │ ├── common │ │ │ │ ├── editorButton.ts │ │ │ │ ├── modal.ts │ │ │ │ └── toast.ts │ │ │ ├── explore-tab.ts │ │ │ ├── insights-panel.ts │ │ │ ├── monaco-editor.ts │ │ │ ├── navigation-panel.ts │ │ │ ├── navigation-tabs.ts │ │ │ ├── navigation │ │ │ │ ├── base-navigation-panel.ts │ │ │ │ ├── help-center.ts │ │ │ │ ├── navigation-header.ts │ │ │ │ ├── notification-panel.ts │ │ │ │ └── rdi-navigation-panel.ts │ │ │ ├── overview-panel.ts │ │ │ ├── rdi │ │ │ │ ├── pipeline-management-panel.ts │ │ │ │ ├── rdi-header.ts │ │ │ │ └── test-connection-panel.ts │ │ │ ├── recommendations-tab.ts │ │ │ ├── redis-cloud-sign-in-panel.ts │ │ │ ├── shortcuts-panel.ts │ │ │ └── top-panel │ │ │ │ ├── database-overview.ts │ │ │ │ └── index.ts │ │ ├── dialogs │ │ │ ├── add-rdi-instance-dialog.ts │ │ │ ├── add-redis-database-dialog.ts │ │ │ ├── authorization-dialog.ts │ │ │ ├── filters-dialog.ts │ │ │ ├── index.ts │ │ │ ├── onboarding-cards-dialog.ts │ │ │ └── user-agreement-dialog.ts │ │ ├── enhanced-selector.ts │ │ ├── index.ts │ │ ├── instance-page.ts │ │ ├── memory-efficiency-page.ts │ │ ├── my-redis-databases-page.ts │ │ ├── pub-sub-page.ts │ │ ├── rdi-instance-page.ts │ │ ├── rdi-instances-list-page.ts │ │ ├── rdi-status-page.ts │ │ ├── sentinel │ │ │ ├── adding-master-groups-result-page.ts │ │ │ └── discovered-sentinel-master-groups-page.ts │ │ ├── settings-page.ts │ │ ├── slow-log-page.ts │ │ ├── sso-authorization-page.ts │ │ └── workbench-page.ts │ ├── rte.critical-path.docker-compose.yml │ ├── rte.docker-compose.yml │ ├── rte.networks.docker-compose.yml │ ├── rte.regression.docker-compose.yml │ ├── rte.smoke.docker-compose.yml │ ├── rte │ │ ├── RedisInsight_Connections.json │ │ ├── openvpn │ │ │ ├── docker-compose.yml │ │ │ ├── openvpn-data │ │ │ │ └── conf │ │ │ │ │ ├── crl.pem │ │ │ │ │ ├── openvpn.conf │ │ │ │ │ ├── openvpn.conf.1636357834.bak │ │ │ │ │ ├── ovpn_env.sh │ │ │ │ │ └── pki │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── certs_by_serial │ │ │ │ │ ├── 139D258986D24CF7F2000F4365EA7CDE.pem │ │ │ │ │ └── 8055804ACAE0109030FB7947F31147A9.pem │ │ │ │ │ ├── crl.pem │ │ │ │ │ ├── dh.pem │ │ │ │ │ ├── index.txt │ │ │ │ │ ├── index.txt.attr │ │ │ │ │ ├── index.txt.attr.old │ │ │ │ │ ├── index.txt.old │ │ │ │ │ ├── issued │ │ │ │ │ ├── localhost.crt │ │ │ │ │ └── test.crt │ │ │ │ │ ├── openssl-easyrsa.cnf │ │ │ │ │ ├── private │ │ │ │ │ ├── ca.key │ │ │ │ │ ├── localhost.key │ │ │ │ │ └── test.key │ │ │ │ │ ├── reqs │ │ │ │ │ ├── localhost.req │ │ │ │ │ └── test.req │ │ │ │ │ ├── safessl-easyrsa.cnf │ │ │ │ │ ├── serial │ │ │ │ │ ├── serial.old │ │ │ │ │ └── ta.key │ │ │ └── test.ovpn │ │ ├── oss-cluster-7-rs │ │ │ ├── Dockerfile │ │ │ ├── cluster-rs-create.sh │ │ │ ├── creator.Dockerfile │ │ │ └── redis.conf │ │ ├── oss-cluster-7 │ │ │ ├── Dockerfile │ │ │ ├── cluster-create.sh │ │ │ ├── creator.Dockerfile │ │ │ └── redis.conf │ │ ├── oss-sentinel │ │ │ ├── Dockerfile │ │ │ ├── entrypoint.sh │ │ │ └── sentinel.conf │ │ ├── oss-standalone-big │ │ │ ├── Dockerfile │ │ │ └── entrypoint.sh │ │ ├── oss-standalone-tls │ │ │ ├── Dockerfile │ │ │ └── certs │ │ │ │ ├── redis.crt │ │ │ │ ├── redis.key │ │ │ │ ├── redisCA.crt │ │ │ │ ├── user.crt │ │ │ │ └── user.key │ │ ├── redis-enterprise │ │ │ ├── Dockerfile │ │ │ ├── db.json │ │ │ └── entrypoint.sh │ │ └── ssh │ │ │ └── keys │ │ │ ├── pub │ │ │ ├── test.pub │ │ │ └── testp.pub │ │ │ ├── test │ │ │ └── testp │ ├── static-server.Dockerfile │ ├── static.ts │ ├── test-data │ │ ├── big-json │ │ │ ├── big-json.json │ │ │ └── json-BigInt.json │ │ ├── bulk-upload │ │ │ ├── bigKeysData.rtf │ │ │ └── bulkUplAllKeyTypes.txt │ │ ├── certs │ │ │ ├── ca.crt │ │ │ ├── certsByPath │ │ │ │ ├── caPath.crt │ │ │ │ ├── caSameBody.crt │ │ │ │ ├── clientPath.crt │ │ │ │ ├── clientPath.key │ │ │ │ ├── clientSameBody.crt │ │ │ │ └── clientSameBody.key │ │ │ ├── client.crt │ │ │ ├── client.key │ │ │ └── sameNameCerts │ │ │ │ ├── caPath.crt │ │ │ │ ├── clientPath.crt │ │ │ │ └── clientPath.key │ │ ├── decompressors │ │ │ ├── awesome.proto │ │ │ ├── pickleFile1.pickle │ │ │ ├── test_annotated_obj.ser │ │ │ ├── test_serialised_obj.ser │ │ │ └── vector.json │ │ ├── features-configs │ │ │ ├── insights-analytics-filter-off.json │ │ │ ├── insights-build-type-filter.json │ │ │ ├── insights-default-remote.json │ │ │ ├── insights-docker-build.json │ │ │ ├── insights-electron-build.json │ │ │ ├── insights-flag-off.json │ │ │ ├── insights-invalid.json │ │ │ ├── insights-valid.json │ │ │ ├── sso-docker-build.json │ │ │ └── sso-electron-build.json │ │ ├── formatters-data.ts │ │ ├── formatters │ │ │ ├── ASCII.ts │ │ │ ├── Binary.ts │ │ │ ├── DataTime.ts │ │ │ ├── HEX.ts │ │ │ ├── JSON.ts │ │ │ ├── Java.ts │ │ │ ├── Msgpack.ts │ │ │ ├── PHP.ts │ │ │ ├── Pickle.ts │ │ │ ├── Protobuf.ts │ │ │ ├── Vector32Bit.ts │ │ │ ├── Vector64Bit.ts │ │ │ └── index.ts │ │ ├── import-databases │ │ │ ├── ardm-valid.ano │ │ │ ├── racompFullSSH.json │ │ │ ├── racompass-invalid.json │ │ │ ├── racompass-valid.json │ │ │ ├── rdm-certificates.json │ │ │ └── rdm-full.json │ │ ├── rdi │ │ │ ├── RDI_pipelineConfigurations.zip │ │ │ ├── RDI_pipelineJobValid.zip │ │ │ └── UnsuccessRDI_pipeline.zip │ │ ├── ssh │ │ │ ├── sshPrivateKey │ │ │ └── sshPrivateKeyPasscode │ │ ├── sshPrivateKeys.ts │ │ ├── triggers-and-functions │ │ │ ├── invoke_function.txt │ │ │ └── library.txt │ │ ├── upload-json │ │ │ └── sample.json │ │ └── upload-tutorials │ │ │ └── customTutorials │ │ │ ├── _images │ │ │ └── image.png │ │ │ ├── _upload │ │ │ ├── bulkUplAllKeyTypes.txt │ │ │ └── bulkUplString.txt │ │ │ ├── folder-1 │ │ │ └── probably-1.md │ │ │ └── folder-2 │ │ │ └── vector-2.md │ ├── tests │ │ ├── electron │ │ │ ├── critical-path │ │ │ │ ├── a-first-start-form │ │ │ │ │ ├── autodiscovery.e2e.ts │ │ │ │ │ └── user-agreements-form.e2e.ts │ │ │ │ ├── analysis-tools │ │ │ │ │ └── recommendations.e2e.ts │ │ │ │ ├── browser │ │ │ │ │ ├── bulk-delete.e2e.ts │ │ │ │ │ └── bulk-upload.e2e.ts │ │ │ │ ├── database │ │ │ │ │ ├── add-ssh-db.e2e.ts │ │ │ │ │ └── clone-databases.e2e.ts │ │ │ │ ├── files-auto-update │ │ │ │ │ ├── enablement-area-autoupdate.e2e.ts │ │ │ │ │ └── promo-button-autoupdate.e2e.ts │ │ │ │ ├── monitor │ │ │ │ │ └── monitor.e2e.ts │ │ │ │ ├── pub-sub │ │ │ │ │ └── subscribe-unsubscribe.e2e.ts │ │ │ │ ├── slow-log │ │ │ │ │ └── slow-log.e2e.ts │ │ │ │ ├── tree-view │ │ │ │ │ └── tree-view-improvements.e2e.ts │ │ │ │ └── workbench │ │ │ │ │ ├── index-schema.e2e.ts │ │ │ │ │ └── json-workbench.e2e.ts │ │ │ ├── regression │ │ │ │ ├── browser │ │ │ │ │ └── keys-all-databases.e2e.ts │ │ │ │ ├── cli │ │ │ │ │ └── cli-re-cluster.e2e.ts │ │ │ │ ├── database │ │ │ │ │ ├── cloud-sso.e2e.ts │ │ │ │ │ └── edit-db.e2e.ts │ │ │ │ ├── insights │ │ │ │ │ └── feature-flag.e2e.ts │ │ │ │ ├── monitor │ │ │ │ │ └── monitor.e2e.ts │ │ │ │ ├── shortcuts │ │ │ │ │ └── shortcuts.e2e.ts │ │ │ │ └── workbench │ │ │ │ │ ├── redis-stack-commands.e2e.ts │ │ │ │ │ └── workbench-re-cluster.e2e.ts │ │ │ └── smoke │ │ │ │ ├── browser │ │ │ │ ├── add-keys.e2e.ts │ │ │ │ └── list-of-keys-verifications.e2e.ts │ │ │ │ ├── cli │ │ │ │ └── cli.e2e.ts │ │ │ │ └── database │ │ │ │ ├── autodiscover-db.e2e.ts │ │ │ │ └── edit-db.e2e.ts │ │ └── web │ │ │ ├── critical-path │ │ │ ├── a-first-start-form │ │ │ │ └── user-agreements-form.e2e.ts │ │ │ ├── browser │ │ │ │ ├── bulk-delete.e2e.ts │ │ │ │ ├── bulk-upload.e2e.ts │ │ │ │ ├── consumer-group.e2e.ts │ │ │ │ ├── context.e2e.ts │ │ │ │ ├── filtering-history.e2e.ts │ │ │ │ ├── filtering.e2e.ts │ │ │ │ ├── formatters.e2e.ts │ │ │ │ ├── hash-field.e2e.ts │ │ │ │ ├── json-key.e2e.ts │ │ │ │ ├── key-details.e2e.ts │ │ │ │ ├── keylist-actions.e2e.ts │ │ │ │ ├── large-data.e2e.ts │ │ │ │ ├── list-key.e2e.ts │ │ │ │ ├── scan-keys.e2e.ts │ │ │ │ ├── search-capabilities.e2e.ts │ │ │ │ ├── set-key.e2e.ts │ │ │ │ ├── stream-key-entry-deletion.e2e.ts │ │ │ │ ├── stream-key.e2e.ts │ │ │ │ ├── stream-pending-messages.e2e.ts │ │ │ │ └── zset-key.e2e.ts │ │ │ ├── cli │ │ │ │ ├── cli-command-helper.e2e.ts │ │ │ │ └── cli-critical.e2e.ts │ │ │ ├── cluster-details │ │ │ │ └── cluster-details.e2e.ts │ │ │ ├── database-overview │ │ │ │ ├── database-index.e2e.ts │ │ │ │ └── database-overview.e2e.ts │ │ │ ├── database │ │ │ │ ├── clone-databases.e2e.ts │ │ │ │ ├── connecting-to-the-db.e2e.ts │ │ │ │ ├── encryption.e2e.ts │ │ │ │ ├── export-databases.e2e.ts │ │ │ │ ├── import-databases.e2e.ts │ │ │ │ ├── logical-databases.e2e.ts │ │ │ │ └── modules.e2e.ts │ │ │ ├── memory-efficiency │ │ │ │ ├── memory-efficiency.e2e.ts │ │ │ │ ├── recommendations.e2e.ts │ │ │ │ └── top-keys-table.e2e.ts │ │ │ ├── monitor │ │ │ │ ├── monitor.e2e.ts │ │ │ │ └── save-commands.e2e.ts │ │ │ ├── notifications │ │ │ │ ├── notification-center.e2e.ts │ │ │ │ └── notifications.json │ │ │ ├── pub-sub │ │ │ │ └── subscribe-unsubscribe.e2e.ts │ │ │ ├── rdi │ │ │ │ ├── add-job.e2e.ts │ │ │ │ ├── add-rdi-instance.e2e.ts │ │ │ │ ├── configuration.e2e.ts │ │ │ │ ├── deploy.e2e.ts │ │ │ │ ├── dry-run-job.e2e.ts │ │ │ │ ├── navigation.e2e.ts │ │ │ │ ├── pipeline.e2e.ts │ │ │ │ ├── rdi-recommendation.e2e.ts │ │ │ │ └── status.e2e.ts │ │ │ ├── settings │ │ │ │ └── settings.e2e.ts │ │ │ ├── slow-log │ │ │ │ └── slow-log.e2e.ts │ │ │ ├── tree-view │ │ │ │ ├── delimiter.e2e.ts │ │ │ │ ├── tree-view-improvements.e2e.ts │ │ │ │ └── tree-view.e2e.ts │ │ │ ├── url-handling │ │ │ │ └── url-handling.e2e.ts │ │ │ └── workbench │ │ │ │ ├── autocomplete.e2e.ts │ │ │ │ ├── command-results.e2e.ts │ │ │ │ ├── context.e2e.ts │ │ │ │ ├── cypher.e2e.ts │ │ │ │ ├── default-scripts-area.e2e.ts │ │ │ │ ├── no-indexes-suggestions.e2e.ts │ │ │ │ ├── scripting-area.e2e.ts │ │ │ │ └── search-and-query-autocomplete.e2e.ts │ │ │ ├── regression │ │ │ ├── browser │ │ │ │ ├── add-keys.e2e.ts │ │ │ │ ├── consumer-group.e2e.ts │ │ │ │ ├── context.e2e.ts │ │ │ │ ├── filtering-iteratively.e2e.ts │ │ │ │ ├── filtering.e2e.ts │ │ │ │ ├── format-switcher.e2e.ts │ │ │ │ ├── formatter-warning.e2e.ts │ │ │ │ ├── formatters.e2e.ts │ │ │ │ ├── full-screen.e2e.ts │ │ │ │ ├── handle-dbsize-permissions.e2e.ts │ │ │ │ ├── hash-field.e2e.ts │ │ │ │ ├── key-messages.e2e.ts │ │ │ │ ├── keys-all-databases.e2e.ts │ │ │ │ ├── large-key-details-values.e2e.ts │ │ │ │ ├── last-refresh.e2e.ts │ │ │ │ ├── list-key.e2e.ts │ │ │ │ ├── onboarding.e2e.ts │ │ │ │ ├── resize-columns.e2e.ts │ │ │ │ ├── scan-keys.e2e.ts │ │ │ │ ├── set-key.e2e.ts │ │ │ │ ├── stream-key.e2e.ts │ │ │ │ ├── stream-pending-messages.e2e.ts │ │ │ │ ├── survey-link.e2e.ts │ │ │ │ ├── ttl-format.e2e.ts │ │ │ │ └── upload-json-key.e2e.ts │ │ │ ├── cli │ │ │ │ ├── cli-all-db-types.e2e.ts │ │ │ │ ├── cli-command-helper.e2e.ts │ │ │ │ ├── cli-logical-db.e2e.ts │ │ │ │ ├── cli-promote-workbench.e2e.ts │ │ │ │ └── cli.e2e.ts │ │ │ ├── database-overview │ │ │ │ ├── database-info.e2e.ts │ │ │ │ ├── database-overview-keys.e2e.ts │ │ │ │ ├── database-overview.e2e.ts │ │ │ │ ├── database-tls-certificates.e2e.ts │ │ │ │ └── overview.e2e.ts │ │ │ ├── database │ │ │ │ ├── add-sentinel-db.e2e.ts │ │ │ │ ├── add-standalone-db.e2e.ts │ │ │ │ ├── autodiscover-db.e2e.ts │ │ │ │ ├── cloud-sso.e2e.ts │ │ │ │ ├── connecting-to-the-db.e2e.ts │ │ │ │ ├── database-list-search.e2e.ts │ │ │ │ ├── database-sorting.e2e.ts │ │ │ │ ├── edit-db.e2e.ts │ │ │ │ ├── github.e2e.ts │ │ │ │ ├── logical-databases.e2e.ts │ │ │ │ ├── navigation.e2e.ts │ │ │ │ ├── notification.e2e.ts │ │ │ │ └── redisstack.e2e.ts │ │ │ ├── insights │ │ │ │ ├── feature-flag.e2e.ts │ │ │ │ ├── import-tutorials.e2e.ts │ │ │ │ ├── live-recommendations.e2e.ts │ │ │ │ └── open-insights-panel.e2e.ts │ │ │ ├── monitor │ │ │ │ ├── monitor.e2e.ts │ │ │ │ └── save-commands.e2e.ts │ │ │ ├── pub-sub │ │ │ │ ├── debug-mode.e2e.ts │ │ │ │ └── pub-sub-oss-cluster-7.e2e.ts │ │ │ ├── settings │ │ │ │ └── settings.e2e.ts │ │ │ ├── shortcuts │ │ │ │ └── shortcuts.e2e.ts │ │ │ ├── tree-view │ │ │ │ └── tree-view.e2e.ts │ │ │ ├── triggers-and-functions │ │ │ │ └── libraries.e2e.ts │ │ │ ├── url-handling │ │ │ │ └── url-handling.e2e.ts │ │ │ └── workbench │ │ │ │ ├── autocomplete.e2e.ts │ │ │ │ ├── autoexecute-button.e2e.ts │ │ │ │ ├── command-results.e2e.ts │ │ │ │ ├── context.e2e.ts │ │ │ │ ├── cypher.e2e.ts │ │ │ │ ├── default-scripts-area.e2e.ts │ │ │ │ ├── editor-cleanup.e2e.ts │ │ │ │ ├── empty-command-history.e2e.ts │ │ │ │ ├── group-mode.e2e.ts │ │ │ │ ├── history-of-results.e2e.ts │ │ │ │ ├── raw-mode.e2e.ts │ │ │ │ ├── redis-stack-commands.e2e.ts │ │ │ │ ├── redisearch-module-not-available.e2e.ts │ │ │ │ ├── scripting-area.e2e.ts │ │ │ │ ├── workbench-all-db-types.e2e.ts │ │ │ │ ├── workbench-non-auto-guides.e2e.ts │ │ │ │ └── workbench-pipeline.e2e.ts │ │ │ └── smoke │ │ │ ├── browser │ │ │ ├── add-keys.e2e.ts │ │ │ ├── edit-key-name.e2e.ts │ │ │ ├── edit-key-value.e2e.ts │ │ │ ├── filtering.e2e.ts │ │ │ ├── hash-field.e2e.ts │ │ │ ├── json-key.e2e.ts │ │ │ ├── list-key.e2e.ts │ │ │ ├── list-of-keys-verifications.e2e.ts │ │ │ ├── set-key.e2e.ts │ │ │ ├── set-ttl-for-key.e2e.ts │ │ │ ├── verify-key-details.e2e.ts │ │ │ ├── verify-keys-refresh.e2e.ts │ │ │ └── zset-key.e2e.ts │ │ │ ├── cli │ │ │ ├── cli-command-helper.e2e.ts │ │ │ └── cli.e2e.ts │ │ │ ├── database │ │ │ ├── delete-the-db.e2e.ts │ │ │ └── edit-db.e2e.ts │ │ │ └── workbench │ │ │ ├── json-workbench.e2e.ts │ │ │ └── scripting-area.e2e.ts │ ├── tsconfig.json │ ├── tsconfig.testcafe.json │ ├── upload-custom-plugins.sh │ ├── vpn.docker-compose.yml │ ├── wait-for-it.sh │ ├── wait-for-redis.sh │ ├── web.runner.ci.ts │ ├── web.runner.ts │ └── yarn.lock └── playwright │ ├── .gitignore │ ├── .nycrc.json │ ├── README.md │ ├── env │ ├── .desktop.env │ ├── .docker.env │ └── .local-web.env │ ├── factories │ └── redisearch-index.factory.ts │ ├── fixtures │ └── test.ts │ ├── helpers │ ├── api │ │ ├── api-databases.ts │ │ ├── api-indexes.ts │ │ ├── api-keys.ts │ │ └── http-client.ts │ ├── conf.ts │ ├── constants.ts │ └── utils.ts │ ├── package.json │ ├── pageObjects │ ├── auto-discover-redis-enterprise-databases.ts │ ├── base-overview-page.ts │ ├── base-page.ts │ ├── browser-page.ts │ ├── components │ │ ├── common │ │ │ └── toast.ts │ │ └── redis-cloud-sign-in-panel.ts │ ├── dialogs │ │ ├── add-rdi-instance-dialog.ts │ │ ├── add-redis-database-dialog.ts │ │ └── user-agreement-dialog.ts │ ├── index.ts │ ├── pages │ │ └── vector-search │ │ │ ├── create-index-page.ts │ │ │ └── vector-search-page.ts │ └── rdi-instances-list-page.ts │ ├── playwright.config.ts │ ├── selectors │ ├── index.ts │ ├── toast-selectors.ts │ └── user-agreement-selectors.ts │ ├── setup │ └── module-mocks.ts │ ├── tests │ ├── basic-navigation.spec.ts │ ├── browser │ │ ├── keys-delete.spec.ts │ │ ├── keys-edit.spec.ts │ │ ├── keys-edit │ │ │ ├── edit-hash-key.spec.ts │ │ │ ├── edit-json-key.spec.ts │ │ │ ├── edit-list-key.spec.ts │ │ │ ├── edit-set-key.spec.ts │ │ │ ├── edit-string-key.spec.ts │ │ │ └── edit-zset-key.spec.ts │ │ └── keys-read.spec.ts │ ├── keys.spec.ts │ └── vector-search │ │ ├── create-index.spec.ts │ │ ├── manage-indexes.spec.ts │ │ ├── onboarding.spec.ts │ │ ├── query.spec.ts │ │ ├── saved-queries.spec.ts │ │ └── version-compatibility.spec.ts │ ├── types │ ├── connections.ts │ ├── databases.ts │ ├── index.ts │ ├── indexes.ts │ ├── keys.ts │ └── rdi.ts │ └── yarn.lock ├── tsconfig.json └── yarn.lock /.ai/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/README.md -------------------------------------------------------------------------------- /.ai/commands/commit-message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/commands/commit-message.md -------------------------------------------------------------------------------- /.ai/commands/pr-plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/commands/pr-plan.md -------------------------------------------------------------------------------- /.ai/commands/pull-request-review.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/commands/pull-request-review.md -------------------------------------------------------------------------------- /.ai/rules/backend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/backend.md -------------------------------------------------------------------------------- /.ai/rules/branches.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/branches.md -------------------------------------------------------------------------------- /.ai/rules/code-quality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/code-quality.md -------------------------------------------------------------------------------- /.ai/rules/commits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/commits.md -------------------------------------------------------------------------------- /.ai/rules/frontend.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/frontend.md -------------------------------------------------------------------------------- /.ai/rules/git-safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/git-safety.md -------------------------------------------------------------------------------- /.ai/rules/pull-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/pull-requests.md -------------------------------------------------------------------------------- /.ai/rules/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.ai/rules/testing.md -------------------------------------------------------------------------------- /.augment: -------------------------------------------------------------------------------- 1 | .ai -------------------------------------------------------------------------------- /.cursor/commands: -------------------------------------------------------------------------------- 1 | ../.ai/commands -------------------------------------------------------------------------------- /.cursor/mcp.json: -------------------------------------------------------------------------------- 1 | ../mcp.json -------------------------------------------------------------------------------- /.cursor/rules/backend.mdc: -------------------------------------------------------------------------------- 1 | ../../.ai/rules/backend.md -------------------------------------------------------------------------------- /.cursor/rules/branches.mdc: -------------------------------------------------------------------------------- 1 | ../../.ai/rules/branches.md -------------------------------------------------------------------------------- /.cursor/rules/code-quality.mdc: -------------------------------------------------------------------------------- 1 | ../../.ai/rules/code-quality.md -------------------------------------------------------------------------------- /.cursor/rules/commits.mdc: -------------------------------------------------------------------------------- 1 | ../../.ai/rules/commits.md -------------------------------------------------------------------------------- /.cursor/rules/frontend.mdc: -------------------------------------------------------------------------------- 1 | ../../.ai/rules/frontend.md -------------------------------------------------------------------------------- /.cursor/rules/pull-requests.mdc: -------------------------------------------------------------------------------- 1 | ../../.ai/rules/pull-requests.md -------------------------------------------------------------------------------- /.cursor/rules/testing.mdc: -------------------------------------------------------------------------------- 1 | ../../.ai/rules/testing.md -------------------------------------------------------------------------------- /.cursorignore: -------------------------------------------------------------------------------- 1 | !/node_modules -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/actions/deploy-test-reports/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/actions/deploy-test-reports/action.yml -------------------------------------------------------------------------------- /.github/actions/get-current-date/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/actions/get-current-date/action.yml -------------------------------------------------------------------------------- /.github/actions/install-apple-certs/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/actions/install-apple-certs/action.yml -------------------------------------------------------------------------------- /.github/actions/install-deps/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/actions/install-deps/action.yml -------------------------------------------------------------------------------- /.github/actions/remove-artifacts/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/actions/remove-artifacts/action.yml -------------------------------------------------------------------------------- /.github/build/build.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/build/build.Dockerfile -------------------------------------------------------------------------------- /.github/build/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/build/build.sh -------------------------------------------------------------------------------- /.github/build/build_modules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/build/build_modules.sh -------------------------------------------------------------------------------- /.github/build/release-docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/build/release-docker.sh -------------------------------------------------------------------------------- /.github/build/sum_sha256.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/build/sum_sha256.sh -------------------------------------------------------------------------------- /.github/codeql/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/codeql/config.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/deps-audit-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/deps-audit-report.js -------------------------------------------------------------------------------- /.github/deps-licenses-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/deps-licenses-report.js -------------------------------------------------------------------------------- /.github/e2e-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/e2e-results.js -------------------------------------------------------------------------------- /.github/e2e/test.app-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/e2e/test.app-image.sh -------------------------------------------------------------------------------- /.github/e2e/test.app-image.sso.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/e2e/test.app-image.sso.sh -------------------------------------------------------------------------------- /.github/generate-build-summary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/generate-build-summary.js -------------------------------------------------------------------------------- /.github/itest-results.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/itest-results.js -------------------------------------------------------------------------------- /.github/lint-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/lint-report.js -------------------------------------------------------------------------------- /.github/redisinsight_browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/redisinsight_browser.png -------------------------------------------------------------------------------- /.github/redisstack/app-image.repack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/redisstack/app-image.repack.sh -------------------------------------------------------------------------------- /.github/redisstack/dmg.repack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/redisstack/dmg.repack.sh -------------------------------------------------------------------------------- /.github/screenshots/Redis-Insight-Analysis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/screenshots/Redis-Insight-Analysis.png -------------------------------------------------------------------------------- /.github/screenshots/Redis-Insight-Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/screenshots/Redis-Insight-Browser.png -------------------------------------------------------------------------------- /.github/screenshots/Redis-Insight-CLI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/screenshots/Redis-Insight-CLI.png -------------------------------------------------------------------------------- /.github/screenshots/Redis-Insight-SlowLog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/screenshots/Redis-Insight-SlowLog.png -------------------------------------------------------------------------------- /.github/screenshots/Redis-Insight-Workbench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/screenshots/Redis-Insight-Workbench.png -------------------------------------------------------------------------------- /.github/virustotal-report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/virustotal-report.js -------------------------------------------------------------------------------- /.github/workflows/approval-dedupe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/approval-dedupe.yml -------------------------------------------------------------------------------- /.github/workflows/aws-upload-dev.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/aws-upload-dev.yml -------------------------------------------------------------------------------- /.github/workflows/aws-upload-enterprise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/aws-upload-enterprise.yml -------------------------------------------------------------------------------- /.github/workflows/aws-upload-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/aws-upload-prod.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/clean-deployments.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/clean-deployments.yml -------------------------------------------------------------------------------- /.github/workflows/clean-s3-dev-builds.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/clean-s3-dev-builds.yml -------------------------------------------------------------------------------- /.github/workflows/code-coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/code-coverage.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/compress-images.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/compress-images.yml -------------------------------------------------------------------------------- /.github/workflows/enforce-branch-name-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/enforce-branch-name-rules.yml -------------------------------------------------------------------------------- /.github/workflows/licenses-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/licenses-check.yml -------------------------------------------------------------------------------- /.github/workflows/manual-build-enterprise.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/manual-build-enterprise.yml -------------------------------------------------------------------------------- /.github/workflows/manual-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/manual-build.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-build-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/pipeline-build-docker.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-build-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/pipeline-build-linux.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-build-macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/pipeline-build-macos.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline-build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/pipeline-build-windows.yml -------------------------------------------------------------------------------- /.github/workflows/publish-stores.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/publish-stores.yml -------------------------------------------------------------------------------- /.github/workflows/release-prod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/release-prod.yml -------------------------------------------------------------------------------- /.github/workflows/release-stage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/release-stage.yml -------------------------------------------------------------------------------- /.github/workflows/tests-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests-backend.yml -------------------------------------------------------------------------------- /.github/workflows/tests-e2e-appimage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests-e2e-appimage.yml -------------------------------------------------------------------------------- /.github/workflows/tests-e2e-docker-smoke.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests-e2e-docker-smoke.yml -------------------------------------------------------------------------------- /.github/workflows/tests-e2e-playwright.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests-e2e-playwright.yml -------------------------------------------------------------------------------- /.github/workflows/tests-e2e.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests-e2e.yml -------------------------------------------------------------------------------- /.github/workflows/tests-frontend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests-frontend.yml -------------------------------------------------------------------------------- /.github/workflows/tests-integration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests-integration.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/virustotal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/virustotal.yml -------------------------------------------------------------------------------- /.github/workflows/weekly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.github/workflows/weekly.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 22 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | tests/e2e 2 | **/*.scss 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.prettierrc -------------------------------------------------------------------------------- /.snyk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.snyk -------------------------------------------------------------------------------- /.storybook/RootStoryLayout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/RootStoryLayout.tsx -------------------------------------------------------------------------------- /.storybook/Story.context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/Story.context.ts -------------------------------------------------------------------------------- /.storybook/helpers/styles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/helpers/styles.ts -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/preview-head.html -------------------------------------------------------------------------------- /.storybook/preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/preview.tsx -------------------------------------------------------------------------------- /.storybook/redis-theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/redis-theme.ts -------------------------------------------------------------------------------- /.storybook/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/tsconfig.json -------------------------------------------------------------------------------- /.storybook/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.storybook/vite.config.ts -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.yarnrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/.yarnrc -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONDUCT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/CONDUCT -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/README.md -------------------------------------------------------------------------------- /api-docker-entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/api-docker-entry.sh -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /configs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/configs/.eslintrc -------------------------------------------------------------------------------- /configs/webpack.config.base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/configs/webpack.config.base.ts -------------------------------------------------------------------------------- /configs/webpack.config.eslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/configs/webpack.config.eslint.js -------------------------------------------------------------------------------- /configs/webpack.config.main.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/configs/webpack.config.main.prod.ts -------------------------------------------------------------------------------- /configs/webpack.config.main.stage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/configs/webpack.config.main.stage.ts -------------------------------------------------------------------------------- /configs/webpack.config.preload.dev.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/configs/webpack.config.preload.dev.ts -------------------------------------------------------------------------------- /configs/webpack.paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/configs/webpack.paths.ts -------------------------------------------------------------------------------- /dev.provisionprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/dev.provisionprofile -------------------------------------------------------------------------------- /docker-entry.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/docker-entry.sh -------------------------------------------------------------------------------- /docs/plugins/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/docs/plugins/development.md -------------------------------------------------------------------------------- /docs/plugins/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/docs/plugins/installation.md -------------------------------------------------------------------------------- /docs/plugins/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/docs/plugins/introduction.md -------------------------------------------------------------------------------- /electron-builder-mas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/electron-builder-mas.js -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/electron-builder.json -------------------------------------------------------------------------------- /embedded.provisionprofile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/embedded.provisionprofile -------------------------------------------------------------------------------- /env.mcp.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/env.mcp.example -------------------------------------------------------------------------------- /jest-resolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/jest-resolver.js -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/jest.config.cjs -------------------------------------------------------------------------------- /mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/mcp.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/package.json -------------------------------------------------------------------------------- /patches/@elastic+eui+34.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/patches/@elastic+eui+34.6.0.patch -------------------------------------------------------------------------------- /patches/monaco-yaml+5.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/patches/monaco-yaml+5.1.1.patch -------------------------------------------------------------------------------- /patches/react-vtree+3.0.0-beta.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/patches/react-vtree+3.0.0-beta.3.patch -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/pull_request_template.md -------------------------------------------------------------------------------- /redisinsight/__mocks__/brotli-dec-wasm.js: -------------------------------------------------------------------------------- 1 | export default () => Promise.resolve(); 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/fileMock.js: -------------------------------------------------------------------------------- 1 | export default 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/monacoMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/__mocks__/monacoMock.js -------------------------------------------------------------------------------- /redisinsight/__mocks__/monacoYamlMock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/__mocks__/monacoYamlMock.js -------------------------------------------------------------------------------- /redisinsight/__mocks__/rawproto.js: -------------------------------------------------------------------------------- 1 | export const visit = jest.fn(); 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/react-children-utilities.js: -------------------------------------------------------------------------------- 1 | export const onlyText = jest.fn(); 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/rehypeStringify.js: -------------------------------------------------------------------------------- 1 | export default jest.fn(); 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/remarkGfm.js: -------------------------------------------------------------------------------- 1 | export default jest.fn(); 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/remarkParse.js: -------------------------------------------------------------------------------- 1 | export default jest.fn(); 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/remarkRehype.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/scssRaw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/__mocks__/scssRaw.js -------------------------------------------------------------------------------- /redisinsight/__mocks__/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/__mocks__/svg.js -------------------------------------------------------------------------------- /redisinsight/__mocks__/unified.js: -------------------------------------------------------------------------------- 1 | export const unified = jest.fn(); 2 | -------------------------------------------------------------------------------- /redisinsight/__mocks__/unistUtilsVisit.js: -------------------------------------------------------------------------------- 1 | export const visit = jest.fn(); 2 | -------------------------------------------------------------------------------- /redisinsight/api/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/.dockerignore -------------------------------------------------------------------------------- /redisinsight/api/.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | test 4 | migration 5 | -------------------------------------------------------------------------------- /redisinsight/api/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/.gitignore -------------------------------------------------------------------------------- /redisinsight/api/.jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/.jest.setup.ts -------------------------------------------------------------------------------- /redisinsight/api/.prettierignore: -------------------------------------------------------------------------------- 1 | # Tests 2 | /test 3 | -------------------------------------------------------------------------------- /redisinsight/api/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/.prettierrc -------------------------------------------------------------------------------- /redisinsight/api/.yarnclean.prod: -------------------------------------------------------------------------------- 1 | *.md 2 | *.ts 3 | *.map 4 | -------------------------------------------------------------------------------- /redisinsight/api/config/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/default.ts -------------------------------------------------------------------------------- /redisinsight/api/config/development.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/development.ts -------------------------------------------------------------------------------- /redisinsight/api/config/features-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/features-config.json -------------------------------------------------------------------------------- /redisinsight/api/config/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/logger.ts -------------------------------------------------------------------------------- /redisinsight/api/config/ormconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/ormconfig.ts -------------------------------------------------------------------------------- /redisinsight/api/config/production.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/production.ts -------------------------------------------------------------------------------- /redisinsight/api/config/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/stack.ts -------------------------------------------------------------------------------- /redisinsight/api/config/staging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/staging.ts -------------------------------------------------------------------------------- /redisinsight/api/config/swagger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/swagger.ts -------------------------------------------------------------------------------- /redisinsight/api/config/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/config/test.ts -------------------------------------------------------------------------------- /redisinsight/api/data/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/data/common -------------------------------------------------------------------------------- /redisinsight/api/data/json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/data/json -------------------------------------------------------------------------------- /redisinsight/api/data/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/data/manifest.json -------------------------------------------------------------------------------- /redisinsight/api/data/search: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/data/search -------------------------------------------------------------------------------- /redisinsight/api/data/vector-collections/bikes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/data/vector-collections/bikes -------------------------------------------------------------------------------- /redisinsight/api/data/vector-collections/movies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/data/vector-collections/movies -------------------------------------------------------------------------------- /redisinsight/api/esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/esbuild.js -------------------------------------------------------------------------------- /redisinsight/api/migration/1650278664000-sni.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/migration/1650278664000-sni.ts -------------------------------------------------------------------------------- /redisinsight/api/migration/1716370509836-rdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/migration/1716370509836-rdi.ts -------------------------------------------------------------------------------- /redisinsight/api/migration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/migration/index.ts -------------------------------------------------------------------------------- /redisinsight/api/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/nest-cli.json -------------------------------------------------------------------------------- /redisinsight/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/package.json -------------------------------------------------------------------------------- /redisinsight/api/package.tmp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/package.tmp.json -------------------------------------------------------------------------------- /redisinsight/api/scripts/default-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/scripts/default-commands.ts -------------------------------------------------------------------------------- /redisinsight/api/scripts/default-content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/scripts/default-content.ts -------------------------------------------------------------------------------- /redisinsight/api/scripts/default-tutorials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/scripts/default-tutorials.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/ai.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/analytics.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/app-settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/app-settings.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/autodiscovery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/autodiscovery.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/bulk-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/bulk-actions.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/certificates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/certificates.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/cloud-auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/cloud-auth.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/cloud-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/cloud-common.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/cloud-job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/cloud-job.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/cloud-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/cloud-session.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/cloud-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/cloud-task.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/cloud-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/cloud-user.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/commands.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/common.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/constants.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/database-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/database-info.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/databases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/databases.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/encryption.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/encryption.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/errors.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/event-emitter.ts: -------------------------------------------------------------------------------- 1 | export const mockEventEmitter = { 2 | emit: jest.fn(), 3 | }; 4 | -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/feature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/feature.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/notification.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/notification.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/profiler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/profiler.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/rdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/rdi.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/redis-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/redis-client.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/redis-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/redis-info.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/redis-rs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/redis-rs.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/redis-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/redis-utils.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/redis.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/redisearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/redisearch.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/server.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/session.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/ssh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/ssh.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/tags.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/user.ts: -------------------------------------------------------------------------------- 1 | export const mockUserId = '1'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/utm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/utm.ts -------------------------------------------------------------------------------- /redisinsight/api/src/__mocks__/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/__mocks__/workbench.ts -------------------------------------------------------------------------------- /redisinsight/api/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/app.module.ts -------------------------------------------------------------------------------- /redisinsight/api/src/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/app.routes.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/constants/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/constants/api.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/constants/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/constants/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/constants/user.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/decorators/client-metadata/index.ts: -------------------------------------------------------------------------------- 1 | export * from './client-metadata.decorator'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/common/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/decorators/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/decorators/session/index.ts: -------------------------------------------------------------------------------- 1 | export * from './session-metadata.decorator'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/common/decorators/zset-score/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zset-score.decorator'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/common/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/exceptions/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/models/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/models/common.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/models/endpoint.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/models/endpoint.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/models/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/models/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/models/session.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/pipes/index.ts: -------------------------------------------------------------------------------- 1 | export * from './database-index.validation.pipe'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/common/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/utils/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/utils/merge.util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/utils/merge.util.ts -------------------------------------------------------------------------------- /redisinsight/api/src/common/validators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/common/validators/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/constants/app-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/constants/app-events.ts -------------------------------------------------------------------------------- /redisinsight/api/src/constants/exceptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/constants/exceptions.ts -------------------------------------------------------------------------------- /redisinsight/api/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/constants/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/constants/redis-connection.ts: -------------------------------------------------------------------------------- 1 | export const CONNECTION_NAME_GLOBAL_PREFIX = 'redisinsight'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/constants/redis-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/constants/redis-keys.ts -------------------------------------------------------------------------------- /redisinsight/api/src/constants/redis-modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/constants/redis-modules.ts -------------------------------------------------------------------------------- /redisinsight/api/src/constants/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/constants/regex.ts -------------------------------------------------------------------------------- /redisinsight/api/src/constants/sort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/constants/sort.ts -------------------------------------------------------------------------------- /redisinsight/api/src/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/core.module.ts -------------------------------------------------------------------------------- /redisinsight/api/src/dto/dto-transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/dto/dto-transformer.ts -------------------------------------------------------------------------------- /redisinsight/api/src/init-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/init-helper.ts -------------------------------------------------------------------------------- /redisinsight/api/src/local-database.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/local-database.module.ts -------------------------------------------------------------------------------- /redisinsight/api/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/main.ts -------------------------------------------------------------------------------- /redisinsight/api/src/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/models/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/models/redis-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/models/redis-client.ts -------------------------------------------------------------------------------- /redisinsight/api/src/models/redis-cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/models/redis-cluster.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/cli/cli.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/cli/cli.module.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/cli/dto/cli.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/cli/dto/cli.dto.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/cloud/common/dto/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cloud.capi.auth.dto'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/cloud/database/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cloud-data-converter'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/cloud/job/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cloud-job-info'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/cloud/subscription/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cloud-data-converter'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/cloud/task/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cloud-data-converter'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/database/exeptions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './database-already-exists.exception'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/encryption/models/index.ts: -------------------------------------------------------------------------------- 1 | export * from './encryption-result'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/feature/exceptions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './unable-to-fetch-remote-config.exception'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/feature/transformers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './feature-config-filter.transformer'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/pub-sub/dto/publish.response.ts: -------------------------------------------------------------------------------- 1 | export class PublishResponse { 2 | affected: number; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/rdi/decorators/index.ts: -------------------------------------------------------------------------------- 1 | export * from './request.rdi.client.metadata.decorator'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/rdi/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/rdi/dto/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/rdi/models/rdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/rdi/models/rdi.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/rdi/rdi.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/rdi/rdi.module.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/rdi/rdi.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/rdi/rdi.service.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/ssh/ssh.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/ssh/ssh.module.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/ssh/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './error-message'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/src/modules/tag/dto/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/tag/dto/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/tag/models/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/tag/models/tag.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/tag/tag.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/tag/tag.module.ts -------------------------------------------------------------------------------- /redisinsight/api/src/modules/tag/tag.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/modules/tag/tag.service.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/analytics-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/analytics-helper.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/base.helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/base.helper.spec.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/base.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/base.helper.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/big-string.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/big-string.spec.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/big-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/big-string.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/class-transformer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/class-transformer.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/cli-helper.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/cli-helper.spec.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/cli-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/cli-helper.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/config.spec.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/config.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/converter.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/converter.spec.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/converter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/converter.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/createHttpOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/createHttpOptions.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/file-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/file-helper.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/index.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/logsFormatter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/logsFormatter.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/path.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/path.spec.ts -------------------------------------------------------------------------------- /redisinsight/api/src/utils/path.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/src/utils/path.ts -------------------------------------------------------------------------------- /redisinsight/api/src/validators/index.ts: -------------------------------------------------------------------------------- 1 | export * from './serializedJson.validator'; 2 | -------------------------------------------------------------------------------- /redisinsight/api/stubs/cpu-features/index.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /redisinsight/api/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/README.md -------------------------------------------------------------------------------- /redisinsight/api/test/api/.mocharc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/.mocharc.yml -------------------------------------------------------------------------------- /redisinsight/api/test/api/api.deps.init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/api.deps.init.ts -------------------------------------------------------------------------------- /redisinsight/api/test/api/api.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/api.tsconfig.json -------------------------------------------------------------------------------- /redisinsight/api/test/api/cloud/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/cloud/constants.ts -------------------------------------------------------------------------------- /redisinsight/api/test/api/database/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/database/constants.ts -------------------------------------------------------------------------------- /redisinsight/api/test/api/deps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/deps.ts -------------------------------------------------------------------------------- /redisinsight/api/test/api/info/GET-info.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/info/GET-info.test.ts -------------------------------------------------------------------------------- /redisinsight/api/test/api/rdi/GET-rdi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/rdi/GET-rdi.test.ts -------------------------------------------------------------------------------- /redisinsight/api/test/api/rdi/POST-rdi.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/rdi/POST-rdi.test.ts -------------------------------------------------------------------------------- /redisinsight/api/test/api/reporters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/api/reporters.json -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/analytics.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/cloud.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/constants.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/data/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/data/redis.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/local-db.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/local-db.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/redis.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/remote-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/remote-server.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/server.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/test.ts -------------------------------------------------------------------------------- /redisinsight/api/test/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/helpers/utils.ts -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/cloud-st/.env: -------------------------------------------------------------------------------- 1 | TEST_CLOUD_RTE=true 2 | -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/local.build.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/local.build.env -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/local.build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/local.build.yml -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/oss-clu/.env: -------------------------------------------------------------------------------- 1 | TEST_REDIS_PORT=6379 2 | -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/oss-clu/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM bitnamilegacy/redis-cluster:6.2.6 2 | 3 | ENV ALLOW_EMPTY_PASSWORD yes 4 | -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/oss-sent/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/oss-sent/.env -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/oss-sent/sentinel.users.acl: -------------------------------------------------------------------------------- 1 | user default on +@all ~* >sentinelpass 2 | -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/oss-st-5-pass/.env: -------------------------------------------------------------------------------- 1 | TEST_REDIS_PASSWORD=testpass 2 | -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/oss-st-big/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/oss-st-big/.env -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/re-clu/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/re-clu/.env -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/re-clu/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/re-clu/db.json -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/re-crdt/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/re-crdt/.env -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/re-st/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/re-st/.env -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/re-st/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/re-st/db.json -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/run-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/run-all.sh -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/test.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/test.Dockerfile -------------------------------------------------------------------------------- /redisinsight/api/test/test-runs/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/test/test-runs/wait-for-it.sh -------------------------------------------------------------------------------- /redisinsight/api/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/tsconfig.build.json -------------------------------------------------------------------------------- /redisinsight/api/tsconfig.build.prod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/tsconfig.build.prod.json -------------------------------------------------------------------------------- /redisinsight/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/tsconfig.json -------------------------------------------------------------------------------- /redisinsight/api/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/api/yarn.lock -------------------------------------------------------------------------------- /redisinsight/desktop/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/app.ts -------------------------------------------------------------------------------- /redisinsight/desktop/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/config.json -------------------------------------------------------------------------------- /redisinsight/desktop/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/index.ts -------------------------------------------------------------------------------- /redisinsight/desktop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/package.json -------------------------------------------------------------------------------- /redisinsight/desktop/preload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/preload.ts -------------------------------------------------------------------------------- /redisinsight/desktop/splash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/splash.html -------------------------------------------------------------------------------- /redisinsight/desktop/src/config/configMain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/config/configMain.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/config/index.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/index.html -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/app/index.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/cloud/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/cloud/index.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/index.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/logging/logging.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/logging/logging.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/menu/menu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/menu/menu.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/server/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/server/server.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/store/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/store/store.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/tray/tray.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/tray/tray.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/updater/updater.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/updater/updater.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/lib/window/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/lib/window/index.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/utils/getAssetPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/utils/getAssetPath.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/utils/index.ts -------------------------------------------------------------------------------- /redisinsight/desktop/src/utils/window-size.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/src/utils/window-size.ts -------------------------------------------------------------------------------- /redisinsight/desktop/vite.main.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/vite.main.config.ts -------------------------------------------------------------------------------- /redisinsight/desktop/vite.preload.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/vite.preload.config.ts -------------------------------------------------------------------------------- /redisinsight/desktop/vite.renderer.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/desktop/vite.renderer.config.ts -------------------------------------------------------------------------------- /redisinsight/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/package.json -------------------------------------------------------------------------------- /redisinsight/patches/sqlite3+5.1.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/patches/sqlite3+5.1.7.patch -------------------------------------------------------------------------------- /redisinsight/ui/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/.env.test -------------------------------------------------------------------------------- /redisinsight/ui/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /redisinsight/ui/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redisinsight/ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/index.html -------------------------------------------------------------------------------- /redisinsight/ui/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/index.tsx -------------------------------------------------------------------------------- /redisinsight/ui/indexElectron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/indexElectron.tsx -------------------------------------------------------------------------------- /redisinsight/ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/package.json -------------------------------------------------------------------------------- /redisinsight/ui/public/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/public/favicon-16x16.png -------------------------------------------------------------------------------- /redisinsight/ui/public/favicon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/public/favicon-180x180.png -------------------------------------------------------------------------------- /redisinsight/ui/public/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/public/favicon-32x32.png -------------------------------------------------------------------------------- /redisinsight/ui/public/favicon-48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/public/favicon-48x48.ico -------------------------------------------------------------------------------- /redisinsight/ui/src/App.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/App.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/App.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/App.spec.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/App.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/Router.spec.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/Router.spec.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/Router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/Router.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/RouterElectron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/RouterElectron.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/assets.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/assets.d.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/Down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/Down.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/Search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/Search.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/active_auto.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/active_auto.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/ai/ai-chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/ai/ai-chat.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/ai/ai-robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/ai/ai-robot.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/alarm.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/bulb-active.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/bulb-active.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/bulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/bulb.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/code-changes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/code-changes.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/github.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/guides/json.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/guides/json.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/bike.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/bike.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/check.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/cheer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/cheer.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/extend.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/extend.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/filter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/filter.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/like.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/like.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/petard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/petard.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/play.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/send.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/send.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/shrink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/shrink.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/snooze.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/snooze.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/star.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/stars.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/user.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/user.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/icons/vector.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/icons/vector.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/logo.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/logo_small.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/logo_small.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/monitor/ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/monitor/ban.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/no-data.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/no-data.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/oauth/cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/oauth/cloud.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/oauth/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/oauth/github.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/oauth/google.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/oauth/google.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/oauth/hand.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/oauth/hand.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/oauth/rejson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/oauth/rejson.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/oauth/sso.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/oauth/sso.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/oauth/stars.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/oauth/stars.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/overview/key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/overview/key.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/play_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/play_icon.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/rdi/reset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/rdi/reset.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/rdi/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/rdi/save.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/robot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/robot.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/shield.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/shield.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/upgrade.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/upgrade.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/assets/img/warning.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/assets/img/warning.svg -------------------------------------------------------------------------------- /redisinsight/ui/src/components/auto-discover/EmptyState.types.ts: -------------------------------------------------------------------------------- 1 | export interface EmptyStateProps { 2 | message: string 3 | } 4 | 5 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/display/modal/index.ts: -------------------------------------------------------------------------------- 1 | export { Modal } from '@redis-ui/components' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/forms/buttons/ToggleButton.tsx: -------------------------------------------------------------------------------- 1 | export { ToggleButton } from '@redis-ui/components' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/forms/fieldset/index.ts: -------------------------------------------------------------------------------- 1 | export * from './FormFieldset' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/components/base/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/layout/card/index.tsx: -------------------------------------------------------------------------------- 1 | export { Card } from '@redis-ui/components' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/layout/flex.module.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/layout/profile-icon/ProfileIcon.tsx: -------------------------------------------------------------------------------- 1 | export { ProfileIcon } from '@redis-ui/components' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/layout/resize/index.ts: -------------------------------------------------------------------------------- 1 | export { ImperativePanelGroupHandle } from 'react-resizable-panels' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/layout/stepper/index.ts: -------------------------------------------------------------------------------- 1 | export { Stepper } from '@redis-ui/components' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/layout/table/index.ts: -------------------------------------------------------------------------------- 1 | export * from '@redis-ui/table' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/base/tooltip/index.tsx: -------------------------------------------------------------------------------- 1 | export * from './RITooltip' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/css.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/components/css.d.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/components/database-list-modules/styles.module.scss: -------------------------------------------------------------------------------- 1 | .anchorModuleTooltip { 2 | margin-right: 18px; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/database-overview/components/OverviewMetrics/index.ts: -------------------------------------------------------------------------------- 1 | export * from './OverviewMetrics' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/explore-guides/styles.module.scss: -------------------------------------------------------------------------------- 1 | .guides { 2 | max-width: 414px; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/components/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/components/main-router/interfaces.ts: -------------------------------------------------------------------------------- 1 | export interface RouteParams { 2 | instanceId: string 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/oauth/oauth-connect-free-db/styles.module.scss: -------------------------------------------------------------------------------- 1 | .btn { 2 | position: relative; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/onboarding-features/index.ts: -------------------------------------------------------------------------------- 1 | export * from './OnboardingFeatures' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/side-panels/panels/enablement-area/EnablementArea/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './getFileInfo' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/components/virtual-list/styles.module.scss: -------------------------------------------------------------------------------- 1 | .listContent { 2 | @include eui.scrollBar; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/config/default.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/config/default.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/config/domain.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/config/domain.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/config/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/api.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/apiErrors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/apiErrors.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/breadcrumbs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/breadcrumbs.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/browser.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/bulkActions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/bulkActions.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/cliOutput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/cliOutput.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/commands.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/datetime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/datetime.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/env.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/help-texts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/help-texts.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/keys.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/links.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/modules.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/monaco/cypher/index.ts: -------------------------------------------------------------------------------- 1 | export * from './monacoCypher' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/monaco/index.ts: -------------------------------------------------------------------------------- 1 | export * from './theme' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/monaco/jmespath/index.ts: -------------------------------------------------------------------------------- 1 | export * from './monacoJmespath' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/monaco/sqliteFunctions/index.ts: -------------------------------------------------------------------------------- 1 | export * from './monacoSQLiteFunctions' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/onboarding.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/onboarding.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/pages.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/pubSub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/pubSub.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/rdiList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/rdiList.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/redisearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/redisearch.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/regex.ts: -------------------------------------------------------------------------------- 1 | export const IS_ABSOLUTE_PATH = new RegExp('^(?:[a-z]+:)?//', 'i') 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/sorting.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/sorting.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/storage.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/streamViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/streamViews.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/string.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/table.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/table.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/telemetry.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/texts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/texts.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/themes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/themes.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/tutorials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/tutorials.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/constants/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/constants/workbench.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/electron/AppElectron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/electron/AppElectron.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/electron/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/electron/utils/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from './constructKeysToTree' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/content/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/content/content.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/data/analysis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/data/analysis.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/data/bigString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/data/bigString.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/data/dateNow.ts: -------------------------------------------------------------------------------- 1 | export const MOCK_TIMESTAMP = 1629128049027 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/data/instances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/data/instances.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/data/oauth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/data/oauth.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/data/rdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/data/rdi.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/handlers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/handlers/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/mocks/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/mocks/server.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/clients-list/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@elastic/eui/es/components/icon/*' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/packages/package.json -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/redisearch/src/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './constants' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/redisearch/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@elastic/eui/es/components/icon/*' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/redisgraph/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .parcel-cache -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/redisgraph/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@elastic/eui/es/components/icon/*' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/redistimeseries-app/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .parcel-cache/ -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/redistimeseries-app/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@elastic/eui/es/components/icon/*' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/ri-explain/README.md: -------------------------------------------------------------------------------- 1 | # RI-Explain plugin 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/ri-explain/src/global.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@elastic/eui/es/components/icon/*' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/packages/vite.config.mjs -------------------------------------------------------------------------------- /redisinsight/ui/src/packages/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/packages/yarn.lock -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/analytics/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/analytics/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/browser/components/add-key/AddKeyStream/styles.module.scss: -------------------------------------------------------------------------------- 1 | .container { 2 | 3 | } 4 | 5 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/browser/components/bulk-actions/BulkActionsTabs/styles.module.scss: -------------------------------------------------------------------------------- 1 | .tabs { 2 | padding: 2px 16px 0; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/browser/components/bulk-actions/constants/bulk-type-options.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/browser/components/load-sample-data/styles.module.scss: -------------------------------------------------------------------------------- 1 | .popover { 2 | min-width: 380px !important; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/browser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/browser/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/browser/modules/key-details/components/rejson-details/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/home/HomePage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/home/HomePage.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/home/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/home/interfaces/index.ts: -------------------------------------------------------------------------------- 1 | export * from './form' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/home/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/home/styles.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/home/utils/index.ts: -------------------------------------------------------------------------------- 1 | export * from './form' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/instance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/instance/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/pub-sub/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/pub-sub/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/rdi/constants/index.ts: -------------------------------------------------------------------------------- 1 | export * from './errors' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/rdi/home/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/rdi/home/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/rdi/pipeline-management/components/navigation/cards/hooks/index.ts: -------------------------------------------------------------------------------- 1 | export * from './useConfigurationState' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/rdi/statistics/components/vertical-divider/styles.module.scss: -------------------------------------------------------------------------------- 1 | .divider { 2 | margin: 0 12px; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/settings/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/settings/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/slow-log/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/slow-log/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/slow-log/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/slow-log/utils.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/workbench/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/workbench/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/pages/workbench/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/pages/workbench/types.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/plugins/pluginEvents.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/plugins/pluginEvents.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/plugins/pluginImport.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/plugins/pluginImport.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/resourses/en-EN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/resourses/en-EN.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/PluginAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/PluginAPI.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/apiService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/apiService.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/capability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/capability.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/executeQuery.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/executeQuery.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/hooks/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/hooks/hooks.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/hooks/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/keys.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redisinsight/ui/src/services/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/routing.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/storage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/storage.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/theme.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/services/utils/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redisinsight/ui/src/services/wsService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/services/wsService.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/setup-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/setup-env.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/setup-tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/setup-tests.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/app/context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/app/context.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/app/csrf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/app/csrf.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/app/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/app/features.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/app/info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/app/info.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/app/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/app/init.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/app/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/app/plugins.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/hash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/hash.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/keys.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/list.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/rejson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/rejson.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/set.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/set.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/stream.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/stream.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/string.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/browser/zset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/browser/zset.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/cli/cli-output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/cli/cli-output.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/cli/monitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/cli/monitor.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/instances/tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/instances/tags.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/interfaces/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/interfaces/api.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/interfaces/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/interfaces/app.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/interfaces/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/interfaces/cli.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/interfaces/rdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/interfaces/rdi.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/interfaces/tag.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/interfaces/tag.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/oauth/cloud.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/oauth/cloud.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/pubsub/pubsub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/pubsub/pubsub.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/rdi/dryRun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/rdi/dryRun.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/rdi/instances.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/rdi/instances.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/rdi/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/rdi/pipeline.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/rdi/statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/rdi/statistics.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/slices/store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/slices/store.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/base/_base.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/base/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/base/_fonts.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/base/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/base/_inputs.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/base/_monaco.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/base/_monaco.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/components/_badge.scss: -------------------------------------------------------------------------------- 1 | .euiBadge { 2 | border-radius: 4px !important; 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/elastic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/elastic.css -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/globalStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/globalStyles.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/main.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/main_plugin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/main_plugin.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/mixins/_eui.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/mixins/_eui.scss -------------------------------------------------------------------------------- /redisinsight/ui/src/styles/mixins/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/styles/mixins/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/telemetry/analytics.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/telemetry/analytics.d.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/telemetry/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/telemetry/events.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/telemetry/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/telemetry/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/telemetry/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/telemetry/interfaces.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/telemetry/pageViews.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/telemetry/pageViews.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/templates/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/templates/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/types/index.d.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/api/chatbots.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/api/chatbots.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/api/index.ts: -------------------------------------------------------------------------------- 1 | export * from './chatbots' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/apiResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/apiResponse.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/bigString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/bigString.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/capability.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/capability.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/cliHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/cliHelper.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/colors.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/commands.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/common.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/content.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/decompressors/index.ts: -------------------------------------------------------------------------------- 1 | export * from './decompressors' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/dom/handlePlatforms.ts: -------------------------------------------------------------------------------- 1 | export const isMacOs = () => navigator.platform.toUpperCase().startsWith('MAC') 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/dom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/dom/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/errors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/errors.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/events/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/features.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/features.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/formatters/json.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/formatters/json.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/groupTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/groupTypes.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/instance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/instance/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/links.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/longNames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/longNames.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/modules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/modules.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/monaco/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/monaco/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/monaco/regex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/monaco/regex.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/monitorUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/monitorUtils.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/numbers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/numbers.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/onboarding.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/onboarding.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/parseRedisUrl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/parseRedisUrl.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/parseResponse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/parseResponse.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/pathUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/pathUtil.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/plugins.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/plugins.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/polyfills.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/pubSubUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/pubSubUtils.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/rdi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/rdi/index.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/rdi/pipeline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/rdi/pipeline.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/recommendation/index.ts: -------------------------------------------------------------------------------- 1 | export * from './helper' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/redisearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/redisearch.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/redistack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/redistack.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/rejson.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/rejson.spec.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/rejson.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/rejson.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/routing.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/statuses.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/statuses.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/streamUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/streamUtils.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/telemetry.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/test-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/test-store.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/test-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/test-utils.tsx -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/tests/decompressors/index.ts: -------------------------------------------------------------------------------- 1 | export * from './constants' 2 | -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/tests/nodes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/tests/nodes.json -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/tests/tree.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/tests/tree.spec.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/tree.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/tree.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/types.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/validations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/validations.ts -------------------------------------------------------------------------------- /redisinsight/ui/src/utils/workbench.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/src/utils/workbench.ts -------------------------------------------------------------------------------- /redisinsight/ui/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /redisinsight/ui/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/vite-env.d.ts -------------------------------------------------------------------------------- /redisinsight/ui/vite.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/ui/vite.config.mjs -------------------------------------------------------------------------------- /redisinsight/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/redisinsight/yarn.lock -------------------------------------------------------------------------------- /resources/app/redisinsight.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | open /Applications/RedisInsight-preview 4 | -------------------------------------------------------------------------------- /resources/entitlements.mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/entitlements.mac.plist -------------------------------------------------------------------------------- /resources/entitlements.mas.inherit.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/entitlements.mas.inherit.plist -------------------------------------------------------------------------------- /resources/entitlements.mas.loginhelper.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/entitlements.mas.loginhelper.plist -------------------------------------------------------------------------------- /resources/entitlements.mas.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/entitlements.mas.plist -------------------------------------------------------------------------------- /resources/icon-tray-colored.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icon-tray-colored.png -------------------------------------------------------------------------------- /resources/icon-tray-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icon-tray-white.png -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/icons/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/1024x1024.png -------------------------------------------------------------------------------- /resources/icons/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/128x128.png -------------------------------------------------------------------------------- /resources/icons/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/16x16.png -------------------------------------------------------------------------------- /resources/icons/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/24x24.png -------------------------------------------------------------------------------- /resources/icons/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/256x256.png -------------------------------------------------------------------------------- /resources/icons/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/32x32.png -------------------------------------------------------------------------------- /resources/icons/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/48x48.png -------------------------------------------------------------------------------- /resources/icons/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/512x512.png -------------------------------------------------------------------------------- /resources/icons/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/64x64.png -------------------------------------------------------------------------------- /resources/icons/96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/icons/96x96.png -------------------------------------------------------------------------------- /resources/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/logo.svg -------------------------------------------------------------------------------- /resources/resources.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/resources/resources.d.ts -------------------------------------------------------------------------------- /scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/.eslintrc -------------------------------------------------------------------------------- /scripts/DeleteDistWeb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/DeleteDistWeb.js -------------------------------------------------------------------------------- /scripts/DeleteSourceMaps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/DeleteSourceMaps.js -------------------------------------------------------------------------------- /scripts/build-statics.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/build-statics.cmd -------------------------------------------------------------------------------- /scripts/build-statics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/build-statics.sh -------------------------------------------------------------------------------- /scripts/check-port-in-use.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/check-port-in-use.js -------------------------------------------------------------------------------- /scripts/deb-after-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/deb-after-install.sh -------------------------------------------------------------------------------- /scripts/deb-before-remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/deb-before-remove.sh -------------------------------------------------------------------------------- /scripts/prebuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/prebuild.js -------------------------------------------------------------------------------- /scripts/update-version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/scripts/update-version.js -------------------------------------------------------------------------------- /stories/Playground.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/stories/Playground.mdx -------------------------------------------------------------------------------- /stories/Start.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/stories/Start.mdx -------------------------------------------------------------------------------- /stories/playground/Colors.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/stories/playground/Colors.tsx -------------------------------------------------------------------------------- /stories/playground/Gallery.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/stories/playground/Gallery.tsx -------------------------------------------------------------------------------- /stories/playground/Playground.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/stories/playground/Playground.stories.tsx -------------------------------------------------------------------------------- /stories/playground/PlaygroundPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/stories/playground/PlaygroundPage.tsx -------------------------------------------------------------------------------- /stories/playground/Theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/stories/playground/Theme.tsx -------------------------------------------------------------------------------- /tests/e2e/.desktop.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/.desktop.env -------------------------------------------------------------------------------- /tests/e2e/.dockerignore: -------------------------------------------------------------------------------- 1 | report 2 | node_modules 3 | -------------------------------------------------------------------------------- /tests/e2e/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/.env -------------------------------------------------------------------------------- /tests/e2e/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/.eslintignore -------------------------------------------------------------------------------- /tests/e2e/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/.eslintrc -------------------------------------------------------------------------------- /tests/e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/.gitignore -------------------------------------------------------------------------------- /tests/e2e/.testcafe-electron-rc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/.testcafe-electron-rc.js -------------------------------------------------------------------------------- /tests/e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/README.md -------------------------------------------------------------------------------- /tests/e2e/REDIS_ENVIRONMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/REDIS_ENVIRONMENTS.md -------------------------------------------------------------------------------- /tests/e2e/common-actions/browser-actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/common-actions/browser-actions.ts -------------------------------------------------------------------------------- /tests/e2e/desktop.runner.ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/desktop.runner.ci.ts -------------------------------------------------------------------------------- /tests/e2e/desktop.runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/desktop.runner.ts -------------------------------------------------------------------------------- /tests/e2e/desktop.runner.win.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/desktop.runner.win.ts -------------------------------------------------------------------------------- /tests/e2e/docker.web.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/docker.web.docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/e2e.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/e2e.Dockerfile -------------------------------------------------------------------------------- /tests/e2e/helpers/api/api-common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/api/api-common.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/api/api-database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/api/api-database.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/api/api-info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/api/api-info.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/api/api-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/api/api-keys.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/api/api-rdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/api/api-rdi.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/async-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/async-helper.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/common.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/conf.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/constants.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/database-scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/database-scripts.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/database.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/helpers.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/index.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/insights.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/insights.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/keys.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/notifications.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/notifications.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/pub-sub.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/pub-sub.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/scripts/browser-scripts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/scripts/browser-scripts.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/sso-authorization.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/sso-authorization.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/telemetry.ts -------------------------------------------------------------------------------- /tests/e2e/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/helpers/utils.ts -------------------------------------------------------------------------------- /tests/e2e/local.web.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/local.web.docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/package.json -------------------------------------------------------------------------------- /tests/e2e/pageObjects/base-overview-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/base-overview-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/base-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/base-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/browser-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/browser-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/dialogs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/dialogs/index.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/enhanced-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/enhanced-selector.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/index.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/instance-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/instance-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/pub-sub-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/pub-sub-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/rdi-instance-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/rdi-instance-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/rdi-status-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/rdi-status-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/settings-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/settings-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/slow-log-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/slow-log-page.ts -------------------------------------------------------------------------------- /tests/e2e/pageObjects/workbench-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/pageObjects/workbench-page.ts -------------------------------------------------------------------------------- /tests/e2e/rte.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte.docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/rte.networks.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte.networks.docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/rte.regression.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte.regression.docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/rte.smoke.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte.smoke.docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/rte/RedisInsight_Connections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/RedisInsight_Connections.json -------------------------------------------------------------------------------- /tests/e2e/rte/openvpn/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/openvpn/docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/rte/openvpn/openvpn-data/conf/pki/index.txt.attr: -------------------------------------------------------------------------------- 1 | unique_subject = no 2 | -------------------------------------------------------------------------------- /tests/e2e/rte/openvpn/openvpn-data/conf/pki/index.txt.attr.old: -------------------------------------------------------------------------------- 1 | unique_subject = no 2 | -------------------------------------------------------------------------------- /tests/e2e/rte/openvpn/openvpn-data/conf/pki/serial: -------------------------------------------------------------------------------- 1 | 34AAB5929E45F5A821E772DBBB0F2569 2 | -------------------------------------------------------------------------------- /tests/e2e/rte/openvpn/openvpn-data/conf/pki/serial.old: -------------------------------------------------------------------------------- 1 | 34aab5929e45f5a821e772dbbb0f2568 2 | -------------------------------------------------------------------------------- /tests/e2e/rte/openvpn/test.ovpn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/openvpn/test.ovpn -------------------------------------------------------------------------------- /tests/e2e/rte/oss-cluster-7-rs/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-cluster-7-rs/Dockerfile -------------------------------------------------------------------------------- /tests/e2e/rte/oss-cluster-7-rs/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-cluster-7-rs/redis.conf -------------------------------------------------------------------------------- /tests/e2e/rte/oss-cluster-7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-cluster-7/Dockerfile -------------------------------------------------------------------------------- /tests/e2e/rte/oss-cluster-7/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-cluster-7/redis.conf -------------------------------------------------------------------------------- /tests/e2e/rte/oss-sentinel/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-sentinel/Dockerfile -------------------------------------------------------------------------------- /tests/e2e/rte/oss-sentinel/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-sentinel/entrypoint.sh -------------------------------------------------------------------------------- /tests/e2e/rte/oss-sentinel/sentinel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-sentinel/sentinel.conf -------------------------------------------------------------------------------- /tests/e2e/rte/oss-standalone-big/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-standalone-big/Dockerfile -------------------------------------------------------------------------------- /tests/e2e/rte/oss-standalone-tls/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/oss-standalone-tls/Dockerfile -------------------------------------------------------------------------------- /tests/e2e/rte/redis-enterprise/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/redis-enterprise/Dockerfile -------------------------------------------------------------------------------- /tests/e2e/rte/redis-enterprise/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/redis-enterprise/db.json -------------------------------------------------------------------------------- /tests/e2e/rte/redis-enterprise/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/redis-enterprise/entrypoint.sh -------------------------------------------------------------------------------- /tests/e2e/rte/ssh/keys/pub/test.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/ssh/keys/pub/test.pub -------------------------------------------------------------------------------- /tests/e2e/rte/ssh/keys/pub/testp.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/ssh/keys/pub/testp.pub -------------------------------------------------------------------------------- /tests/e2e/rte/ssh/keys/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/ssh/keys/test -------------------------------------------------------------------------------- /tests/e2e/rte/ssh/keys/testp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/rte/ssh/keys/testp -------------------------------------------------------------------------------- /tests/e2e/static-server.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/static-server.Dockerfile -------------------------------------------------------------------------------- /tests/e2e/static.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/static.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/big-json/big-json.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/big-json/big-json.json -------------------------------------------------------------------------------- /tests/e2e/test-data/certs/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/certs/ca.crt -------------------------------------------------------------------------------- /tests/e2e/test-data/certs/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/certs/client.crt -------------------------------------------------------------------------------- /tests/e2e/test-data/certs/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/certs/client.key -------------------------------------------------------------------------------- /tests/e2e/test-data/decompressors/pickleFile1.pickle: -------------------------------------------------------------------------------- 1 | (lp0 2 | S'Привет 漢字' 3 | p1 4 | aI23123 5 | aS'\xae\xae' 6 | p2 7 | a. -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters-data.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/ASCII.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/ASCII.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/Binary.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/Binary.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/DataTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/DataTime.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/HEX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/HEX.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/JSON.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/JSON.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/Java.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/Java.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/Msgpack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/Msgpack.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/PHP.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/PHP.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/Pickle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/Pickle.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/Protobuf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/Protobuf.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/formatters/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/formatters/index.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/ssh/sshPrivateKey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/ssh/sshPrivateKey -------------------------------------------------------------------------------- /tests/e2e/test-data/sshPrivateKeys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/sshPrivateKeys.ts -------------------------------------------------------------------------------- /tests/e2e/test-data/upload-json/sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/test-data/upload-json/sample.json -------------------------------------------------------------------------------- /tests/e2e/test-data/upload-tutorials/customTutorials/_upload/bulkUplString.txt: -------------------------------------------------------------------------------- 1 | SET stringkey1test 'value' -------------------------------------------------------------------------------- /tests/e2e/tests/web/regression/triggers-and-functions/libraries.e2e.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/e2e/tests/web/smoke/cli/cli.e2e.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/tests/web/smoke/cli/cli.e2e.ts -------------------------------------------------------------------------------- /tests/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/tsconfig.json -------------------------------------------------------------------------------- /tests/e2e/tsconfig.testcafe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/tsconfig.testcafe.json -------------------------------------------------------------------------------- /tests/e2e/upload-custom-plugins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/upload-custom-plugins.sh -------------------------------------------------------------------------------- /tests/e2e/vpn.docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/vpn.docker-compose.yml -------------------------------------------------------------------------------- /tests/e2e/wait-for-it.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/wait-for-it.sh -------------------------------------------------------------------------------- /tests/e2e/wait-for-redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/wait-for-redis.sh -------------------------------------------------------------------------------- /tests/e2e/web.runner.ci.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/web.runner.ci.ts -------------------------------------------------------------------------------- /tests/e2e/web.runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/web.runner.ts -------------------------------------------------------------------------------- /tests/e2e/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/e2e/yarn.lock -------------------------------------------------------------------------------- /tests/playwright/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/.gitignore -------------------------------------------------------------------------------- /tests/playwright/.nycrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/.nycrc.json -------------------------------------------------------------------------------- /tests/playwright/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/README.md -------------------------------------------------------------------------------- /tests/playwright/env/.desktop.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/env/.desktop.env -------------------------------------------------------------------------------- /tests/playwright/env/.docker.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/env/.docker.env -------------------------------------------------------------------------------- /tests/playwright/env/.local-web.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/env/.local-web.env -------------------------------------------------------------------------------- /tests/playwright/fixtures/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/fixtures/test.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/api/api-indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/helpers/api/api-indexes.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/api/api-keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/helpers/api/api-keys.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/api/http-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/helpers/api/http-client.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/conf.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/helpers/conf.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/helpers/constants.ts -------------------------------------------------------------------------------- /tests/playwright/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/helpers/utils.ts -------------------------------------------------------------------------------- /tests/playwright/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/package.json -------------------------------------------------------------------------------- /tests/playwright/pageObjects/base-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/pageObjects/base-page.ts -------------------------------------------------------------------------------- /tests/playwright/pageObjects/browser-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/pageObjects/browser-page.ts -------------------------------------------------------------------------------- /tests/playwright/pageObjects/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/pageObjects/index.ts -------------------------------------------------------------------------------- /tests/playwright/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/playwright.config.ts -------------------------------------------------------------------------------- /tests/playwright/selectors/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/selectors/index.ts -------------------------------------------------------------------------------- /tests/playwright/setup/module-mocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/setup/module-mocks.ts -------------------------------------------------------------------------------- /tests/playwright/tests/keys.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/tests/keys.spec.ts -------------------------------------------------------------------------------- /tests/playwright/types/connections.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/types/connections.ts -------------------------------------------------------------------------------- /tests/playwright/types/databases.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/types/databases.ts -------------------------------------------------------------------------------- /tests/playwright/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/types/index.ts -------------------------------------------------------------------------------- /tests/playwright/types/indexes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/types/indexes.ts -------------------------------------------------------------------------------- /tests/playwright/types/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/types/keys.ts -------------------------------------------------------------------------------- /tests/playwright/types/rdi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/types/rdi.ts -------------------------------------------------------------------------------- /tests/playwright/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tests/playwright/yarn.lock -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/redis/RedisInsight/HEAD/yarn.lock --------------------------------------------------------------------------------