├── .gitattributes ├── .github └── workflows │ ├── e2e-extension.yml │ ├── e2e-webpage.yml │ ├── lint-backend.yml │ ├── lint-extension.yml │ ├── lint-webpage.yml │ ├── prisma-migrate.yml │ ├── release-chrome-store.yml │ ├── release-firefox-store.yml │ ├── release-testflight.yml │ ├── release.yml │ ├── test-backend.yml │ ├── test-extension.yml │ └── test-webpage.yml ├── .gitignore ├── .nvmrc ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SETUP.md ├── apps ├── backend │ ├── .eslintrc.js │ ├── .gitignore │ ├── .nvmrc │ ├── .prettierrc │ ├── README.md │ ├── db.env │ ├── docker-compose.yml │ ├── jest.config.js │ ├── nest-cli.json │ ├── package-lock.json │ ├── package.json │ ├── prisma │ │ ├── migrations │ │ │ ├── 20240124201354_example_data_model │ │ │ │ └── migration.sql │ │ │ ├── 20240126135759_user_data_model │ │ │ │ └── migration.sql │ │ │ ├── 20240131130337_delete_example_data_model │ │ │ │ └── migration.sql │ │ │ ├── 20240201190815_navigation_history_data_model │ │ │ │ └── migration.sql │ │ │ ├── 20240201192119_navigation_date_col │ │ │ │ └── migration.sql │ │ │ ├── 20240214161329_user_agent_on_sessions │ │ │ │ └── migration.sql │ │ │ ├── 20240214163935_user_agent_on_navigation_entry │ │ │ │ └── migration.sql │ │ │ ├── 20240214164318_navigation_entry_content_to_text │ │ │ │ └── migration.sql │ │ │ ├── 20240311191858_user_preferences_data_model │ │ │ │ └── migration.sql │ │ │ ├── 20240316222004_devices_data_model │ │ │ │ └── migration.sql │ │ │ ├── 20240321165855_black_list_model │ │ │ │ └── migration.sql │ │ │ ├── 20240322222319_query_model │ │ │ │ └── migration.sql │ │ │ ├── 20240322231540_query_model_unique_field │ │ │ │ └── migration.sql │ │ │ ├── 20240325215227_navigation_entry_query_composite_unique_constraint │ │ │ │ └── migration.sql │ │ │ ├── 20240327141132_recovery_code_added_to_user_table │ │ │ │ └── migration.sql │ │ │ ├── 20240328000404_navigation_entry_query_delete_cascade │ │ │ │ └── migration.sql │ │ │ ├── 20240403204439_alter_user_add_verification_columns │ │ │ │ └── migration.sql │ │ │ ├── 20240412175707_remove_content_from_navigation_entry │ │ │ │ └── migration.sql │ │ │ ├── 20240430162749_user_agent_data │ │ │ │ └── migration.sql │ │ │ ├── 20240517170909_enable_image_encoding_user_preference │ │ │ │ └── migration.sql │ │ │ ├── 20240521170053_lite_mode_flag │ │ │ │ └── migration.sql │ │ │ ├── 20240528231000_explicit_content_flag │ │ │ │ └── migration.sql │ │ │ ├── 20240830140153_user_fields_added │ │ │ │ └── migration.sql │ │ │ ├── 20240905202425_add_enable_stop_tracking_flag │ │ │ │ └── migration.sql │ │ │ ├── 20240926170508_alter_table_user_profile_picture │ │ │ │ └── migration.sql │ │ │ ├── 20241015194814_add_column_to_naventry_for_generated_content │ │ │ │ └── migration.sql │ │ │ ├── 20241029145134_added_tags │ │ │ │ └── migration.sql │ │ │ ├── 20241031174906_added_fks_tag_entry │ │ │ │ └── migration.sql │ │ │ ├── 20241120151256_add_navigation_entry_lower_title │ │ │ │ └── migration.sql │ │ │ ├── 20241120155712_tsvector_generated_content │ │ │ │ └── migration.sql │ │ │ ├── 20241122210722_remove_query_data_model │ │ │ │ └── migration.sql │ │ │ ├── 20241127135228_add_image_caption │ │ │ │ └── migration.sql │ │ │ └── migration_lock.toml │ │ └── schema.prisma │ ├── sample.env │ ├── sentry-sourcemaps.sh │ ├── src │ │ ├── app.module.ts │ │ ├── auth │ │ │ ├── auth.module.ts │ │ │ ├── controllers │ │ │ │ ├── auth.controller.spec.ts │ │ │ │ ├── auth.controller.ts │ │ │ │ └── index.ts │ │ │ ├── decorators │ │ │ │ ├── index.ts │ │ │ │ ├── jwt-request-context.decorator.ts │ │ │ │ └── jwt-tokens.decorator.ts │ │ │ ├── dtos │ │ │ │ ├── complete-session.dto.ts │ │ │ │ ├── external-login-request.dto.ts │ │ │ │ ├── index.ts │ │ │ │ ├── login-request.dto.ts │ │ │ │ ├── login-response.dto.ts │ │ │ │ ├── logout-session.input.dto.ts │ │ │ │ ├── recover-password.dto.ts │ │ │ │ ├── recovery-validation-response.dto.ts │ │ │ │ ├── refresh-response.dto.ts │ │ │ │ ├── restore-password.dto.ts │ │ │ │ ├── retrieve-external-login-token-response.dto.ts │ │ │ │ ├── retrieve-external-login-token.dto.ts │ │ │ │ ├── signup-request.dto.ts │ │ │ │ ├── signup-response.dto.ts │ │ │ │ ├── user-response.dto.ts │ │ │ │ ├── validate-recovery-code.dto.ts │ │ │ │ ├── verify-account.dto.ts │ │ │ │ └── verify-external-client-response.dto.ts │ │ │ ├── guards │ │ │ │ ├── cron-jodb-auth.guard.ts │ │ │ │ ├── index.ts │ │ │ │ ├── local-auth.guard.ts │ │ │ │ └── user-type.guard.ts │ │ │ ├── interfaces │ │ │ │ ├── index.ts │ │ │ │ ├── jwt-context.interface.ts │ │ │ │ ├── jwt-refresh-context.interface.ts │ │ │ │ └── jwt.interface.ts │ │ │ ├── services │ │ │ │ ├── auth.service.spec.ts │ │ │ │ ├── auth.service.ts │ │ │ │ └── index.ts │ │ │ └── strategies │ │ │ │ ├── index.ts │ │ │ │ ├── jwt-access.strategy.ts │ │ │ │ ├── jwt-partial.strategy.ts │ │ │ │ ├── jwt-recovery-token.strategy.ts │ │ │ │ ├── jwt-refresh.strategy.ts │ │ │ │ └── local-web.strategy.ts │ │ ├── common │ │ │ ├── common.module.ts │ │ │ ├── common.testing.module.ts │ │ │ ├── decorators │ │ │ │ ├── api-message-responses.decorator.ts │ │ │ │ ├── api-pagination-response.decorator.ts │ │ │ │ └── index.ts │ │ │ ├── dtos │ │ │ │ ├── get-paginations-params.dto.ts │ │ │ │ ├── index.ts │ │ │ │ ├── message-response.dto.ts │ │ │ │ └── pagination-response.dto.ts │ │ │ ├── enums │ │ │ │ ├── api-docs.enum.ts │ │ │ │ └── index.ts │ │ │ ├── helpers │ │ │ │ ├── bcryptjs.helper.ts │ │ │ │ ├── generate-numeric-code.ts │ │ │ │ ├── index.ts │ │ │ │ └── webtm-logger.ts │ │ │ ├── services │ │ │ │ ├── email.service.spec.ts │ │ │ │ ├── email.service.ts │ │ │ │ ├── index.ts │ │ │ │ └── prisma.service.ts │ │ │ └── templates │ │ │ │ ├── account-validation.template.hbs │ │ │ │ ├── account-validation.template.mjml │ │ │ │ ├── password-reset.template.hbs │ │ │ │ └── password-reset.template.mjml │ │ ├── config │ │ │ ├── env.config.ts │ │ │ └── index.ts │ │ ├── filter │ │ │ ├── filter.module.ts │ │ │ ├── filter.testing.module.ts │ │ │ └── services │ │ │ │ ├── explicit-filter.service.spec.ts │ │ │ │ ├── explicit-filter.service.ts │ │ │ │ └── index.ts │ │ ├── getVersion.ts │ │ ├── main.ts │ │ ├── navigation │ │ │ ├── controllers │ │ │ │ ├── index.ts │ │ │ │ └── navigation-entry.controller.ts │ │ │ ├── dtos │ │ │ │ ├── add-context-to-navigation-entry.dto.ts │ │ │ │ ├── complete-navigation-entry.dto.ts │ │ │ │ ├── create-navigation-entry.input.dto.ts │ │ │ │ ├── delete-navigation-entries.input.dto.ts │ │ │ │ ├── get-navigation-entry.dto.ts │ │ │ │ ├── index.ts │ │ │ │ ├── navigation-entry.dto.ts │ │ │ │ └── simple-navigation-entry.dto.ts │ │ │ ├── navigation.module.ts │ │ │ ├── services │ │ │ │ ├── index.ts │ │ │ │ ├── navigation-entry.service.spec.ts │ │ │ │ └── navigation-entry.service.ts │ │ │ ├── types │ │ │ │ ├── complete-navigation-entry.type.ts │ │ │ │ ├── index.ts │ │ │ │ └── raw-complete-navigation-entry.type.ts │ │ │ └── utils.ts │ │ ├── openai │ │ │ ├── openai.module.ts │ │ │ ├── openai.testing.module.ts │ │ │ ├── service │ │ │ │ ├── index.ts │ │ │ │ ├── open-ai.prompts.ts │ │ │ │ ├── open-ai.service.spec.ts │ │ │ │ └── open-ai.service.ts │ │ │ ├── types │ │ │ │ ├── generate-summary.type.ts │ │ │ │ └── index.ts │ │ │ └── utils.ts │ │ ├── sentry.filter.ts │ │ ├── swagger-options.ts │ │ ├── system │ │ │ ├── controllers │ │ │ │ ├── index.ts │ │ │ │ └── system.controller.ts │ │ │ ├── dtos │ │ │ │ ├── get-version.response.ts │ │ │ │ └── index.ts │ │ │ ├── services │ │ │ │ ├── index.ts │ │ │ │ └── system.service.ts │ │ │ └── system.module.ts │ │ └── user │ │ │ ├── controllers │ │ │ ├── index.ts │ │ │ ├── profile.controller.ts │ │ │ └── user.controller.ts │ │ │ ├── dtos │ │ │ ├── change-displayname.input.ts │ │ │ ├── change-password.input.ts │ │ │ ├── change-profile-picture.input.ts │ │ │ ├── device.dto.ts │ │ │ ├── index.ts │ │ │ ├── uaresult.dto.ts │ │ │ ├── update-user-device.input.ts │ │ │ ├── update-user-preferences.input.ts │ │ │ ├── user-device.dto.ts │ │ │ ├── user-preferences.dto.ts │ │ │ └── user.dto.ts │ │ │ ├── services │ │ │ ├── index.ts │ │ │ ├── user.service.spec.ts │ │ │ └── user.service.ts │ │ │ ├── types │ │ │ ├── complete-session.type.ts │ │ │ ├── complete-user-device.type.ts │ │ │ ├── complete-user.type.ts │ │ │ └── index.ts │ │ │ └── user.module.ts │ ├── tsconfig.build.json │ ├── tsconfig.json │ └── vercel.json ├── extension │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .nvmrc │ ├── .prettierrc │ ├── ExportOptions.plist │ ├── README.md │ ├── index.html │ ├── jest.config.ts │ ├── manifest-base.ts │ ├── manifest-chrome.ts │ ├── manifest-firefox.ts │ ├── manifest-ios.ts │ ├── nodemon.json │ ├── package-lock.json │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── app-icon-128.png │ │ ├── app-icon-16.png │ │ ├── app-icon-32.png │ │ ├── app-icon-48.png │ │ ├── app-icon-64.png │ │ ├── app-icon-grayscale-128.png │ │ ├── app-icon-grayscale-16.png │ │ ├── app-icon-grayscale-32.png │ │ ├── app-icon-grayscale-48.png │ │ ├── app-icon-grayscale-64.png │ │ ├── app-icon-grayscale.png │ │ ├── app-icon-no-tracking-128.png │ │ ├── app-icon-no-tracking-16.png │ │ ├── app-icon-no-tracking-32.png │ │ ├── app-icon-no-tracking-48.png │ │ ├── app-icon-no-tracking-64.png │ │ └── app-icon.png │ ├── src │ │ ├── App.tsx │ │ ├── __mocks__ │ │ │ ├── clsx.ts │ │ │ ├── fileMock.ts │ │ │ ├── react-markdown.ts │ │ │ └── use-browser-location.ts │ │ ├── assets │ │ │ └── Avatars │ │ │ │ ├── female_one.png │ │ │ │ ├── female_two.png │ │ │ │ ├── male_one.png │ │ │ │ └── male_two.png │ │ ├── components │ │ │ ├── __tests__ │ │ │ │ ├── change-avatar-modal.component.test.tsx │ │ │ │ ├── change-display-name-modal.component.test.tsx │ │ │ │ ├── change-password-modal.component.test.tsx │ │ │ │ └── server-url-editable.component.test.tsx │ │ │ ├── change-avatar-modal.component.tsx │ │ │ ├── change-display-name-modal.component.tsx │ │ │ ├── change-password-modal.component.tsx │ │ │ ├── custom-input-box.component.tsx │ │ │ ├── index.ts │ │ │ └── server-url-editable.component.tsx │ │ ├── config │ │ │ └── jest │ │ │ │ └── setupTests.ts │ │ ├── content-scripts │ │ │ ├── __tests__ │ │ │ │ └── content.test.ts │ │ │ ├── content-ios.ts │ │ │ └── content.ts │ │ ├── hooks │ │ │ ├── index.ts │ │ │ ├── use-bulk-delete.hook.ts │ │ │ ├── use-change-user-displayname.hook.ts │ │ │ ├── use-change-user-password.hook.ts │ │ │ ├── use-change-user-profile-avatar.hook.ts │ │ │ ├── use-close-active-session.hook.ts │ │ │ ├── use-confirm-delete-account.hook.ts │ │ │ ├── use-delete-navigation-entry.hook.ts │ │ │ ├── use-extension-navigation.tsx │ │ │ ├── use-get-active-sessions.hook.ts │ │ │ ├── use-get-preferences.hook.ts │ │ │ ├── use-get-user-basic-information.hook.ts │ │ │ ├── use-get-version.hook.ts │ │ │ ├── use-handle-session-expired.hook.ts │ │ │ ├── use-hash-location.hook.ts │ │ │ ├── use-login.hook.ts │ │ │ ├── use-logout.hook.ts │ │ │ ├── use-navigation-entries.hook.ts │ │ │ ├── use-recover-password.hook.ts │ │ │ ├── use-resend-code.hook.ts │ │ │ ├── use-restore-password.hook.ts │ │ │ ├── use-server-url.hook.ts │ │ │ ├── use-sign-up.hook.ts │ │ │ ├── use-system-models.hook.ts │ │ │ ├── use-update-device-alias.hook.ts │ │ │ ├── use-update-preferences.hook.ts │ │ │ ├── use-validate-recovery-code.hook.ts │ │ │ └── use-verify-code.hook.ts │ │ ├── index.css │ │ ├── main.tsx │ │ ├── react-app-env.d.ts │ │ ├── screens │ │ │ ├── __tests__ │ │ │ │ ├── about-wtm.screen.test.tsx │ │ │ │ ├── login.screen.test.tsx │ │ │ │ ├── navigation-entries.screen.test.tsx │ │ │ │ ├── preferences.screen.test.tsx │ │ │ │ ├── settings.screen.test.tsx │ │ │ │ └── sign-up.screen.test.tsx │ │ │ ├── about-wtm.screen.tsx │ │ │ ├── active-sessions.screen.tsx │ │ │ ├── confirm-delete-account.screen.tsx │ │ │ ├── forgot-password.screen.tsx │ │ │ ├── index.ts │ │ │ ├── login.screen.tsx │ │ │ ├── navigation-entries.screen.tsx │ │ │ ├── preferences.screen.tsx │ │ │ ├── profile.screen.tsx │ │ │ ├── recovery-new-password.screen.tsx │ │ │ ├── settings.screen.tsx │ │ │ ├── sign-up.screen.tsx │ │ │ ├── validate-email.screen.tsx │ │ │ └── validate-recovery-code.screen.tsx │ │ ├── service-workers │ │ │ ├── background.ts │ │ │ └── types.ts │ │ ├── store │ │ │ ├── auth.store.ts │ │ │ ├── index.ts │ │ │ ├── navigation.store.tsx │ │ │ └── screens.store.ts │ │ ├── utils │ │ │ ├── __tests__ │ │ │ │ └── api.client.test.ts │ │ │ ├── api.client.ts │ │ │ ├── chrome-storage-sync.ts │ │ │ ├── common-utils.ts │ │ │ ├── get-avatar.ts │ │ │ └── updateIcon.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── webpage │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── components.json │ ├── jest.config.ts │ ├── next.config.mjs │ ├── package.json │ ├── postcss.config.js │ ├── postcss.config.mjs │ ├── public │ ├── TerminalBuildResult1.png │ ├── TerminalBuildResult2.png │ ├── TerminalBuildResult3.png │ ├── TerminalBuildResult4.png │ ├── apple-store.svg │ ├── chrome-badget.png │ ├── discord.jpeg │ ├── firefox-add-ons.png │ ├── github.svg │ ├── hackernews.svg │ ├── icon-512.png │ ├── twitter.svg │ ├── webtm-nav-entries.png │ ├── webtm-preferences.png │ └── webtm-search.png │ ├── src │ ├── app │ │ ├── (landing) │ │ │ ├── components │ │ │ │ ├── download-button.tsx │ │ │ │ ├── landing.tsx │ │ │ │ ├── nav-menu.tsx │ │ │ │ └── nav.tsx │ │ │ ├── contact-us │ │ │ │ ├── action.ts │ │ │ │ ├── form.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── submit-button.tsx │ │ │ ├── downloads │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── privacy-policies │ │ │ │ └── page.tsx │ │ ├── about │ │ │ ├── __tests__ │ │ │ │ └── page.test.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── active-sessions │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── app-icon.png │ │ ├── confirm-delete-account │ │ │ └── page.tsx │ │ ├── external-login │ │ │ └── page.tsx │ │ ├── favicon.ico │ │ ├── forgot-password │ │ │ └── page.tsx │ │ ├── globals.css │ │ ├── hold │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── login │ │ │ ├── __tests__ │ │ │ │ └── page.test.tsx │ │ │ └── page.tsx │ │ ├── navigation-entries │ │ │ ├── __tests__ │ │ │ │ └── page.test.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── not-found.tsx │ │ ├── preferences │ │ │ ├── __tests__ │ │ │ │ └── page.test.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── profile │ │ │ ├── components │ │ │ │ └── CustomInputBox.tsx │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── recovery-new-password │ │ │ └── page.tsx │ │ ├── sign-up │ │ │ └── page.tsx │ │ ├── validate-email │ │ │ └── page.tsx │ │ └── validate-recovery-code │ │ │ └── page.tsx │ ├── assets │ │ └── Avatars │ │ │ ├── female_one.png │ │ │ ├── female_two.png │ │ │ ├── male_one.png │ │ │ └── male_two.png │ ├── components │ │ ├── __tests__ │ │ │ └── server-url-editable.component.test.tsx │ │ ├── auth-layout.tsx │ │ ├── custom-drawer.tsx │ │ ├── external-login.screen.tsx │ │ ├── index.ts │ │ ├── main-layout.tsx │ │ ├── server-url-editable.component.tsx │ │ └── ui │ │ │ ├── animated-grid-pattern.tsx │ │ │ ├── blur-fade.tsx │ │ │ ├── box-reveal.tsx │ │ │ ├── dock.tsx │ │ │ └── shimmer-button.tsx │ ├── config │ │ └── jest │ │ │ └── setupTests.ts │ ├── hooks │ │ ├── get-system-models.hook.ts │ │ ├── index.ts │ │ ├── use-bulk-delete.hook.ts │ │ ├── use-change-user-displayname.hook.ts │ │ ├── use-change-user-password.hook.ts │ │ ├── use-change-user-profile-avatar.hook.ts │ │ ├── use-close-active-session.hook.ts │ │ ├── use-confirm-delete-account.hook.ts │ │ ├── use-delete-navigation-entry.hook.ts │ │ ├── use-get-active-sessions.hook.ts │ │ ├── use-get-preferences.hook.ts │ │ ├── use-get-user-basic-information.hook.ts │ │ ├── use-get-version.hook.ts │ │ ├── use-handle-session-expired.hook.ts │ │ ├── use-login-shared-credentials.hook.ts │ │ ├── use-login.hook.ts │ │ ├── use-logout.hook.ts │ │ ├── use-navigation-entries.hook.ts │ │ ├── use-recover-password.hook.ts │ │ ├── use-resend-code.hook.ts │ │ ├── use-restore-password.hook.ts │ │ ├── use-server-url.hook.ts │ │ ├── use-sign-up.hook.ts │ │ ├── use-update-device-alias.hook.ts │ │ ├── use-update-preferences.hook.ts │ │ ├── use-validate-recovery-code.hook.ts │ │ └── use-verify-code.hook.ts │ ├── lib │ │ └── utils.ts │ ├── manifest-web.ts │ ├── providers │ │ ├── ClientProvider.tsx │ │ └── ReactQueryProvider.tsx │ ├── react-app-env.d.ts │ ├── store │ │ ├── auth.store.ts │ │ ├── index.ts │ │ ├── navigation.store.tsx │ │ └── use-screen-navigation.tsx │ └── utils │ │ ├── __tests__ │ │ └── api.client.test.ts │ │ ├── api.client.ts │ │ └── get-avatar.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ └── tsconfig.test.json ├── e2e ├── .env.example ├── .gitignore ├── .prettierrc ├── README.md ├── package-lock.json ├── package.json ├── playwright.config.ts ├── tests │ ├── backend │ │ └── auth.spec.ts │ ├── extension │ │ └── extension.spec.ts │ └── webpage │ │ ├── download-button.spec.ts │ │ ├── forgot-password.spec.ts │ │ ├── landing.spec.ts │ │ └── login.spec.ts └── utils │ └── envConfig.ts ├── gif-and-videos ├── WebTM - Image search.mp4 ├── WebTM.mp4 ├── app-build-and-load.gif └── backend-build-and-usage.gif ├── guides ├── apple-store-release.md ├── assets │ ├── add-new-version-appstore.png │ ├── chrome-upload-new-package.png │ ├── firefox-upload-new-addon.png │ ├── xcode-archive.png │ └── xcode-signing-and-capabilities.png ├── chrome-store-release.md ├── firefox-store-release.md ├── setup-backend-environment-variables.md └── testflight-deploy.md ├── jest.config.base.js ├── native └── app_ios │ └── wtm │ ├── Shared (App) │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── mac-icon-128@1x.png │ │ │ ├── mac-icon-128@2x.png │ │ │ ├── mac-icon-16@1x.png │ │ │ ├── mac-icon-16@2x.png │ │ │ ├── mac-icon-256@1x.png │ │ │ ├── mac-icon-256@2x.png │ │ │ ├── mac-icon-32@1x.png │ │ │ ├── mac-icon-32@2x.png │ │ │ ├── mac-icon-512@1x.png │ │ │ ├── mac-icon-512@2x.png │ │ │ └── universal-icon-1024@1x.png │ │ ├── Contents.json │ │ └── LargeIcon.imageset │ │ │ ├── Contents.json │ │ │ └── app-icon-128.png │ ├── Base.lproj │ │ └── Main.html │ ├── Resources │ │ ├── Icon.png │ │ ├── Script.js │ │ └── Style.css │ ├── ViewController.swift │ └── WebViewController.swift │ ├── Shared (Extension) │ ├── SafariWebExtensionHandler.swift │ └── service-worker-loader.js │ ├── iOS (App) │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── SceneDelegate.swift │ ├── iOS (Extension) │ └── Info.plist │ ├── macOS (App) │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── wtm.entitlements │ ├── macOS (Extension) │ ├── Info.plist │ └── wtm.entitlements │ ├── wtm (iOS).entitlements │ ├── wtm Extension (iOS).entitlements │ └── wtm.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ ├── bautistacarpintero.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── diego.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ ├── juano.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ │ └── maxi.xcuserdatad │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ ├── juano.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── maxi.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── package.json ├── packages ├── api │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── client │ │ │ └── ApiClient.ts │ │ ├── index.ts │ │ └── interfaces │ │ │ ├── active-sessons.interface.ts │ │ │ ├── basic-response.ts │ │ │ ├── change-password.input.ts │ │ │ ├── change-user-avatar.interface.ts │ │ │ ├── change-user-displayname.interface.ts │ │ │ ├── change-user-password.interface.ts │ │ │ ├── close-active-session.ts │ │ │ ├── get-version.interface.ts │ │ │ ├── index.ts │ │ │ ├── login.interface.ts │ │ │ ├── navigation-entry.interface.ts │ │ │ ├── preferences.interface.ts │ │ │ ├── recover-password.interface.ts │ │ │ ├── resend-code.interface.ts │ │ │ ├── restore-password.interface.ts │ │ │ ├── sign-up.interface.ts │ │ │ ├── system-models.interface.ts │ │ │ ├── user-basic-information.ts │ │ │ ├── user-device.interface.ts │ │ │ ├── validate-recovery-code.interface.ts │ │ │ └── verify-code.interface.ts │ └── tsconfig.json └── utils │ ├── .prettierrc │ ├── jest.config.js │ ├── package.json │ ├── src │ ├── DOMtoString.ts │ ├── __tests__ │ │ ├── DOMtoString.test.ts │ │ ├── getRandomToken.test.ts │ │ └── last.test.ts │ ├── browser.ts │ ├── cn.ts │ ├── generateSecurePassword.ts │ ├── getColorFromEmail.ts │ ├── getRandomToken.ts │ ├── index.ts │ ├── isTokenExpired.ts │ ├── last.ts │ └── relativeTime.ts │ ├── tsconfig.json │ └── tsconfig.tsbuildinfo ├── turbo.json └── update-version.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/e2e-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/e2e-extension.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-webpage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/e2e-webpage.yml -------------------------------------------------------------------------------- /.github/workflows/lint-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/lint-backend.yml -------------------------------------------------------------------------------- /.github/workflows/lint-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/lint-extension.yml -------------------------------------------------------------------------------- /.github/workflows/lint-webpage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/lint-webpage.yml -------------------------------------------------------------------------------- /.github/workflows/prisma-migrate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/prisma-migrate.yml -------------------------------------------------------------------------------- /.github/workflows/release-chrome-store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/release-chrome-store.yml -------------------------------------------------------------------------------- /.github/workflows/release-firefox-store.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/release-firefox-store.yml -------------------------------------------------------------------------------- /.github/workflows/release-testflight.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/release-testflight.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/test-backend.yml -------------------------------------------------------------------------------- /.github/workflows/test-extension.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/test-extension.yml -------------------------------------------------------------------------------- /.github/workflows/test-webpage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.github/workflows/test-webpage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.17.0 -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/README.md -------------------------------------------------------------------------------- /SETUP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/SETUP.md -------------------------------------------------------------------------------- /apps/backend/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/.eslintrc.js -------------------------------------------------------------------------------- /apps/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/.gitignore -------------------------------------------------------------------------------- /apps/backend/.nvmrc: -------------------------------------------------------------------------------- 1 | 18.18.0 -------------------------------------------------------------------------------- /apps/backend/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/.prettierrc -------------------------------------------------------------------------------- /apps/backend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/README.md -------------------------------------------------------------------------------- /apps/backend/db.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/db.env -------------------------------------------------------------------------------- /apps/backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/docker-compose.yml -------------------------------------------------------------------------------- /apps/backend/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/jest.config.js -------------------------------------------------------------------------------- /apps/backend/nest-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/nest-cli.json -------------------------------------------------------------------------------- /apps/backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/package-lock.json -------------------------------------------------------------------------------- /apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/package.json -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240124201354_example_data_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240124201354_example_data_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240126135759_user_data_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240126135759_user_data_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240131130337_delete_example_data_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240131130337_delete_example_data_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240201190815_navigation_history_data_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240201190815_navigation_history_data_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240201192119_navigation_date_col/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240201192119_navigation_date_col/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240214161329_user_agent_on_sessions/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240214161329_user_agent_on_sessions/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240214163935_user_agent_on_navigation_entry/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240214163935_user_agent_on_navigation_entry/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240214164318_navigation_entry_content_to_text/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240214164318_navigation_entry_content_to_text/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240311191858_user_preferences_data_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240311191858_user_preferences_data_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240316222004_devices_data_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240316222004_devices_data_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240321165855_black_list_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240321165855_black_list_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240322222319_query_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240322222319_query_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240322231540_query_model_unique_field/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240322231540_query_model_unique_field/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240325215227_navigation_entry_query_composite_unique_constraint/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240325215227_navigation_entry_query_composite_unique_constraint/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240327141132_recovery_code_added_to_user_table/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240327141132_recovery_code_added_to_user_table/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240328000404_navigation_entry_query_delete_cascade/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240328000404_navigation_entry_query_delete_cascade/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240403204439_alter_user_add_verification_columns/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240403204439_alter_user_add_verification_columns/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240412175707_remove_content_from_navigation_entry/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240412175707_remove_content_from_navigation_entry/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240430162749_user_agent_data/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240430162749_user_agent_data/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240517170909_enable_image_encoding_user_preference/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240517170909_enable_image_encoding_user_preference/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240521170053_lite_mode_flag/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240521170053_lite_mode_flag/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240528231000_explicit_content_flag/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240528231000_explicit_content_flag/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240830140153_user_fields_added/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240830140153_user_fields_added/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240905202425_add_enable_stop_tracking_flag/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240905202425_add_enable_stop_tracking_flag/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20240926170508_alter_table_user_profile_picture/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20240926170508_alter_table_user_profile_picture/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20241015194814_add_column_to_naventry_for_generated_content/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20241015194814_add_column_to_naventry_for_generated_content/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20241029145134_added_tags/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20241029145134_added_tags/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20241031174906_added_fks_tag_entry/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20241031174906_added_fks_tag_entry/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20241120151256_add_navigation_entry_lower_title/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20241120151256_add_navigation_entry_lower_title/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20241120155712_tsvector_generated_content/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20241120155712_tsvector_generated_content/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20241122210722_remove_query_data_model/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20241122210722_remove_query_data_model/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/20241127135228_add_image_caption/migration.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/20241127135228_add_image_caption/migration.sql -------------------------------------------------------------------------------- /apps/backend/prisma/migrations/migration_lock.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/migrations/migration_lock.toml -------------------------------------------------------------------------------- /apps/backend/prisma/schema.prisma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/prisma/schema.prisma -------------------------------------------------------------------------------- /apps/backend/sample.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/sample.env -------------------------------------------------------------------------------- /apps/backend/sentry-sourcemaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/sentry-sourcemaps.sh -------------------------------------------------------------------------------- /apps/backend/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/app.module.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/auth.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/auth.module.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/controllers/auth.controller.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/controllers/auth.controller.spec.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/controllers/auth.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/controllers/auth.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/controllers/index.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/decorators/index.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/decorators/jwt-request-context.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/decorators/jwt-request-context.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/decorators/jwt-tokens.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/decorators/jwt-tokens.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/complete-session.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/complete-session.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/external-login-request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/external-login-request.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/index.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/login-request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/login-request.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/login-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/login-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/logout-session.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/logout-session.input.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/recover-password.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/recover-password.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/recovery-validation-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/recovery-validation-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/refresh-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/refresh-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/restore-password.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/restore-password.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/retrieve-external-login-token-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/retrieve-external-login-token-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/retrieve-external-login-token.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/retrieve-external-login-token.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/signup-request.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/signup-request.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/signup-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/signup-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/user-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/user-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/validate-recovery-code.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/validate-recovery-code.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/verify-account.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/verify-account.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/dtos/verify-external-client-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/dtos/verify-external-client-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/guards/cron-jodb-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/guards/cron-jodb-auth.guard.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/guards/index.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/guards/local-auth.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/guards/local-auth.guard.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/guards/user-type.guard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/guards/user-type.guard.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/interfaces/index.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/interfaces/jwt-context.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/interfaces/jwt-context.interface.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/interfaces/jwt-refresh-context.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/interfaces/jwt-refresh-context.interface.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/interfaces/jwt.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/interfaces/jwt.interface.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/services/auth.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/services/auth.service.spec.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/services/auth.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/services/auth.service.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/services/index.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/strategies/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/strategies/index.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/strategies/jwt-access.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/strategies/jwt-access.strategy.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/strategies/jwt-partial.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/strategies/jwt-partial.strategy.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/strategies/jwt-recovery-token.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/strategies/jwt-recovery-token.strategy.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/strategies/jwt-refresh.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/strategies/jwt-refresh.strategy.ts -------------------------------------------------------------------------------- /apps/backend/src/auth/strategies/local-web.strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/auth/strategies/local-web.strategy.ts -------------------------------------------------------------------------------- /apps/backend/src/common/common.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/common.module.ts -------------------------------------------------------------------------------- /apps/backend/src/common/common.testing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/common.testing.module.ts -------------------------------------------------------------------------------- /apps/backend/src/common/decorators/api-message-responses.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/decorators/api-message-responses.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/common/decorators/api-pagination-response.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/decorators/api-pagination-response.decorator.ts -------------------------------------------------------------------------------- /apps/backend/src/common/decorators/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/decorators/index.ts -------------------------------------------------------------------------------- /apps/backend/src/common/dtos/get-paginations-params.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/dtos/get-paginations-params.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/common/dtos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/dtos/index.ts -------------------------------------------------------------------------------- /apps/backend/src/common/dtos/message-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/dtos/message-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/common/dtos/pagination-response.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/dtos/pagination-response.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/common/enums/api-docs.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/enums/api-docs.enum.ts -------------------------------------------------------------------------------- /apps/backend/src/common/enums/index.ts: -------------------------------------------------------------------------------- 1 | export { ApiDocsDescriptions } from './api-docs.enum'; 2 | -------------------------------------------------------------------------------- /apps/backend/src/common/helpers/bcryptjs.helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/helpers/bcryptjs.helper.ts -------------------------------------------------------------------------------- /apps/backend/src/common/helpers/generate-numeric-code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/helpers/generate-numeric-code.ts -------------------------------------------------------------------------------- /apps/backend/src/common/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/helpers/index.ts -------------------------------------------------------------------------------- /apps/backend/src/common/helpers/webtm-logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/helpers/webtm-logger.ts -------------------------------------------------------------------------------- /apps/backend/src/common/services/email.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/services/email.service.spec.ts -------------------------------------------------------------------------------- /apps/backend/src/common/services/email.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/services/email.service.ts -------------------------------------------------------------------------------- /apps/backend/src/common/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/services/index.ts -------------------------------------------------------------------------------- /apps/backend/src/common/services/prisma.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/services/prisma.service.ts -------------------------------------------------------------------------------- /apps/backend/src/common/templates/account-validation.template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/templates/account-validation.template.hbs -------------------------------------------------------------------------------- /apps/backend/src/common/templates/account-validation.template.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/templates/account-validation.template.mjml -------------------------------------------------------------------------------- /apps/backend/src/common/templates/password-reset.template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/templates/password-reset.template.hbs -------------------------------------------------------------------------------- /apps/backend/src/common/templates/password-reset.template.mjml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/common/templates/password-reset.template.mjml -------------------------------------------------------------------------------- /apps/backend/src/config/env.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/config/env.config.ts -------------------------------------------------------------------------------- /apps/backend/src/config/index.ts: -------------------------------------------------------------------------------- 1 | export { appEnv, EnvType } from './env.config'; 2 | -------------------------------------------------------------------------------- /apps/backend/src/filter/filter.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/filter/filter.module.ts -------------------------------------------------------------------------------- /apps/backend/src/filter/filter.testing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/filter/filter.testing.module.ts -------------------------------------------------------------------------------- /apps/backend/src/filter/services/explicit-filter.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/filter/services/explicit-filter.service.spec.ts -------------------------------------------------------------------------------- /apps/backend/src/filter/services/explicit-filter.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/filter/services/explicit-filter.service.ts -------------------------------------------------------------------------------- /apps/backend/src/filter/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/filter/services/index.ts -------------------------------------------------------------------------------- /apps/backend/src/getVersion.ts: -------------------------------------------------------------------------------- 1 | export const getVersion = () => { 2 | return '1.7.4'; 3 | }; 4 | -------------------------------------------------------------------------------- /apps/backend/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/main.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/controllers/index.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/controllers/navigation-entry.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/controllers/navigation-entry.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/add-context-to-navigation-entry.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/add-context-to-navigation-entry.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/complete-navigation-entry.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/complete-navigation-entry.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/create-navigation-entry.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/create-navigation-entry.input.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/delete-navigation-entries.input.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/delete-navigation-entries.input.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/get-navigation-entry.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/get-navigation-entry.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/index.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/navigation-entry.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/navigation-entry.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/dtos/simple-navigation-entry.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/dtos/simple-navigation-entry.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/navigation.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/navigation.module.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/services/index.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/services/navigation-entry.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/services/navigation-entry.service.spec.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/services/navigation-entry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/services/navigation-entry.service.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/types/complete-navigation-entry.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/types/complete-navigation-entry.type.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/types/index.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/types/raw-complete-navigation-entry.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/types/raw-complete-navigation-entry.type.ts -------------------------------------------------------------------------------- /apps/backend/src/navigation/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/navigation/utils.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/openai.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/openai.module.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/openai.testing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/openai.testing.module.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/service/index.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/service/open-ai.prompts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/service/open-ai.prompts.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/service/open-ai.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/service/open-ai.service.spec.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/service/open-ai.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/service/open-ai.service.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/types/generate-summary.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/types/generate-summary.type.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/types/index.ts -------------------------------------------------------------------------------- /apps/backend/src/openai/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/openai/utils.ts -------------------------------------------------------------------------------- /apps/backend/src/sentry.filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/sentry.filter.ts -------------------------------------------------------------------------------- /apps/backend/src/swagger-options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/swagger-options.ts -------------------------------------------------------------------------------- /apps/backend/src/system/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/system/controllers/index.ts -------------------------------------------------------------------------------- /apps/backend/src/system/controllers/system.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/system/controllers/system.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/system/dtos/get-version.response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/system/dtos/get-version.response.ts -------------------------------------------------------------------------------- /apps/backend/src/system/dtos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/system/dtos/index.ts -------------------------------------------------------------------------------- /apps/backend/src/system/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/system/services/index.ts -------------------------------------------------------------------------------- /apps/backend/src/system/services/system.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/system/services/system.service.ts -------------------------------------------------------------------------------- /apps/backend/src/system/system.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/system/system.module.ts -------------------------------------------------------------------------------- /apps/backend/src/user/controllers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/controllers/index.ts -------------------------------------------------------------------------------- /apps/backend/src/user/controllers/profile.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/controllers/profile.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/user/controllers/user.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/controllers/user.controller.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/change-displayname.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/change-displayname.input.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/change-password.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/change-password.input.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/change-profile-picture.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/change-profile-picture.input.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/device.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/device.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/index.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/uaresult.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/uaresult.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/update-user-device.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/update-user-device.input.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/update-user-preferences.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/update-user-preferences.input.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/user-device.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/user-device.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/user-preferences.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/user-preferences.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/user/dtos/user.dto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/dtos/user.dto.ts -------------------------------------------------------------------------------- /apps/backend/src/user/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/services/index.ts -------------------------------------------------------------------------------- /apps/backend/src/user/services/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/services/user.service.spec.ts -------------------------------------------------------------------------------- /apps/backend/src/user/services/user.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/services/user.service.ts -------------------------------------------------------------------------------- /apps/backend/src/user/types/complete-session.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/types/complete-session.type.ts -------------------------------------------------------------------------------- /apps/backend/src/user/types/complete-user-device.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/types/complete-user-device.type.ts -------------------------------------------------------------------------------- /apps/backend/src/user/types/complete-user.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/types/complete-user.type.ts -------------------------------------------------------------------------------- /apps/backend/src/user/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/types/index.ts -------------------------------------------------------------------------------- /apps/backend/src/user/user.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/src/user/user.module.ts -------------------------------------------------------------------------------- /apps/backend/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/tsconfig.build.json -------------------------------------------------------------------------------- /apps/backend/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/tsconfig.json -------------------------------------------------------------------------------- /apps/backend/vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/backend/vercel.json -------------------------------------------------------------------------------- /apps/extension/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/.eslintrc.cjs -------------------------------------------------------------------------------- /apps/extension/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/.gitignore -------------------------------------------------------------------------------- /apps/extension/.nvmrc: -------------------------------------------------------------------------------- 1 | 18.18.0 -------------------------------------------------------------------------------- /apps/extension/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/.prettierrc -------------------------------------------------------------------------------- /apps/extension/ExportOptions.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/ExportOptions.plist -------------------------------------------------------------------------------- /apps/extension/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/README.md -------------------------------------------------------------------------------- /apps/extension/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/index.html -------------------------------------------------------------------------------- /apps/extension/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/jest.config.ts -------------------------------------------------------------------------------- /apps/extension/manifest-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/manifest-base.ts -------------------------------------------------------------------------------- /apps/extension/manifest-chrome.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/manifest-chrome.ts -------------------------------------------------------------------------------- /apps/extension/manifest-firefox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/manifest-firefox.ts -------------------------------------------------------------------------------- /apps/extension/manifest-ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/manifest-ios.ts -------------------------------------------------------------------------------- /apps/extension/nodemon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/nodemon.json -------------------------------------------------------------------------------- /apps/extension/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/package-lock.json -------------------------------------------------------------------------------- /apps/extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/package.json -------------------------------------------------------------------------------- /apps/extension/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/postcss.config.js -------------------------------------------------------------------------------- /apps/extension/public/app-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-128.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-16.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-32.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-48.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-64.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-grayscale-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-grayscale-128.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-grayscale-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-grayscale-16.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-grayscale-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-grayscale-32.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-grayscale-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-grayscale-48.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-grayscale-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-grayscale-64.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-grayscale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-grayscale.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-no-tracking-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-no-tracking-128.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-no-tracking-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-no-tracking-16.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-no-tracking-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-no-tracking-32.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-no-tracking-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-no-tracking-48.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon-no-tracking-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon-no-tracking-64.png -------------------------------------------------------------------------------- /apps/extension/public/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/public/app-icon.png -------------------------------------------------------------------------------- /apps/extension/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/App.tsx -------------------------------------------------------------------------------- /apps/extension/src/__mocks__/clsx.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/__mocks__/clsx.ts -------------------------------------------------------------------------------- /apps/extension/src/__mocks__/fileMock.ts: -------------------------------------------------------------------------------- 1 | module.exports = 'test-file-stub'; 2 | -------------------------------------------------------------------------------- /apps/extension/src/__mocks__/react-markdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/__mocks__/react-markdown.ts -------------------------------------------------------------------------------- /apps/extension/src/__mocks__/use-browser-location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/__mocks__/use-browser-location.ts -------------------------------------------------------------------------------- /apps/extension/src/assets/Avatars/female_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/assets/Avatars/female_one.png -------------------------------------------------------------------------------- /apps/extension/src/assets/Avatars/female_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/assets/Avatars/female_two.png -------------------------------------------------------------------------------- /apps/extension/src/assets/Avatars/male_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/assets/Avatars/male_one.png -------------------------------------------------------------------------------- /apps/extension/src/assets/Avatars/male_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/assets/Avatars/male_two.png -------------------------------------------------------------------------------- /apps/extension/src/components/__tests__/change-avatar-modal.component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/__tests__/change-avatar-modal.component.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/__tests__/change-display-name-modal.component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/__tests__/change-display-name-modal.component.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/__tests__/change-password-modal.component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/__tests__/change-password-modal.component.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/__tests__/server-url-editable.component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/__tests__/server-url-editable.component.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/change-avatar-modal.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/change-avatar-modal.component.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/change-display-name-modal.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/change-display-name-modal.component.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/change-password-modal.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/change-password-modal.component.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/custom-input-box.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/custom-input-box.component.tsx -------------------------------------------------------------------------------- /apps/extension/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/index.ts -------------------------------------------------------------------------------- /apps/extension/src/components/server-url-editable.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/components/server-url-editable.component.tsx -------------------------------------------------------------------------------- /apps/extension/src/config/jest/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/config/jest/setupTests.ts -------------------------------------------------------------------------------- /apps/extension/src/content-scripts/__tests__/content.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/content-scripts/__tests__/content.test.ts -------------------------------------------------------------------------------- /apps/extension/src/content-scripts/content-ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/content-scripts/content-ios.ts -------------------------------------------------------------------------------- /apps/extension/src/content-scripts/content.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/content-scripts/content.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/index.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-bulk-delete.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-bulk-delete.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-change-user-displayname.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-change-user-displayname.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-change-user-password.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-change-user-password.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-change-user-profile-avatar.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-change-user-profile-avatar.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-close-active-session.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-close-active-session.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-confirm-delete-account.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-confirm-delete-account.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-delete-navigation-entry.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-delete-navigation-entry.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-extension-navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-extension-navigation.tsx -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-get-active-sessions.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-get-active-sessions.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-get-preferences.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-get-preferences.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-get-user-basic-information.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-get-user-basic-information.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-get-version.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-get-version.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-handle-session-expired.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-handle-session-expired.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-hash-location.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-hash-location.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-login.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-login.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-logout.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-logout.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-navigation-entries.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-navigation-entries.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-recover-password.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-recover-password.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-resend-code.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-resend-code.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-restore-password.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-restore-password.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-server-url.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-server-url.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-sign-up.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-sign-up.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-system-models.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-system-models.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-update-device-alias.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-update-device-alias.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-update-preferences.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-update-preferences.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-validate-recovery-code.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-validate-recovery-code.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/hooks/use-verify-code.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/hooks/use-verify-code.hook.ts -------------------------------------------------------------------------------- /apps/extension/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/index.css -------------------------------------------------------------------------------- /apps/extension/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/main.tsx -------------------------------------------------------------------------------- /apps/extension/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/react-app-env.d.ts -------------------------------------------------------------------------------- /apps/extension/src/screens/__tests__/about-wtm.screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/__tests__/about-wtm.screen.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/__tests__/login.screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/__tests__/login.screen.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/__tests__/navigation-entries.screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/__tests__/navigation-entries.screen.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/__tests__/preferences.screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/__tests__/preferences.screen.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/__tests__/settings.screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/__tests__/settings.screen.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/__tests__/sign-up.screen.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/__tests__/sign-up.screen.test.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/about-wtm.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/about-wtm.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/active-sessions.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/active-sessions.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/confirm-delete-account.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/confirm-delete-account.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/forgot-password.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/forgot-password.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/index.ts -------------------------------------------------------------------------------- /apps/extension/src/screens/login.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/login.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/navigation-entries.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/navigation-entries.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/preferences.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/preferences.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/profile.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/profile.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/recovery-new-password.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/recovery-new-password.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/settings.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/settings.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/sign-up.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/sign-up.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/validate-email.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/validate-email.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/screens/validate-recovery-code.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/screens/validate-recovery-code.screen.tsx -------------------------------------------------------------------------------- /apps/extension/src/service-workers/background.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/service-workers/background.ts -------------------------------------------------------------------------------- /apps/extension/src/service-workers/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/service-workers/types.ts -------------------------------------------------------------------------------- /apps/extension/src/store/auth.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/store/auth.store.ts -------------------------------------------------------------------------------- /apps/extension/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/store/index.ts -------------------------------------------------------------------------------- /apps/extension/src/store/navigation.store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/store/navigation.store.tsx -------------------------------------------------------------------------------- /apps/extension/src/store/screens.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/store/screens.store.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/__tests__/api.client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/utils/__tests__/api.client.test.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/api.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/utils/api.client.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/chrome-storage-sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/utils/chrome-storage-sync.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/common-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/utils/common-utils.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/get-avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/utils/get-avatar.ts -------------------------------------------------------------------------------- /apps/extension/src/utils/updateIcon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/src/utils/updateIcon.ts -------------------------------------------------------------------------------- /apps/extension/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /apps/extension/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/tailwind.config.js -------------------------------------------------------------------------------- /apps/extension/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/tsconfig.json -------------------------------------------------------------------------------- /apps/extension/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/tsconfig.node.json -------------------------------------------------------------------------------- /apps/extension/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/extension/vite.config.ts -------------------------------------------------------------------------------- /apps/webpage/.env.example: -------------------------------------------------------------------------------- 1 | DISCORD_WEBHOOK_URL= -------------------------------------------------------------------------------- /apps/webpage/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/.eslintrc.json -------------------------------------------------------------------------------- /apps/webpage/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/.gitignore -------------------------------------------------------------------------------- /apps/webpage/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/.prettierrc -------------------------------------------------------------------------------- /apps/webpage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/README.md -------------------------------------------------------------------------------- /apps/webpage/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/components.json -------------------------------------------------------------------------------- /apps/webpage/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/jest.config.ts -------------------------------------------------------------------------------- /apps/webpage/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/next.config.mjs -------------------------------------------------------------------------------- /apps/webpage/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/package.json -------------------------------------------------------------------------------- /apps/webpage/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/postcss.config.js -------------------------------------------------------------------------------- /apps/webpage/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/postcss.config.mjs -------------------------------------------------------------------------------- /apps/webpage/public/TerminalBuildResult1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/TerminalBuildResult1.png -------------------------------------------------------------------------------- /apps/webpage/public/TerminalBuildResult2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/TerminalBuildResult2.png -------------------------------------------------------------------------------- /apps/webpage/public/TerminalBuildResult3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/TerminalBuildResult3.png -------------------------------------------------------------------------------- /apps/webpage/public/TerminalBuildResult4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/TerminalBuildResult4.png -------------------------------------------------------------------------------- /apps/webpage/public/apple-store.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/apple-store.svg -------------------------------------------------------------------------------- /apps/webpage/public/chrome-badget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/chrome-badget.png -------------------------------------------------------------------------------- /apps/webpage/public/discord.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/discord.jpeg -------------------------------------------------------------------------------- /apps/webpage/public/firefox-add-ons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/firefox-add-ons.png -------------------------------------------------------------------------------- /apps/webpage/public/github.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/github.svg -------------------------------------------------------------------------------- /apps/webpage/public/hackernews.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/hackernews.svg -------------------------------------------------------------------------------- /apps/webpage/public/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/icon-512.png -------------------------------------------------------------------------------- /apps/webpage/public/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/twitter.svg -------------------------------------------------------------------------------- /apps/webpage/public/webtm-nav-entries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/webtm-nav-entries.png -------------------------------------------------------------------------------- /apps/webpage/public/webtm-preferences.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/webtm-preferences.png -------------------------------------------------------------------------------- /apps/webpage/public/webtm-search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/public/webtm-search.png -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/components/download-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/components/download-button.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/components/landing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/components/landing.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/components/nav-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/components/nav-menu.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/components/nav.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/components/nav.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/contact-us/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/contact-us/action.ts -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/contact-us/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/contact-us/form.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/contact-us/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/contact-us/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/contact-us/submit-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/contact-us/submit-button.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/downloads/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/downloads/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/(landing)/privacy-policies/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/(landing)/privacy-policies/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/about/__tests__/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/about/__tests__/page.test.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/about/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/about/layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/about/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/about/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/active-sessions/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/active-sessions/layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/active-sessions/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/active-sessions/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/app-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/app-icon.png -------------------------------------------------------------------------------- /apps/webpage/src/app/confirm-delete-account/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/confirm-delete-account/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/external-login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/external-login/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/webpage/src/app/forgot-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/forgot-password/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/globals.css -------------------------------------------------------------------------------- /apps/webpage/src/app/hold/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/hold/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/login/__tests__/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/login/__tests__/page.test.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/login/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/navigation-entries/__tests__/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/navigation-entries/__tests__/page.test.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/navigation-entries/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/navigation-entries/layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/navigation-entries/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/navigation-entries/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/not-found.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/not-found.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/preferences/__tests__/page.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/preferences/__tests__/page.test.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/preferences/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/preferences/layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/preferences/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/preferences/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/profile/components/CustomInputBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/profile/components/CustomInputBox.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/profile/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/profile/layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/profile/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/recovery-new-password/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/recovery-new-password/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/sign-up/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/sign-up/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/validate-email/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/validate-email/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/app/validate-recovery-code/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/app/validate-recovery-code/page.tsx -------------------------------------------------------------------------------- /apps/webpage/src/assets/Avatars/female_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/assets/Avatars/female_one.png -------------------------------------------------------------------------------- /apps/webpage/src/assets/Avatars/female_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/assets/Avatars/female_two.png -------------------------------------------------------------------------------- /apps/webpage/src/assets/Avatars/male_one.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/assets/Avatars/male_one.png -------------------------------------------------------------------------------- /apps/webpage/src/assets/Avatars/male_two.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/assets/Avatars/male_two.png -------------------------------------------------------------------------------- /apps/webpage/src/components/__tests__/server-url-editable.component.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/__tests__/server-url-editable.component.test.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/auth-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/auth-layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/custom-drawer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/custom-drawer.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/external-login.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/external-login.screen.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/index.ts -------------------------------------------------------------------------------- /apps/webpage/src/components/main-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/main-layout.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/server-url-editable.component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/server-url-editable.component.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/ui/animated-grid-pattern.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/ui/animated-grid-pattern.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/ui/blur-fade.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/ui/blur-fade.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/ui/box-reveal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/ui/box-reveal.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/ui/dock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/ui/dock.tsx -------------------------------------------------------------------------------- /apps/webpage/src/components/ui/shimmer-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/components/ui/shimmer-button.tsx -------------------------------------------------------------------------------- /apps/webpage/src/config/jest/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/config/jest/setupTests.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/get-system-models.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/get-system-models.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/index.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-bulk-delete.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-bulk-delete.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-change-user-displayname.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-change-user-displayname.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-change-user-password.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-change-user-password.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-change-user-profile-avatar.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-change-user-profile-avatar.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-close-active-session.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-close-active-session.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-confirm-delete-account.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-confirm-delete-account.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-delete-navigation-entry.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-delete-navigation-entry.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-get-active-sessions.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-get-active-sessions.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-get-preferences.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-get-preferences.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-get-user-basic-information.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-get-user-basic-information.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-get-version.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-get-version.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-handle-session-expired.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-handle-session-expired.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-login-shared-credentials.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-login-shared-credentials.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-login.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-login.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-logout.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-logout.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-navigation-entries.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-navigation-entries.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-recover-password.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-recover-password.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-resend-code.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-resend-code.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-restore-password.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-restore-password.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-server-url.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-server-url.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-sign-up.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-sign-up.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-update-device-alias.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-update-device-alias.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-update-preferences.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-update-preferences.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-validate-recovery-code.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-validate-recovery-code.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/hooks/use-verify-code.hook.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/hooks/use-verify-code.hook.ts -------------------------------------------------------------------------------- /apps/webpage/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/webpage/src/manifest-web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/manifest-web.ts -------------------------------------------------------------------------------- /apps/webpage/src/providers/ClientProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/providers/ClientProvider.tsx -------------------------------------------------------------------------------- /apps/webpage/src/providers/ReactQueryProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/providers/ReactQueryProvider.tsx -------------------------------------------------------------------------------- /apps/webpage/src/react-app-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/react-app-env.d.ts -------------------------------------------------------------------------------- /apps/webpage/src/store/auth.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/store/auth.store.ts -------------------------------------------------------------------------------- /apps/webpage/src/store/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/store/index.ts -------------------------------------------------------------------------------- /apps/webpage/src/store/navigation.store.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/store/navigation.store.tsx -------------------------------------------------------------------------------- /apps/webpage/src/store/use-screen-navigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/store/use-screen-navigation.tsx -------------------------------------------------------------------------------- /apps/webpage/src/utils/__tests__/api.client.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/utils/__tests__/api.client.test.ts -------------------------------------------------------------------------------- /apps/webpage/src/utils/api.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/utils/api.client.ts -------------------------------------------------------------------------------- /apps/webpage/src/utils/get-avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/src/utils/get-avatar.ts -------------------------------------------------------------------------------- /apps/webpage/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/tailwind.config.js -------------------------------------------------------------------------------- /apps/webpage/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/tsconfig.json -------------------------------------------------------------------------------- /apps/webpage/tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/apps/webpage/tsconfig.test.json -------------------------------------------------------------------------------- /e2e/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/.env.example -------------------------------------------------------------------------------- /e2e/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/.gitignore -------------------------------------------------------------------------------- /e2e/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/.prettierrc -------------------------------------------------------------------------------- /e2e/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/README.md -------------------------------------------------------------------------------- /e2e/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/package-lock.json -------------------------------------------------------------------------------- /e2e/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/package.json -------------------------------------------------------------------------------- /e2e/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/playwright.config.ts -------------------------------------------------------------------------------- /e2e/tests/backend/auth.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/tests/backend/auth.spec.ts -------------------------------------------------------------------------------- /e2e/tests/extension/extension.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/tests/extension/extension.spec.ts -------------------------------------------------------------------------------- /e2e/tests/webpage/download-button.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/tests/webpage/download-button.spec.ts -------------------------------------------------------------------------------- /e2e/tests/webpage/forgot-password.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/tests/webpage/forgot-password.spec.ts -------------------------------------------------------------------------------- /e2e/tests/webpage/landing.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/tests/webpage/landing.spec.ts -------------------------------------------------------------------------------- /e2e/tests/webpage/login.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/tests/webpage/login.spec.ts -------------------------------------------------------------------------------- /e2e/utils/envConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/e2e/utils/envConfig.ts -------------------------------------------------------------------------------- /gif-and-videos/WebTM - Image search.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/gif-and-videos/WebTM - Image search.mp4 -------------------------------------------------------------------------------- /gif-and-videos/WebTM.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/gif-and-videos/WebTM.mp4 -------------------------------------------------------------------------------- /gif-and-videos/app-build-and-load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/gif-and-videos/app-build-and-load.gif -------------------------------------------------------------------------------- /gif-and-videos/backend-build-and-usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/gif-and-videos/backend-build-and-usage.gif -------------------------------------------------------------------------------- /guides/apple-store-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/apple-store-release.md -------------------------------------------------------------------------------- /guides/assets/add-new-version-appstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/assets/add-new-version-appstore.png -------------------------------------------------------------------------------- /guides/assets/chrome-upload-new-package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/assets/chrome-upload-new-package.png -------------------------------------------------------------------------------- /guides/assets/firefox-upload-new-addon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/assets/firefox-upload-new-addon.png -------------------------------------------------------------------------------- /guides/assets/xcode-archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/assets/xcode-archive.png -------------------------------------------------------------------------------- /guides/assets/xcode-signing-and-capabilities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/assets/xcode-signing-and-capabilities.png -------------------------------------------------------------------------------- /guides/chrome-store-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/chrome-store-release.md -------------------------------------------------------------------------------- /guides/firefox-store-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/firefox-store-release.md -------------------------------------------------------------------------------- /guides/setup-backend-environment-variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/setup-backend-environment-variables.md -------------------------------------------------------------------------------- /guides/testflight-deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/guides/testflight-deploy.md -------------------------------------------------------------------------------- /jest.config.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/jest.config.base.js -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-128@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-128@1x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-128@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-128@2x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-16@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-16@1x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-16@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-16@2x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-256@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-256@1x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-256@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-256@2x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-32@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-32@1x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-32@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-32@2x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-512@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-512@1x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-512@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/mac-icon-512@2x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/universal-icon-1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/AppIcon.appiconset/universal-icon-1024@1x.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/LargeIcon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/LargeIcon.imageset/Contents.json -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Assets.xcassets/LargeIcon.imageset/app-icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Assets.xcassets/LargeIcon.imageset/app-icon-128.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Base.lproj/Main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Base.lproj/Main.html -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Resources/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Resources/Icon.png -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Resources/Script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Resources/Script.js -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/Resources/Style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/Resources/Style.css -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/ViewController.swift -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (App)/WebViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (App)/WebViewController.swift -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (Extension)/SafariWebExtensionHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/Shared (Extension)/SafariWebExtensionHandler.swift -------------------------------------------------------------------------------- /native/app_ios/wtm/Shared (Extension)/service-worker-loader.js: -------------------------------------------------------------------------------- 1 | import './chunks/background-for-chrome.ts.js'; 2 | -------------------------------------------------------------------------------- /native/app_ios/wtm/iOS (App)/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/iOS (App)/AppDelegate.swift -------------------------------------------------------------------------------- /native/app_ios/wtm/iOS (App)/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/iOS (App)/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /native/app_ios/wtm/iOS (App)/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/iOS (App)/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /native/app_ios/wtm/iOS (App)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/iOS (App)/Info.plist -------------------------------------------------------------------------------- /native/app_ios/wtm/iOS (App)/SceneDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/iOS (App)/SceneDelegate.swift -------------------------------------------------------------------------------- /native/app_ios/wtm/iOS (Extension)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/iOS (Extension)/Info.plist -------------------------------------------------------------------------------- /native/app_ios/wtm/macOS (App)/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/macOS (App)/AppDelegate.swift -------------------------------------------------------------------------------- /native/app_ios/wtm/macOS (App)/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/macOS (App)/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /native/app_ios/wtm/macOS (App)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/macOS (App)/Info.plist -------------------------------------------------------------------------------- /native/app_ios/wtm/macOS (App)/wtm.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/macOS (App)/wtm.entitlements -------------------------------------------------------------------------------- /native/app_ios/wtm/macOS (Extension)/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/macOS (Extension)/Info.plist -------------------------------------------------------------------------------- /native/app_ios/wtm/macOS (Extension)/wtm.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/macOS (Extension)/wtm.entitlements -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm (iOS).entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm (iOS).entitlements -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm Extension (iOS).entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm Extension (iOS).entitlements -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/bautistacarpintero.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/bautistacarpintero.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/diego.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/diego.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/juano.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/juano.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/maxi.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/project.xcworkspace/xcuserdata/maxi.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/xcuserdata/juano.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/xcuserdata/juano.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/xcuserdata/maxi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/xcuserdata/maxi.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /native/app_ios/wtm/wtm.xcodeproj/xcuserdata/maxi.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/native/app_ios/wtm/wtm.xcodeproj/xcuserdata/maxi.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/package.json -------------------------------------------------------------------------------- /packages/api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/package-lock.json -------------------------------------------------------------------------------- /packages/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/package.json -------------------------------------------------------------------------------- /packages/api/src/client/ApiClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/client/ApiClient.ts -------------------------------------------------------------------------------- /packages/api/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/index.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/active-sessons.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/active-sessons.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/basic-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/basic-response.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/change-password.input.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/change-password.input.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/change-user-avatar.interface.ts: -------------------------------------------------------------------------------- 1 | export interface ChangeUserAvatar { 2 | profilePicture: string; 3 | } 4 | -------------------------------------------------------------------------------- /packages/api/src/interfaces/change-user-displayname.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/change-user-displayname.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/change-user-password.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/change-user-password.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/close-active-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/close-active-session.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/get-version.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/get-version.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/index.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/login.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/login.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/navigation-entry.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/navigation-entry.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/preferences.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/preferences.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/recover-password.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/recover-password.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/resend-code.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/resend-code.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/restore-password.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/restore-password.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/sign-up.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/sign-up.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/system-models.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/system-models.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/user-basic-information.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/user-basic-information.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/user-device.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/user-device.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/validate-recovery-code.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/validate-recovery-code.interface.ts -------------------------------------------------------------------------------- /packages/api/src/interfaces/verify-code.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/src/interfaces/verify-code.interface.ts -------------------------------------------------------------------------------- /packages/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/api/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/.prettierrc -------------------------------------------------------------------------------- /packages/utils/jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/jest.config.js -------------------------------------------------------------------------------- /packages/utils/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/package.json -------------------------------------------------------------------------------- /packages/utils/src/DOMtoString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/DOMtoString.ts -------------------------------------------------------------------------------- /packages/utils/src/__tests__/DOMtoString.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/__tests__/DOMtoString.test.ts -------------------------------------------------------------------------------- /packages/utils/src/__tests__/getRandomToken.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/__tests__/getRandomToken.test.ts -------------------------------------------------------------------------------- /packages/utils/src/__tests__/last.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/__tests__/last.test.ts -------------------------------------------------------------------------------- /packages/utils/src/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/browser.ts -------------------------------------------------------------------------------- /packages/utils/src/cn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/cn.ts -------------------------------------------------------------------------------- /packages/utils/src/generateSecurePassword.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/generateSecurePassword.ts -------------------------------------------------------------------------------- /packages/utils/src/getColorFromEmail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/getColorFromEmail.ts -------------------------------------------------------------------------------- /packages/utils/src/getRandomToken.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/getRandomToken.ts -------------------------------------------------------------------------------- /packages/utils/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/index.ts -------------------------------------------------------------------------------- /packages/utils/src/isTokenExpired.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/isTokenExpired.ts -------------------------------------------------------------------------------- /packages/utils/src/last.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/last.ts -------------------------------------------------------------------------------- /packages/utils/src/relativeTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/src/relativeTime.ts -------------------------------------------------------------------------------- /packages/utils/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/packages/utils/tsconfig.json -------------------------------------------------------------------------------- /packages/utils/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- 1 | {"root":["./src/index.ts"],"version":"5.6.2"} -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/turbo.json -------------------------------------------------------------------------------- /update-version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webtimemachine/wtm2/HEAD/update-version.sh --------------------------------------------------------------------------------