diff --git a/.env.example b/.env.example index f031d272..2b978745 100644 --- a/.env.example +++ b/.env.example @@ -59,14 +59,17 @@ REDIS_URL=redis://default:password@localhost:6379 # Crowdin (Optional) CROWDIN_PROJECT_ID= -CROWDIN_ACCESS_TOKEN= +CROWDIN_PERSONAL_TOKEN= -# GitHub (OAuth, Optional) Uncomment to enable +# Email (Optional) +# DISABLE_EMAIL_AUTH=false + +# GitHub (OAuth, Optional) # GITHUB_CLIENT_ID= # GITHUB_CLIENT_SECRET= # GITHUB_CALLBACK_URL=http://localhost:5173/api/auth/github/callback -# Google (OAuth, Optional) Uncomment to enable +# Google (OAuth, Optional) # GOOGLE_CLIENT_ID= # GOOGLE_CLIENT_SECRET= # GOOGLE_CALLBACK_URL=http://localhost:5173/api/auth/google/callback diff --git a/.github/workflows/close-stale-issues.yml b/.github/workflows/close-stale-issues.yml index cdff2d75..670e258c 100644 --- a/.github/workflows/close-stale-issues.yml +++ b/.github/workflows/close-stale-issues.yml @@ -2,7 +2,7 @@ name: Close Stale Issues on: schedule: - - cron: 30 1 * * * + - cron: 0 0 * * * # every day at midnight (UTC) permissions: issues: write diff --git a/.github/workflows/sync-crowdin-translations.yml b/.github/workflows/sync-crowdin-translations.yml new file mode 100644 index 00000000..768d3aef --- /dev/null +++ b/.github/workflows/sync-crowdin-translations.yml @@ -0,0 +1,31 @@ +name: Sync Crowdin Translations + +on: + workflow_dispatch: + push: + branches: + - v4 + +jobs: + sync: + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v4.1.1 + + - name: Sync Translations + uses: crowdin/github-action@v1.15.2 + with: + upload_sources: true + upload_translations: true + download_translations: true + create_pull_request: true + localization_branch_name: "l10n" + pull_request_base_branch_name: "v4" + pull_request_title: "New Translations from Crowdin" + pull_request_body: "You've got new translations to be merged into the app from contributors on Crowdin.\n_This pull request was automatically created by the [Crowdin Action](https://github.com/marketplace/actions/crowdin-action)._" + env: + GITHUB_TOKEN: ${{ github.token }} + CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }} + CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} diff --git a/Dockerfile b/Dockerfile index 2986eee4..7e7532ab 100644 --- a/Dockerfile +++ b/Dockerfile @@ -33,6 +33,9 @@ COPY --chown=node:node --from=build /app/dist ./dist COPY --chown=node:node --from=build /app/tools/prisma ./tools/prisma RUN pnpm run prisma:generate +ENV TZ=UTC +ENV NODE_ENV=production + EXPOSE 3000 CMD [ "dumb-init", "pnpm", "run", "start" ] diff --git a/README.md b/README.md index 666bc226..9c4a24e1 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,9 @@ Start creating your standout resume with Reactive Resume today! ## Built With +- React (Vite), for the frontend +- NestJS, for the backend - Postgres (primary database) -- DigitalOcean (infrastructure) - Prisma ORM, which frees you to switch to any other relational database with a few minor changes in the code - Redis (for caching, session storage and resume statistics) - Minio (for object storage: to store avatars, resume PDFs and previews) diff --git a/apps/artboard/src/styles/main.css b/apps/artboard/src/styles/main.css index 03f000e4..c6c95180 100644 --- a/apps/artboard/src/styles/main.css +++ b/apps/artboard/src/styles/main.css @@ -3,6 +3,8 @@ @tailwind utilities; * { + font-variant-ligatures: none; + @apply border-current; } diff --git a/apps/client/public/screenshots/builder.jpg b/apps/client/public/screenshots/builder.jpg new file mode 100644 index 00000000..0f350756 Binary files /dev/null and b/apps/client/public/screenshots/builder.jpg differ diff --git a/apps/client/public/screenshots/builder.png b/apps/client/public/screenshots/builder.png deleted file mode 100644 index 902c0e9c..00000000 Binary files a/apps/client/public/screenshots/builder.png and /dev/null differ diff --git a/apps/client/src/components/ai-actions.tsx b/apps/client/src/components/ai-actions.tsx index 39b06c3a..71c6de1e 100644 --- a/apps/client/src/components/ai-actions.tsx +++ b/apps/client/src/components/ai-actions.tsx @@ -18,6 +18,7 @@ import { import { cn } from "@reactive-resume/utils"; import { useState } from "react"; +import { toast } from "../hooks/use-toast"; import { changeTone } from "../services/openai/change-tone"; import { fixGrammar } from "../services/openai/fix-grammar"; import { improveWriting } from "../services/openai/improve-writing"; @@ -39,17 +40,25 @@ export const AiActions = ({ value, onChange, className }: Props) => { if (!aiEnabled) return null; const onClick = async (action: Action, mood?: Mood) => { - setLoading(action); + try { + setLoading(action); - let result = value; + let result = value; - if (action === "improve") result = await improveWriting(value); - if (action === "fix") result = await fixGrammar(value); - if (action === "tone" && mood) result = await changeTone(value, mood); + if (action === "improve") result = await improveWriting(value); + if (action === "fix") result = await fixGrammar(value); + if (action === "tone" && mood) result = await changeTone(value, mood); - onChange(result); - - setLoading(false); + onChange(result); + } catch (error) { + toast({ + variant: "error", + title: t`Oops, the server returned an error.`, + description: (error as Error)?.message, + }); + } finally { + setLoading(false); + } }; return ( diff --git a/apps/client/src/constants/helmet.ts b/apps/client/src/constants/helmet.ts new file mode 100644 index 00000000..3dbb7916 --- /dev/null +++ b/apps/client/src/constants/helmet.ts @@ -0,0 +1,5 @@ +import { HelmetData } from "react-helmet-async"; + +export const helmetData = new HelmetData({}); + +export const helmetContext = helmetData.context; diff --git a/apps/client/src/constants/query-keys.ts b/apps/client/src/constants/query-keys.ts index 7a4037d9..2edf97cc 100644 --- a/apps/client/src/constants/query-keys.ts +++ b/apps/client/src/constants/query-keys.ts @@ -1,6 +1,9 @@ import { QueryKey } from "@tanstack/react-query"; export const USER_KEY: QueryKey = ["user"]; +export const AUTH_PROVIDERS_KEY: QueryKey = ["auth", "providers"]; + +export const LANGUAGES_KEY: QueryKey = ["translation", "languages"]; export const RESUME_KEY: QueryKey = ["resume"]; export const RESUMES_KEY: QueryKey = ["resumes"]; diff --git a/apps/client/src/libs/dayjs.ts b/apps/client/src/libs/dayjs.ts index 104215f3..441ac7f7 100644 --- a/apps/client/src/libs/dayjs.ts +++ b/apps/client/src/libs/dayjs.ts @@ -4,3 +4,52 @@ import relativeTime from "dayjs/plugin/relativeTime"; dayjs.extend(localizedFormat); dayjs.extend(relativeTime); + +export const dayjsLocales: Record Promise> = { + "af-ZA": () => import("dayjs/locale/af"), + "am-ET": () => import("dayjs/locale/am"), + "ar-SA": () => import("dayjs/locale/ar-sa"), + "bg-BG": () => import("dayjs/locale/bg"), + "bn-BD": () => import("dayjs/locale/bn"), + "ca-ES": () => import("dayjs/locale/ca"), + "cs-CZ": () => import("dayjs/locale/cs"), + "da-DK": () => import("dayjs/locale/da"), + "de-DE": () => import("dayjs/locale/de"), + "el-GR": () => import("dayjs/locale/el"), + "en-US": () => import("dayjs/locale/en"), + "es-ES": () => import("dayjs/locale/es"), + "fa-IR": () => import("dayjs/locale/fa"), + "fi-FI": () => import("dayjs/locale/fi"), + "fr-FR": () => import("dayjs/locale/fr"), + "he-IL": () => import("dayjs/locale/he"), + "hi-IN": () => import("dayjs/locale/hi"), + "hu-HU": () => import("dayjs/locale/hu"), + "id-ID": () => import("dayjs/locale/id"), + "it-IT": () => import("dayjs/locale/it"), + "ja-JP": () => import("dayjs/locale/ja"), + "km-KH": () => import("dayjs/locale/km"), + "kn-IN": () => import("dayjs/locale/kn"), + "ko-KR": () => import("dayjs/locale/ko"), + "lt-LT": () => import("dayjs/locale/lt"), + "ml-IN": () => import("dayjs/locale/ml"), + "mr-IN": () => import("dayjs/locale/mr"), + "ne-NP": () => import("dayjs/locale/ne"), + "nl-NL": () => import("dayjs/locale/nl"), + "no-NO": () => import("dayjs/locale/en"), + "or-IN": () => import("dayjs/locale/en"), + "pl-PL": () => import("dayjs/locale/pl"), + "pt-BR": () => import("dayjs/locale/pt-br"), + "pt-PT": () => import("dayjs/locale/pt"), + "ro-RO": () => import("dayjs/locale/ro"), + "ru-RU": () => import("dayjs/locale/ru"), + "sr-SP": () => import("dayjs/locale/sr"), + "sv-SE": () => import("dayjs/locale/sv"), + "ta-IN": () => import("dayjs/locale/ta"), + "te-IN": () => import("dayjs/locale/te"), + "th-TH": () => import("dayjs/locale/th"), + "tr-TR": () => import("dayjs/locale/tr"), + "uk-UA": () => import("dayjs/locale/uk"), + "vi-VN": () => import("dayjs/locale/vi"), + "zh-CN": () => import("dayjs/locale/zh-cn"), + "zh-TW": () => import("dayjs/locale/zh-tw"), +}; diff --git a/apps/client/src/libs/lingui.ts b/apps/client/src/libs/lingui.ts index d57e078a..0826f9dc 100644 --- a/apps/client/src/libs/lingui.ts +++ b/apps/client/src/libs/lingui.ts @@ -1,8 +1,22 @@ import { i18n } from "@lingui/core"; +import dayjs from "dayjs"; + +import { dayjsLocales } from "./dayjs"; export const defaultLocale = "en-US"; export async function dynamicActivate(locale: string) { - const { messages } = await import(`../locales/${locale}/messages.po`); - i18n.loadAndActivate({ locale, messages }); + try { + const { messages } = await import(`../locales/${locale}/messages.po`); + + if (messages) { + i18n.loadAndActivate({ locale, messages }); + } + + if (dayjsLocales[locale]) { + dayjs.locale(await dayjsLocales[locale]()); + } + } catch (error) { + console.error(error); + } } diff --git a/apps/client/src/locales/af-ZA/messages.po b/apps/client/src/locales/af-ZA/messages.po index d5e6a870..c46ac83b 100644 --- a/apps/client/src/locales/af-ZA/messages.po +++ b/apps/client/src/locales/af-ZA/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: af\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/am-ET/messages.po b/apps/client/src/locales/am-ET/messages.po index f5f54fcf..e7d7227c 100644 --- a/apps/client/src/locales/am-ET/messages.po +++ b/apps/client/src/locales/am-ET/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: am\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Amharic\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ar-SA/messages.po b/apps/client/src/locales/ar-SA/messages.po index b693ac96..7ce7e4c3 100644 --- a/apps/client/src/locales/ar-SA/messages.po +++ b/apps/client/src/locales/ar-SA/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ar\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Plural-Forms: nplurals=6; plural=(n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/bg-BG/messages.po b/apps/client/src/locales/bg-BG/messages.po index 840976cb..2fb98725 100644 --- a/apps/client/src/locales/bg-BG/messages.po +++ b/apps/client/src/locales/bg-BG/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bg\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/bn-BD/messages.po b/apps/client/src/locales/bn-BD/messages.po index b9a18589..504e29cd 100644 --- a/apps/client/src/locales/bn-BD/messages.po +++ b/apps/client/src/locales/bn-BD/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: bn\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Bengali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ca-ES/messages.po b/apps/client/src/locales/ca-ES/messages.po index b581b627..65f6183a 100644 --- a/apps/client/src/locales/ca-ES/messages.po +++ b/apps/client/src/locales/ca-ES/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ca\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/cs-CZ/messages.po b/apps/client/src/locales/cs-CZ/messages.po index 061a8f84..7644f50c 100644 --- a/apps/client/src/locales/cs-CZ/messages.po +++ b/apps/client/src/locales/cs-CZ/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: cs\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Czech\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 3;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/da-DK/messages.po b/apps/client/src/locales/da-DK/messages.po index 71ea8d11..bef2470c 100644 --- a/apps/client/src/locales/da-DK/messages.po +++ b/apps/client/src/locales/da-DK/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: da\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Danish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/de-DE/messages.po b/apps/client/src/locales/de-DE/messages.po index e54cebfd..caced2f0 100644 --- a/apps/client/src/locales/de-DE/messages.po +++ b/apps/client/src/locales/de-DE/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: de\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: German\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/el-GR/messages.po b/apps/client/src/locales/el-GR/messages.po index 52fc8bbd..294a125d 100644 --- a/apps/client/src/locales/el-GR/messages.po +++ b/apps/client/src/locales/el-GR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: el\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Greek\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/en-US/messages.po b/apps/client/src/locales/en-US/messages.po index ce898e0f..d2868d81 100644 --- a/apps/client/src/locales/en-US/messages.po +++ b/apps/client/src/locales/en-US/messages.po @@ -120,7 +120,7 @@ msgstr "Add a new section" msgid "Add New Page" msgstr "Add New Page" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "AI" @@ -238,8 +238,8 @@ msgstr "By the community, for the community." msgid "Cancel" msgstr "Cancel" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "Casual" @@ -252,7 +252,7 @@ msgstr "Center Artboard" msgid "Change Password" msgstr "Change Password" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "Change Tone" @@ -288,8 +288,8 @@ msgstr "Columns" msgid "Company" msgstr "Company" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "Confident" @@ -539,7 +539,7 @@ msgstr "Filetype" msgid "Finally," msgstr "Finally," -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "Fix Spelling & Grammar" @@ -588,8 +588,8 @@ msgstr "Found a bug, or have an idea for a new feature?" msgid "Free, forever" msgstr "Free, forever" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "Friendly" @@ -605,7 +605,7 @@ msgstr "Generate a random title for your resume" msgid "Get Started" msgstr "Get Started" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "GitHub" @@ -622,7 +622,7 @@ msgstr "Give your old resume a new name." msgid "Go to Dashboard" msgstr "Go to Dashboard" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "Google" @@ -704,7 +704,7 @@ msgstr "Import" msgid "Import an existing resume" msgstr "Import an existing resume" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "Improve Writing" @@ -949,6 +949,7 @@ msgstr "Notes" msgid "One-Time Password" msgstr "One-Time Password" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "Powered by <0>Simple Icons" msgid "Primary Color" msgstr "Primary Color" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "Professional" diff --git a/apps/client/src/locales/es-ES/messages.po b/apps/client/src/locales/es-ES/messages.po index 2f9eb74e..b461ee6b 100644 --- a/apps/client/src/locales/es-ES/messages.po +++ b/apps/client/src/locales/es-ES/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: es\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/fa-IR/messages.po b/apps/client/src/locales/fa-IR/messages.po index 4284e670..1b0e7b6f 100644 --- a/apps/client/src/locales/fa-IR/messages.po +++ b/apps/client/src/locales/fa-IR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fa\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Persian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/fi-FI/messages.po b/apps/client/src/locales/fi-FI/messages.po index 6f19aed9..dd328199 100644 --- a/apps/client/src/locales/fi-FI/messages.po +++ b/apps/client/src/locales/fi-FI/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fi\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/fr-FR/messages.po b/apps/client/src/locales/fr-FR/messages.po index 730253b5..188fb893 100644 --- a/apps/client/src/locales/fr-FR/messages.po +++ b/apps/client/src/locales/fr-FR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: fr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: French\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/he-IL/messages.po b/apps/client/src/locales/he-IL/messages.po index 730d8565..86076c53 100644 --- a/apps/client/src/locales/he-IL/messages.po +++ b/apps/client/src/locales/he-IL/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: he\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Plural-Forms: nplurals=4; plural=n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/hi-IN/messages.po b/apps/client/src/locales/hi-IN/messages.po index 87e9017d..06cf0192 100644 --- a/apps/client/src/locales/hi-IN/messages.po +++ b/apps/client/src/locales/hi-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hi\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 09:32\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Hindi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "एक नया अनुभाग जोड़ें" msgid "Add New Page" msgstr "नया पेज जोड़ें" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "AI" @@ -162,74 +162,74 @@ msgstr "क्या आप वाकई दो-कारक प्रमाण #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:38 msgid "Are you sure you want to lock this resume?" -msgstr "" +msgstr "क्या आप वाकई इस बायोडाटा को लॉक करना चाहते हैं?" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:39 msgid "Are you sure you want to unlock this resume?" -msgstr "" +msgstr "क्या आप वाकई इस बायोडाटा को अनलॉक करना चाहते हैं?" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Are you sure?" -msgstr "" +msgstr "क्या आपको यकीन है?" #. For example, Computer Science or Business Administration #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:73 msgid "Area of Study" -msgstr "" +msgstr "अध्ययन का क्षेत्र" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:86 msgid "Aspect Ratio" -msgstr "" +msgstr "आकार अनुपात" #: apps/client/src/pages/home/sections/features/index.tsx:50 msgid "Available in 20+ languages" -msgstr "" +msgstr "20+ भाषाओं में उपलब्ध है" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:53 msgid "Awarder" -msgstr "" +msgstr "पुरस्कार देने वाला" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:236 msgid "Back" -msgstr "" +msgstr "पीछे" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:73 msgid "Background Color" -msgstr "" +msgstr "पृष्ठभूमि रंग" #: apps/client/src/pages/auth/backup-otp/page.tsx:74 msgid "Backup Code" -msgstr "" +msgstr "बैकअप कोड" #: apps/client/src/pages/auth/backup-otp/page.tsx:79 msgid "Backup Codes may contain only lowercase letters or numbers, and must be exactly 10 characters." -msgstr "" +msgstr "बैकअप कोड में केवल छोटे अक्षर या संख्याएँ हो सकती हैं, और बिल्कुल 10 अक्षर होने चाहिए।" #: apps/client/src/pages/builder/sidebars/left/index.tsx:56 msgctxt "The basics section of a resume consists of User's Picture, Full Name, Location etc." msgid "Basics" -msgstr "" +msgstr "बुनियादी" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:21 msgid "Basics" -msgstr "" +msgstr "बुनियादी" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:196 msgid "Border" -msgstr "" +msgstr "सीमा" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:129 msgid "Border Radius" -msgstr "" +msgstr "सीमा त्रिज्या" #: apps/client/src/pages/public/page.tsx:77 msgid "Built with" -msgstr "" +msgstr "के साथ निर्मित" #: apps/client/src/components/copyright.tsx:27 #: apps/client/src/pages/home/sections/contributors/index.tsx:20 msgid "By the community, for the community." -msgstr "" +msgstr "समुदाय द्वारा, समुदाय के लिए." #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:122 #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:49 @@ -238,134 +238,134 @@ msgstr "" msgid "Cancel" msgstr "रद्द करें" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" -msgstr "" +msgstr "साधारण" #: apps/client/src/pages/builder/_components/toolbar.tsx:89 msgid "Center Artboard" -msgstr "" +msgstr "केंद्र आर्टबोर्ड" #: apps/client/src/pages/auth/reset-password/page.tsx:99 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:121 msgid "Change Password" -msgstr "" +msgstr "पासवर्ड बदलिए" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" -msgstr "" +msgstr "तान बदलें" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:185 msgid "Changed your mind about the name? Give it a new one." -msgstr "" +msgstr "नाम के बारे में आपका मन बदल गया? इसे नया दे दो." #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:69 msgid "Check your email for the confirmation link to update your email address." -msgstr "" +msgstr "अपना ईमेल पता अपडेट करने के लिए पुष्टिकरण लिंक के लिए अपना ईमेल जांचें।" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:149 msgid "Circle" -msgstr "" +msgstr "गोला" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:242 msgid "Close" -msgstr "" +msgstr "बंद करे" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:199 msgid "Code" -msgstr "" +msgstr "कोड" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:50 msgid "Code must be exactly 6 digits long." -msgstr "" +msgstr "कोड बिल्कुल 6 अंक लंबा होना चाहिए." #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:108 msgid "Columns" -msgstr "" +msgstr "कॉलम" #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:39 msgid "Company" -msgstr "" +msgstr "कंपनी" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" -msgstr "" +msgstr "आत्मविश्वासी" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:98 msgid "Confirm New Password" -msgstr "" +msgstr "नए पासवर्ड की पुष्टि करें" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:232 #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:239 msgid "Continue" -msgstr "" +msgstr "जारी रखें" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:93 msgid "Copy" -msgstr "" +msgstr "कॉपी करें" #: apps/client/src/pages/builder/_components/toolbar.tsx:123 msgid "Copy Link to Resume" -msgstr "" +msgstr "फिर से शुरू करने के लिए लिंक कॉपी करें" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:78 msgid "Copy to Clipboard" -msgstr "" +msgstr "क्लिपबोर्ड पर कॉपी करें" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:158 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:239 msgid "Create" -msgstr "" +msgstr "बनाएँ" #: apps/client/src/pages/auth/register/page.tsx:59 #: apps/client/src/pages/auth/register/page.tsx:64 msgid "Create a new account" -msgstr "" +msgstr "एक नया खाता बनाएँ" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:146 msgid "Create a new item" -msgstr "" +msgstr "एक नया आइटम बनाएं" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:177 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:24 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:19 msgid "Create a new resume" -msgstr "" +msgstr "नमूना बायोडाटा बनाएं" #: apps/client/src/pages/auth/login/page.tsx:60 msgctxt "This is a link to create a new account" msgid "Create one now" -msgstr "" +msgstr "अभी एक बनाएं" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:252 msgid "Create Sample Resume" -msgstr "" +msgstr "नमूना बायोडाटा बनाएं" #: apps/client/src/pages/home/sections/features/index.tsx:61 msgid "Custom resume sections" -msgstr "" +msgstr "कस्टम बायोडाटा अनुभाग" #: apps/client/src/stores/resume.ts:45 msgid "Custom Section" -msgstr "" +msgstr "कस्टम अनुभाग" #: apps/client/src/pages/home/sections/features/index.tsx:59 msgid "Customisable colour palettes" -msgstr "" +msgstr "अनुकूलन योग्य रंग पट्टियाँ" #: apps/client/src/pages/home/sections/features/index.tsx:60 msgid "Customisable layouts" -msgstr "" +msgstr "अनुकूलन योग्य लेआउट" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:62 msgid "Danger Zone" -msgstr "" +msgstr "खतरनाक क्षेत्र" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:83 msgid "Dark" -msgstr "" +msgstr "गहरी" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:67 @@ -376,7 +376,7 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:67 msgid "Date" -msgstr "" +msgstr "दिनांक" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:124 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:157 @@ -384,12 +384,12 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:106 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:159 msgid "Delete" -msgstr "" +msgstr "हटाएं" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:79 #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:94 msgid "Delete Account" -msgstr "" +msgstr "खाता हटाएँ|" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:67 #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:50 @@ -397,58 +397,58 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:53 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:55 msgid "Description" -msgstr "" +msgstr "विवरण" #: apps/client/src/pages/home/sections/features/index.tsx:57 msgid "Design single/multi page resumes" -msgstr "" +msgstr "सिंगल/मल्टी पेज बायोडाटा डिज़ाइन करें" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:137 msgid "Disable" -msgstr "" +msgstr "अक्षम करें" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:155 msgid "Disable 2FA" -msgstr "" +msgstr "2FA निलम्बित करें" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:302 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:219 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:141 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:124 msgid "Discard" -msgstr "" +msgstr "रद्द करें" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:110 msgid "Documentation" -msgstr "" +msgstr "आलेख" #: apps/client/src/pages/auth/login/page.tsx:57 msgid "Don't have an account?" -msgstr "" +msgstr "आपका खाता नहीं है?" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:88 msgid "Don't know where to begin? Hit the docs!" -msgstr "" +msgstr "पता नहीं कहाँ से शुरू करें? दस्तावेज़ पढ़ें" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:114 msgid "Don't see your language? <0>Help translate the app." -msgstr "" +msgstr "अपनी भाषा नहीं देखते? <0>ऐप का अनुवाद करने में सहायता करें।" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:40 msgid "Donate to Reactive Resume" -msgstr "" +msgstr "रिएक्टिव रेज़्यूमे के लिए दान करें" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:56 msgid "Download a JSON snapshot of your resume. This file can be used to import your resume in the future, or can even be shared with others to collaborate." -msgstr "" +msgstr "अपने बायोडाटा का JSON स्नैपशॉट डाउनलोड करें। इस फ़ाइल का उपयोग भविष्य में आपका बायोडाटा आयात करने के लिए किया जा सकता है, या सहयोग करने के लिए इसे दूसरों के साथ साझा भी किया जा सकता है।" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:74 msgid "Download a PDF of your resume. This file can be used to print your resume, send it to recruiters, or upload on job portals." -msgstr "" +msgstr "अपने बायोडाटा का एक पीडीएफ डाउनलोड करें। इस फ़ाइल का उपयोग आपके बायोडाटा को प्रिंट करने, भर्तीकर्ताओं को भेजने या नौकरी पोर्टल पर अपलोड करने के लिए किया जा सकता है।" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:58 msgid "Downloads" -msgstr "" +msgstr "डाउनलोड" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:160 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:241 @@ -456,15 +456,15 @@ msgstr "" #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:95 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:154 msgid "Duplicate" -msgstr "" +msgstr "प्रतिरूप" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:148 msgid "Duplicate an existing item" -msgstr "" +msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:179 msgid "Duplicate an existing resume" -msgstr "" +msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:89 msgid "Edit" @@ -472,7 +472,7 @@ msgstr "एडिट करें" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:174 msgid "Effects" -msgstr "" +msgstr "प्रभाव" #: apps/client/src/pages/auth/forgot-password/page.tsx:79 #: apps/client/src/pages/auth/login/page.tsx:79 @@ -480,427 +480,427 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:50 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:180 msgid "Email" -msgstr "" +msgstr "ई-मेल" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:159 msgid "Enable 2FA" -msgstr "" +msgstr "2FA चालू करें" #: apps/client/src/pages/auth/reset-password/page.tsx:67 msgid "Enter a new password below, and make sure it's secure." -msgstr "" +msgstr "नीचे एक नया पासवर्ड दर्ज करें और सुनिश्चित करें कि यह सुरक्षित है।" #: apps/client/src/pages/auth/backup-otp/page.tsx:58 msgid "Enter one of the 10 backup codes you saved when you enabled two-factor authentication." -msgstr "" +msgstr "दो-कारक प्रमाणीकरण सक्षम करते समय आपके द्वारा सहेजे गए 10 बैकअप कोड में से एक दर्ज करें।" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:168 msgid "Enter the 6-digit code from your authenticator app to verify that 2FA has been setup correctly." -msgstr "" +msgstr "यह सत्यापित करने के लिए कि 2FA सही ढंग से सेटअप किया गया है, अपने प्रमाणक ऐप से 6-अंकीय कोड दर्ज करें।" #: apps/client/src/pages/auth/verify-otp/page.tsx:60 msgid "Enter the one-time password provided by your authenticator app below." -msgstr "" +msgstr "नीचे आपके प्रमाणक ऐप द्वारा प्रदान किया गया वन-टाइम पासवर्ड दर्ज करें।" #: apps/client/src/pages/auth/forgot-password/page.tsx:67 msgid "Enter your email address and we will send you a link to reset your password if the account exists." -msgstr "" +msgstr "अपना ईमेल पता दर्ज करें और यदि खाता मौजूद है तो हम आपको अपना पासवर्ड रीसेट करने के लिए एक लिंक भेजेंगे।" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:283 msgid "Errors" -msgstr "" +msgstr "त्रुटि" #: apps/client/src/pages/home/sections/support/index.tsx:78 msgid "Even if you're not in a position to contribute financially, you can still make a difference by giving the GitHub repository a star, spreading the word to your friends, or dropping a quick message to let me know how Reactive Resume has helped you. Your feedback and support are always welcome and much appreciated!" -msgstr "" +msgstr "भले ही आप वित्तीय रूप से योगदान करने की स्थिति में नहीं हैं, फिर भी आप GitHub रिपॉजिटरी को एक स्टार देकर, अपने दोस्तों तक बात फैलाकर, या मुझे यह बताने के लिए एक त्वरित संदेश भेजकर अंतर ला सकते हैं कि रिएक्टिव रेज़्यूमे ने आपकी कैसे मदद की है। आपकी प्रतिक्रिया और समर्थन का हमेशा स्वागत है और बहुत सराहना की जाती है!" #: apps/client/src/pages/home/sections/templates/index.tsx:12 msgid "Explore the templates available in Reactive Resume and view the resumes crafted with them. They could also serve as examples to help guide the creation of your next resume." -msgstr "" +msgstr "रिएक्टिव रेज़्यूमे में उपलब्ध टेम्पलेट्स का अन्वेषण करें और उनके साथ तैयार किए गए रेज़्यूमे देखें। वे आपके अगले बायोडाटा के निर्माण में मार्गदर्शन के लिए उदाहरण के रूप में भी काम कर सकते हैं।" #: apps/client/src/pages/builder/sidebars/right/index.tsx:79 #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:40 msgid "Export" -msgstr "" +msgstr "निर्यात" #: apps/client/src/pages/builder/_components/toolbar.tsx:129 msgid "Export as PDF" -msgstr "" +msgstr "PDF जैसा निर्यात करें" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:255 msgid "File" -msgstr "" +msgstr "फ़ाइल" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:221 msgid "Filetype" -msgstr "" +msgstr "फाइल का प्रकार" #: apps/client/src/pages/home/sections/hero/index.tsx:34 msgid "Finally," -msgstr "" +msgstr "अंत में," -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" -msgstr "" +msgstr "वर्तनी और व्याकरण ठीक करें" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:94 msgid "Font Family" -msgstr "" +msgstr "फ़ॉन्ट फ़ैमिली" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:135 msgid "Font Size" -msgstr "" +msgstr "फ़ॉन्ट आकार" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:109 msgid "Font Subset" -msgstr "" +msgstr "फ़ॉन्ट उपसमुच्चय" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:121 msgid "Font Variants" -msgstr "" +msgstr "फ़ॉन्ट प्रकार" #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:30 msgid "For example, information regarding which companies you sent this resume to or the links to the job descriptions can be noted down here." -msgstr "" +msgstr "उदाहरण के लिए, आपने किन कंपनियों को यह बायोडाटा भेजा है, इसकी जानकारी या नौकरी विवरण के लिंक यहां नोट किए जा सकते हैं।" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:107 msgid "Forget" -msgstr "" +msgstr "हटाएं" #: apps/client/src/pages/auth/login/page.tsx:115 msgid "Forgot Password?" -msgstr "" +msgstr "पासवर्ड भूल गए?" #: apps/client/src/pages/auth/forgot-password/page.tsx:65 msgid "Forgot your password?" -msgstr "" +msgstr "पासवर्ड भूल गए हैं?" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:32 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:40 msgid "Format" -msgstr "" +msgstr "फॉर्मेट" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:49 msgid "Found a bug, or have an idea for a new feature?" -msgstr "" +msgstr "कोई बग मिला, या किसी नई सुविधा के बारे में कोई विचार है?" #: apps/client/src/pages/home/sections/features/index.tsx:45 msgid "Free, forever" -msgstr "" +msgstr "हमेशा के लिए मुफ़्त" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" -msgstr "" +msgstr "मित्रतापूर्ण" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 msgid "Full Name" -msgstr "" +msgstr "पूरा नाम" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 msgid "Generate a random title for your resume" -msgstr "" +msgstr "अपने बायोडाटा के लिए एक यादृच्छिक शीर्षक बनाएं" #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 msgid "Get Started" -msgstr "" +msgstr "प्रारंभ करें" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" -msgstr "" +msgstr "गिटहब" #: apps/client/src/pages/home/sections/statistics/index.tsx:12 msgid "GitHub Stars" -msgstr "" +msgstr "गिटहब सितारे" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:186 msgid "Give your old resume a new name." -msgstr "" +msgstr "अपने पुराने बायोडाटा को नया नाम दें।" #: apps/client/src/pages/auth/verify-email/page.tsx:67 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 msgid "Go to Dashboard" -msgstr "" +msgstr "डैशबोर्ड पर जाएँ" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" -msgstr "" +msgstr "गूगल" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:207 msgid "Grayscale" -msgstr "" +msgstr "ग्रेस्केल" #: apps/client/src/pages/dashboard/resumes/page.tsx:41 msgid "Grid" -msgstr "" +msgstr "ग्रिड" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 msgid "Headline" -msgstr "" +msgstr "शीर्षक" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:106 msgid "Here, you can update your account information such as your profile picture, name and username." -msgstr "" +msgstr "यहां, आप अपने खाते की जानकारी जैसे अपनी प्रोफ़ाइल तस्वीर, नाम और उपयोगकर्ता नाम अपडेट कर सकते हैं।" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:63 msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" +msgstr "यहां, आप अपने अनुभव को अनुकूलित और वैयक्तिकृत करने के लिए अपनी प्रोफ़ाइल को अपडेट कर सकते हैं।" #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185 msgid "Hidden" -msgstr "" +msgstr "छुपा हुआ" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78 msgid "Hide" -msgstr "" +msgstr "छुपायें" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179 msgid "Hide Icons" -msgstr "" +msgstr "ऑइकन छुपायें" #: apps/client/src/pages/auth/login/page.tsx:99 #: apps/client/src/pages/auth/register/page.tsx:155 #: apps/client/src/pages/auth/reset-password/page.tsx:88 msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" +msgstr "<0>Ctrl दबाए रखें अपना पासवर्ड अस्थायी रूप से प्रदर्शित करने के लिए।" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:100 msgid "Horizontal" -msgstr "" +msgstr "क्षैतिज" #: apps/client/src/pages/home/sections/features/index.tsx:66 msgid "Host your resume publicly" -msgstr "" +msgstr "अपना बायोडाटा सार्वजनिक रूप से होस्ट करें" #: apps/client/src/pages/home/sections/testimonials/index.tsx:70 msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." -msgstr "" +msgstr "मुझे हमेशा रिएक्टिव रेज़्यूमे के उपयोगकर्ताओं से प्रतिक्रिया या समर्थन सुनना अच्छा लगता है। यहां कुछ संदेश हैं जो मुझे प्राप्त हुए हैं। यदि आपके पास कोई प्रतिक्रिया है, तो बेझिझक मुझे <0>{email} पर एक ईमेल भेजें." #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 msgid "Icon" -msgstr "" +msgstr "आइकॉन" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:47 msgid "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form." -msgstr "" +msgstr "यदि इस ऐप ने आपको नौकरी खोजने में मदद की है, तो <0>इस संपर्क फ़ॉर्म के माध्यम से मुझसे संपर्क करके मुझे बताएं." #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:126 msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" +msgstr "यदि आप दो-कारक प्रमाणीकरण अक्षम करते हैं, तो लॉग इन करते समय आपको सत्यापन कोड दर्ज करने की आवश्यकता नहीं होगी।" #: apps/client/src/pages/home/sections/support/index.tsx:59 msgid "If you're multilingual, we'd love your help in bringing the app to more languages and communities. Don't worry if you don't see your language on the list - just give me a shout-out on GitHub, and I'll make sure to include it. Ready to get started? Jump into translation over at Crowdin by clicking the link below." -msgstr "" +msgstr "यदि आप बहुभाषी हैं, तो हमें ऐप को अधिक भाषाओं और समुदायों तक लाने में आपकी मदद पसंद आएगी। यदि आप सूची में अपनी भाषा नहीं देखते हैं तो चिंता न करें - बस GitHub पर मुझे बताएं, और मैं इसे शामिल करना सुनिश्चित करूंगा। आरंभ करने के लिए तैयार हैं? नीचे दिए गए लिंक पर क्लिक करके क्राउडिन पर अनुवाद शुरू करें।" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:309 msgid "Import" -msgstr "" +msgstr "आयात" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:208 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:24 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:18 msgid "Import an existing resume" -msgstr "" +msgstr "मौजूदा बायोडाटा आयात करें" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" -msgstr "" +msgstr "लेखन में सुधार करें" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:186 msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" +msgstr "यदि आप इस क्यूआर कोड को स्कैन करने में असमर्थ हैं, तो आप इस लिंक को अपने प्रमाणक ऐप में कॉपी-पेस्ट भी कर सकते हैं।" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70 msgid "In this section, you can change your password and enable/disable two-factor authentication." -msgstr "" +msgstr "इस अनुभाग में, आप अपना पासवर्ड बदल सकते हैं और दो-कारक प्रमाणीकरण को सक्षम/अक्षम कर सकते हैं।" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:64 msgid "In this section, you can delete your account and all the data associated to your user, but please keep in mind that <0>this action is irreversible." -msgstr "" +msgstr "इस अनुभाग में, आप अपना खाता और अपने उपयोगकर्ता से जुड़े सभी डेटा को हटा सकते हैं, लेकिन कृपया ध्यान रखें कि <0>यह कार्रवाई अपरिवर्तनीय है." #: apps/client/src/pages/builder/sidebars/right/index.tsx:83 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122 msgid "Information" -msgstr "" +msgstr "जानकारी" #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 msgid "Institution" -msgstr "" +msgstr "संस्था" #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 msgid "Issuer" -msgstr "" +msgstr "ज़ारीकर्ता" #: apps/client/src/services/errors/translate-error.ts:7 msgid "It doesn't look like a user exists with the credentials you provided." -msgstr "" +msgstr "ऐसा नहीं लगता कि कोई उपयोगकर्ता आपके द्वारा प्रदान किए गए क्रेडेंशियल्स के साथ मौजूद है।" #: apps/client/src/services/errors/translate-error.ts:27 msgid "It looks like the backup code you provided is invalid or used. Please try again." -msgstr "" +msgstr "ऐसा लगता है कि आपके द्वारा प्रदान किया गया बैकअप कोड अमान्य है या उपयोग किया गया है। कृपया पुन: प्रयास करें।" #: apps/client/src/services/errors/translate-error.ts:15 msgid "It looks like the reset token you provided is invalid. Please try restarting the password reset process again." -msgstr "" +msgstr "ऐसा लगता है कि आपके द्वारा प्रदान किया गया रीसेट टोकन अमान्य है। कृपया पासवर्ड रीसेट प्रक्रिया को दोबारा शुरू करने का प्रयास करें।" #: apps/client/src/services/errors/translate-error.ts:33 msgid "It looks like the resume you're looking for doesn't exist." -msgstr "" +msgstr "ऐसा लगता है कि आप जिस बायोडाटा की तलाश कर रहे हैं वह मौजूद नहीं है।" #: apps/client/src/services/errors/translate-error.ts:25 msgid "It looks like the two-factor authentication code you provided is invalid. Please try again." -msgstr "" +msgstr "ऐसा लगता है कि आपके द्वारा प्रदान किया गया दो-कारक प्रमाणीकरण कोड अमान्य है। कृपया पुन: प्रयास करें।" #: apps/client/src/services/errors/translate-error.ts:17 msgid "It looks like the verification token you provided is invalid. Please try restarting the verification process again." -msgstr "" +msgstr "ऐसा लगता है कि आपके द्वारा प्रदान किया गया रीसेट टोकन अमान्य है। कृपया पासवर्ड रीसेट प्रक्रिया को दोबारा शुरू करने का प्रयास करें।" #: apps/client/src/services/errors/translate-error.ts:19 msgid "It looks like your email address has already been verified." -msgstr "" +msgstr "ऐसा लगता है कि आपका ईमेल पता पहले ही सत्यापित हो चुका है।" #: apps/client/src/pages/auth/register/page.tsx:90 msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." msgid "John Doe" -msgstr "" +msgstr "जॉन डो" #: apps/client/src/pages/auth/register/page.tsx:111 msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." msgid "john.doe" -msgstr "" +msgstr "जॉन डो" #: apps/client/src/pages/auth/register/page.tsx:132 msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish." msgid "john.doe@example.com" -msgstr "" +msgstr "john.doe@example.com" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 msgid "JSON" -msgstr "" +msgstr "जेसन" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 msgid "Keywords" -msgstr "" +msgstr "खोजशब्द:" #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 msgid "Label" -msgstr "" +msgstr "लेबल" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:96 msgid "Language" -msgstr "" +msgstr "भाषा" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:116 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:121 msgid "Last updated {lastUpdated}" -msgstr "" +msgstr "अंतिम अद्यतन {lastUpdated}" #: apps/client/src/pages/builder/sidebars/right/index.tsx:65 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 msgid "Layout" -msgstr "" +msgstr "लेआउट" #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:39 msgid "Learn more" -msgstr "" +msgstr "अधिक जानें" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:44 msgid "Letter" -msgstr "" +msgstr "अक्षर" #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:64 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:69 msgid "Level" -msgstr "" +msgstr "स्तर" #: apps/client/src/components/copyright.tsx:16 msgid "Licensed under <0>MIT" -msgstr "" +msgstr "<0>एमआईटी के तहत लाइसेंस प्राप्त" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:82 msgid "Light" -msgstr "" +msgstr "हल्का रंग" #: apps/client/src/pages/home/sections/features/index.tsx:68 msgid "Light or dark theme" -msgstr "" +msgstr "प्रकाश या अंधेरा थीम" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:152 msgid "Line Height" -msgstr "" +msgstr "पंक्ति ऊँचाई" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:29 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:23 msgid "LinkedIn, JSON Resume, etc." -msgstr "" +msgstr "लिंक्डइन, JSON बायोडाटा, आदि।" #: apps/client/src/pages/dashboard/resumes/page.tsx:45 msgid "List" -msgstr "" +msgstr "सूची" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:95 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:86 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:81 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:83 msgid "Location" -msgstr "" +msgstr "स्थान" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:51 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:142 msgid "Lock" -msgstr "" +msgstr "लॉक करें" #: apps/client/src/pages/home/sections/features/index.tsx:63 msgid "Lock a resume to prevent editing" -msgstr "" +msgstr "संपादन को रोकने के लिए बायोडाटा को लॉक करें" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:43 msgid "Locking a resume will prevent any further changes to it. This is useful when you have already shared your resume with someone and you don't want to accidentally make any changes to it." -msgstr "" +msgstr "बायोडाटा को लॉक करने से उसमें कोई और बदलाव नहीं हो सकेगा। यह तब उपयोगी होता है जब आपने अपना बायोडाटा पहले ही किसी के साथ साझा कर दिया हो और आप गलती से उसमें कोई बदलाव नहीं करना चाहते हों।" #: apps/client/src/components/user-options.tsx:34 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:23 msgid "Logout" -msgstr "" +msgstr "लॉगआउट" #: apps/client/src/pages/auth/verify-otp/page.tsx:64 msgid "Lost your device?" -msgstr "" +msgstr "क्या आपका उपकरण खो गया?" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:253 msgid "Main" -msgstr "" +msgstr "मुख्‍य" #: apps/client/src/pages/home/sections/features/index.tsx:58 msgid "Manage multiple resumes" -msgstr "" +msgstr "एकाधिक बायोडाटा प्रबंधित करें" #. The month and year should be uniform across all languages. #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:71 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:69 #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:69 msgid "March 2023" -msgstr "" +msgstr "मार्च 2023" #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:112 #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:74 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:69 msgid "March 2023 - Present" -msgstr "" +msgstr "मार्च 2023 - वर्तमान" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:50 msgid "Margin" -msgstr "" +msgstr "अंतर" #: apps/client/src/pages/home/sections/features/index.tsx:47 msgid "MIT License" -msgstr "" +msgstr "मआईटी लाईसन्स" #: apps/client/src/pages/auth/register/page.tsx:87 #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:53 @@ -913,181 +913,182 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:43 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:152 msgid "Name" -msgstr "" +msgstr "नाम" #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:39 msgctxt "Name of the Certification" msgid "Name" -msgstr "" +msgstr "नाम" #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:39 msgid "Network" -msgstr "" +msgstr "नेटवर्क" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:85 msgid "New Password" -msgstr "" +msgstr "नया पासवर्ड" #: apps/client/src/components/locale-switch.tsx:43 msgid "No results found" -msgstr "" +msgstr "कोई परिणाम नहीं मिला" #: apps/client/src/pages/home/sections/features/index.tsx:48 msgid "No user tracking or advertising" -msgstr "" +msgstr "कोई उपयोगकर्ता ट्रैकिंग या विज्ञापन नहीं" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:131 msgid "Note: This will make your account less secure." -msgstr "" +msgstr "नोट: इससे आपका खाता कम सुरक्षित हो जाएगा." #: apps/client/src/pages/builder/sidebars/right/index.tsx:80 #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:17 msgid "Notes" -msgstr "" +msgstr "टिप्पणियाँ" #: apps/client/src/pages/auth/verify-otp/page.tsx:82 msgid "One-Time Password" -msgstr "" +msgstr "एक बारी पासवर्ड" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 msgid "Oops, the server returned an error." -msgstr "" +msgstr "ओह, सर्वर ने एक त्रुटि लौटा दी।" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:124 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:77 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:146 msgid "Open" -msgstr "" +msgstr "खोलें" #: apps/client/src/pages/home/sections/features/index.tsx:46 msgid "Open Source" -msgstr "" +msgstr "खुला स्त्रोत" #: apps/client/src/services/openai/change-tone.ts:30 #: apps/client/src/services/openai/fix-grammar.ts:28 #: apps/client/src/services/openai/improve-writing.ts:28 msgid "OpenAI did not return any choices for your text." -msgstr "" +msgstr "OpenAI ने आपके टेक्स्ट के लिए कोई विकल्प नहीं लौटाया।" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:52 #: apps/client/src/pages/home/sections/features/index.tsx:51 msgid "OpenAI Integration" -msgstr "" +msgstr "OpenAI एकीकरण" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:67 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:169 msgid "Options" -msgstr "" +msgstr "विकल्प" #: apps/client/src/pages/auth/layout.tsx:39 msgctxt "The user can either login with email/password, or continue with GitHub or Google." msgid "or continue with" -msgstr "" +msgstr "या जारी रखें" #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:39 msgid "Organization" -msgstr "" +msgstr "संगठन" #: apps/client/src/pages/builder/sidebars/right/index.tsx:72 #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:26 msgid "Page" -msgstr "" +msgstr "पृष्ठ" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:237 msgid "Page {0}" -msgstr "" +msgstr "पृष्ठ {0}" #: apps/client/src/pages/auth/login/page.tsx:94 #: apps/client/src/pages/auth/register/page.tsx:150 #: apps/client/src/pages/auth/reset-password/page.tsx:83 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:76 msgid "Password" -msgstr "" +msgstr "पासवर्ड" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:72 msgid "PDF" -msgstr "" +msgstr "पीडीएफ" #: apps/client/src/pages/home/sections/features/index.tsx:62 msgid "Personal notes for each resume" -msgstr "" +msgstr "प्रत्येक बायोडाटा के लिए व्यक्तिगत नोट्स" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:73 msgid "Phone" -msgstr "" +msgstr "फ़ोन" #: apps/client/src/pages/auth/layout.tsx:68 msgid "Photograph by Patrick Tomasso" -msgstr "" +msgstr "फ़ोटोग्राफ़ पैट्रिक टोमासो द्वारा" #: apps/client/src/pages/home/sections/features/index.tsx:65 msgid "Pick any font from Google Fonts" -msgstr "" +msgstr "Google फ़ॉन्ट्स से कोई भी फ़ॉन्ट चुनें" #: apps/client/src/pages/builder/sidebars/left/sections/picture/section.tsx:69 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:120 msgid "Picture" -msgstr "" +msgstr "चित्र" #: apps/client/src/pages/auth/verify-email/page.tsx:59 msgid "Please note that this step is completely optional." -msgstr "" +msgstr "कृपया ध्यान दें कि यह चरण पूरी तरह से वैकल्पिक है।" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:225 msgid "Please select a file type" -msgstr "" +msgstr "कृपया एक फाइल चुनें" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:226 msgid "Please store your backup codes in a secure location. You can use one of these one-time use codes to login in case you lose access to your authenticator app." -msgstr "" +msgstr "कृपया अपने बैकअप कोड को सुरक्षित स्थान पर संग्रहीत करें। यदि आप अपने प्रमाणक ऐप तक पहुंच खो देते हैं तो आप लॉगिन करने के लिए इन एक बार उपयोग कोड में से किसी एक का उपयोग कर सकते हैं।" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:106 msgid "Portrait" -msgstr "" +msgstr "व्यक्तिचित्र" #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 msgctxt "Position held at a company, for example, Software Engineer" msgid "Position" -msgstr "" +msgstr "स्थान" #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:53 msgid "Position" -msgstr "" +msgstr "स्थान" #: apps/client/src/pages/home/sections/features/index.tsx:96 msgid "Powered by" -msgstr "" +msgstr "द्वारा संचालित" #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 msgid "Powered by <0>Simple Icons" -msgstr "" +msgstr "<0>सिंपल आइकॉन द्वारा संचालित" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 msgid "Primary Color" -msgstr "" +msgstr "प्राथमिक रंग" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" -msgstr "" +msgstr "प्रोफेशनल" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:61 msgid "Profile" -msgstr "" +msgstr "प्रोफ़ाइल" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 msgid "Public" -msgstr "" +msgstr "सार्वजनिक" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 msgid "Publisher" -msgstr "" +msgstr "प्रकाशक" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69 msgid "Raise an issue" -msgstr "" +msgstr "एक मुद्दा उठाओ" #: apps/client/src/components/copyright.tsx:38 #: apps/client/src/pages/auth/backup-otp/page.tsx:51 @@ -1105,254 +1106,254 @@ msgstr "" #: apps/client/src/pages/public/page.tsx:57 #: apps/client/src/pages/public/page.tsx:79 msgid "Reactive Resume" -msgstr "" +msgstr "रिएक्टिव रेज़्यूमे" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 msgid "Reactive Resume has helped people land jobs at these great companies:" -msgstr "" +msgstr "रिएक्टिव रेज़्यूमे ने लोगों को इन महान कंपनियों में नौकरियां पाने में मदद की है:" #: apps/client/src/pages/home/sections/support/index.tsx:12 msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe." -msgstr "" +msgstr "रिएक्टिव रेज़्यूमे एक स्वतंत्र और ओपन-सोर्स प्रोजेक्ट है जिसे ज्यादातर मेरे द्वारा तैयार किया गया है, और आपके समर्थन की बहुत सराहना की जाएगी। यदि आप योगदान करने के इच्छुक हैं, और यदि आप इसे वहन कर सकते हैं, तो किसी भी सूचीबद्ध प्लेटफ़ॉर्म के माध्यम से दान करने पर विचार करें। इसके अतिरिक्त, ओपन कलेक्टिव के माध्यम से रिएक्टिव रेज़्यूमे में दान कर-मुक्त है, क्योंकि परियोजना को ओपन कलेक्टिव यूरोप द्वारा वित्तीय रूप से होस्ट किया गया है।" #: apps/client/src/pages/home/sections/features/index.tsx:107 msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection." -msgstr "" +msgstr "रिएक्टिव रेज़्युमे 3 वर्षों से अधिक की कड़ी मेहनत का एक जुनूनी प्रोजेक्ट है, और इसके साथ कई बार दोहराए गए विचार और विशेषताएं आती हैं जिन्हें (लगभग) पूर्णता के लिए बनाया गया है।" #: apps/client/src/pages/home/sections/contributors/index.tsx:22 msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience." -msgstr "" +msgstr "रिएक्टिव रेज़्यूमे अपने जीवंत समुदाय की बदौलत फलता-फूलता है। इस परियोजना की प्रगति का श्रेय उन असंख्य व्यक्तियों को जाता है जिन्होंने अपना समय और कौशल समर्पित किया है। नीचे, हम उन कोडर्स का जश्न मना रहे हैं जिन्होंने GitHub पर इसकी विशेषताओं को बढ़ाया है और उन भाषाविदों का जश्न मनाया है जिनके क्राउडिन पर अनुवादों ने इसे व्यापक दर्शकों के लिए सुलभ बना दिया है।" #: apps/client/src/pages/builder/_components/toolbar.tsx:63 msgid "Redo" -msgstr "" +msgstr "पुनः करें" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:129 msgid "Remove" -msgstr "" +msgstr "हटाएं" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:128 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:150 msgid "Rename" -msgstr "" +msgstr "नाम बदलें" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198 msgid "Resend email confirmation link" -msgstr "" +msgstr "ईमेल पुष्टिकरण लिंक पुनः भेजें" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:124 msgid "Reset" -msgstr "" +msgstr "रीसेट" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 msgid "Reset Layout" -msgstr "" +msgstr "लेआउट रिसेट" #: apps/client/src/pages/auth/reset-password/page.tsx:65 msgid "Reset your password" -msgstr "" +msgstr "अपना पासवर्ड रीसेट करें" #: apps/client/src/pages/auth/reset-password/page.tsx:60 msgid "Reset your Password" -msgstr "" +msgstr "अपना पासवर्ड रीसेट करें" #: apps/client/src/pages/builder/_components/toolbar.tsx:83 msgid "Reset Zoom" -msgstr "" +msgstr "ज़ूम रीसेट करें" #: apps/client/src/pages/dashboard/_components/sidebar.tsx:86 #: apps/client/src/pages/dashboard/resumes/page.tsx:20 #: apps/client/src/pages/dashboard/resumes/page.tsx:35 msgid "Resumes" -msgstr "" +msgstr "बायोडाटा" #: apps/client/src/pages/home/sections/statistics/index.tsx:14 msgid "Resumes Generated" -msgstr "" +msgstr "बायोडाटा तैयार किया गया" #: apps/client/src/pages/home/sections/features/index.tsx:105 msgid "Rich in features, not in pricing." -msgstr "" +msgstr "सुविधाओं से भरपूर, कीमत से नहीं।" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 msgid "Rounded" -msgstr "" +msgstr "गोल" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138 msgid "Save Changes" -msgstr "" +msgstr "परिवर्तन सेव करें" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:166 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" +msgstr "अपने खाते पर 2FA सेटअप करने के लिए अपने प्रमाणक ऐप से नीचे दिए गए QR कोड को स्कैन करें।" #. Score or honors for the degree, for example, CGPA or magna cum laude #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92 msgid "Score" -msgstr "" +msgstr "अंक" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 msgid "Search for a font family" -msgstr "" +msgstr "फ़ॉन्ट परिवार खोजें" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 msgid "Search for a font subset" -msgstr "" +msgstr "फ़ॉन्ट उपसमुच्चय खोजें" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 msgid "Search for a font variant" -msgstr "" +msgstr "फ़ॉन्ट प्रकार खोजें" #: apps/client/src/components/locale-switch.tsx:42 msgid "Search for a language" -msgstr "" +msgstr "एक भाषा के लिए खोज करे" #: apps/client/src/pages/home/sections/features/index.tsx:55 msgid "Secure with two-factor authentication" -msgstr "" +msgstr "दो-कारक प्रमाणीकरण के साथ सुरक्षित" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 msgid "Security" -msgstr "" +msgstr "सुरक्षा" #: apps/client/src/pages/home/sections/features/index.tsx:49 msgid "Self-host with Docker" -msgstr "" +msgstr "डॉकर के साथ स्व-मेज़बान" #: apps/client/src/pages/auth/forgot-password/page.tsx:89 msgid "Send Email" -msgstr "" +msgstr "ईमेल भेजें" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79 msgid "Send me a message" -msgstr "" +msgstr "संदेश भेजें" #: apps/client/src/components/user-options.tsx:28 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 #: apps/client/src/pages/dashboard/settings/page.tsx:16 #: apps/client/src/pages/dashboard/settings/page.tsx:26 msgid "Settings" -msgstr "" +msgstr "समायोजन" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:157 msgid "Setup two-factor authentication on your account" -msgstr "" +msgstr "अपने खाते पर दो-कारक प्रमाणीकरण सेट करें" #: apps/client/src/pages/builder/sidebars/right/index.tsx:73 #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:39 msgid "Sharing" -msgstr "" +msgstr "साझा करना" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78 msgid "Show" -msgstr "" +msgstr "दिखाएँ" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:78 msgid "Show Break Line" -msgstr "" +msgstr "ब्रेक लाइन दिखाएँ" #: apps/client/src/pages/builder/sidebars/right/sections/page.tsx:91 msgid "Show Page Numbers" -msgstr "" +msgstr "पृष्ठ क्रमांक दिखाएँ" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:254 msgid "Sidebar" -msgstr "" +msgstr "साइडबार" #: apps/client/src/pages/auth/backup-otp/page.tsx:89 #: apps/client/src/pages/auth/login/page.tsx:111 #: apps/client/src/pages/auth/verify-otp/page.tsx:92 msgid "Sign in" -msgstr "" +msgstr "साइन इन" #: apps/client/src/pages/auth/register/page.tsx:69 msgid "Sign in now" -msgstr "" +msgstr "साइन इन करें" #: apps/client/src/pages/auth/login/page.tsx:50 #: apps/client/src/pages/auth/login/page.tsx:55 msgid "Sign in to your account" -msgstr "" +msgstr "अपने अकाउंट मे साइन इन करें." #: apps/client/src/pages/home/sections/features/index.tsx:54 msgid "Sign in with Email" -msgstr "" +msgstr "ईमेल के साथ साइन इन करें" #: apps/client/src/pages/home/sections/features/index.tsx:52 msgid "Sign in with GitHub" -msgstr "" +msgstr "GitHub के साथ साइन इन करें!" #: apps/client/src/pages/home/sections/features/index.tsx:53 msgid "Sign in with Google" -msgstr "" +msgstr "गूगल से साइन इन करें" #: apps/client/src/pages/auth/register/page.tsx:166 msgid "Sign up" -msgstr "" +msgstr "रजिस्ट्रेशन" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:72 msgid "Size (in px)" -msgstr "" +msgstr "आकार (पीएक्स में)" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:227 msgid "Slug" -msgstr "" +msgstr "काउंटर" #: apps/client/src/services/errors/translate-error.ts:39 msgid "Something went wrong while grabbing a preview your resume. Please try again later or raise an issue on GitHub." -msgstr "" +msgstr "आपके बायोडाटा का पूर्वावलोकन लेते समय कुछ गलत हो गया। कृपया बाद में पुनः प्रयास करें या GitHub पर कोई समस्या उठाएँ।" #: apps/client/src/services/errors/translate-error.ts:37 msgid "Something went wrong while printing your resume. Please try again later or raise an issue on GitHub." -msgstr "" +msgstr "आपके बायोडाटा का पूर्वावलोकन लेते समय कुछ गलत हो गया। कृपया बाद में पुनः प्रयास करें या GitHub पर कोई समस्या उठाएँ।" #: apps/client/src/services/errors/translate-error.ts:41 msgid "Something went wrong while processing your request. Please try again later or raise an issue on GitHub." -msgstr "" +msgstr "आपके बायोडाटा का पूर्वावलोकन लेते समय कुछ गलत हो गया। कृपया बाद में पुनः प्रयास करें या GitHub पर कोई समस्या उठाएँ।" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:94 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:137 msgid "Square" -msgstr "" +msgstr "वर्ग" #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/create-item.tsx:24 msgid "Start building from scratch" -msgstr "" +msgstr "शून्य से निर्माण शुरू करें" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:184 msgid "Start building your resume by giving it a name." -msgstr "" +msgstr "अपना बायोडाटा एक नाम देकर बनाना शुरू करें।" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/create-card.tsx:29 msgid "Start from scratch" -msgstr "" +msgstr "शून्य से शुरू करें" #: apps/client/src/pages/builder/sidebars/right/index.tsx:76 #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:23 msgid "Statistics" -msgstr "" +msgstr "आंकड़े" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:38 msgid "Statistics are available only for public resumes." -msgstr "" +msgstr "आँकड़े केवल सार्वजनिक बायोडाटा के लिए उपलब्ध हैं।" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 msgid "Store Locally" -msgstr "" +msgstr "स्थानीय रूप से स्टोर करें" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:160 msgid "Store your backup codes securely" -msgstr "" +msgstr "अपने बैकअप कोड सुरक्षित रूप से संग्रहीत करें" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:101 msgid "Stored" -msgstr "" +msgstr "संग्रहित" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:101 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:95 @@ -1364,236 +1365,236 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/references.tsx:81 #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:109 msgid "Summary" -msgstr "" +msgstr "सारांश" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:18 msgid "Support the app by donating what you can!" -msgstr "" +msgstr "आप जो कर सकते हैं दान करके ऐप का समर्थन करें!" #: apps/client/src/pages/home/sections/support/index.tsx:9 msgid "Supporting Reactive Resume" -msgstr "" +msgstr "रिएक्टिव रेज़्यूमे समर्थन" #: apps/client/src/pages/home/sections/features/index.tsx:64 msgid "Supports A4/Letter page formats" -msgstr "" +msgstr "A4/लेटर पेज फॉर्मेट का समर्थन करता है" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:81 msgid "System" -msgstr "" +msgstr "सिस्टम" #: apps/client/src/pages/builder/sidebars/right/index.tsx:62 #: apps/client/src/pages/builder/sidebars/right/sections/template.tsx:19 msgid "Template" -msgstr "" +msgstr "खाका" #: apps/client/src/pages/home/sections/templates/index.tsx:9 msgid "Templates" -msgstr "" +msgstr "खाका" #: apps/client/src/pages/home/sections/testimonials/index.tsx:68 msgid "Testimonials" -msgstr "" +msgstr "प्रशंसापत्र" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:103 msgid "Text Color" -msgstr "" +msgstr "अक्षरों का रंग" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:25 msgid "That doesn't look like a valid OpenAI API key." -msgstr "" +msgstr "यह वैध OpenAI API कुंजी की तरह नहीं दिखता है।" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:34 msgid "The passwords you entered do not match." -msgstr "" +msgstr "आपके द्वारा दर्ज किया गया पासवर्ड मेल नहीं खाता है।" #: apps/client/src/services/errors/translate-error.ts:35 msgid "The resume you want to update is locked, please unlock if you wish to make any changes to it." -msgstr "" +msgstr "आप जिस बायोडाटा को अपडेट करना चाहते हैं वह लॉक है, यदि आप इसमें कोई बदलाव करना चाहते हैं तो कृपया अनलॉक करें।" #: apps/client/src/pages/builder/sidebars/right/index.tsx:71 #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:20 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:74 msgid "Theme" -msgstr "" +msgstr "थीम" #: apps/client/src/services/errors/translate-error.ts:29 msgid "There was an error connecting to the browser. Please make sure 'chrome' is running and reachable." -msgstr "" +msgstr "ब्राउज़र से कनेक्ट करने में त्रुटि हुई. कृपया सुनिश्चित करें कि 'क्रोम' चल रहा है और पहुंच योग्य है।" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:117 msgid "This action can be reverted by clicking on the undo button in the floating toolbar." -msgstr "" +msgstr "फ़्लोटिंग टूलबार में पूर्ववत करें बटन पर क्लिक करके इस क्रिया को पूर्ववत किया जा सकता है।" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:150 msgid "This action cannot be undone. This will permanently delete your resume and cannot be recovered." -msgstr "" +msgstr "इस एक्शन को वापस नहीं किया जा सकता। इससे आपका बायोडाटा स्थायी रूप से हट जाएगा और उसे पुनर्प्राप्त नहीं किया जा सकेगा।" #: apps/client/src/services/errors/translate-error.ts:13 msgid "This email address is associated with an OAuth account. Please sign in with your OAuth provider." -msgstr "" +msgstr "यह ईमेल पता OAuth खाते से संबद्ध है. कृपया अपने OAuth प्रदाता के साथ साइन इन करें।" #: apps/client/src/pages/builder/_components/header.tsx:53 msgid "This resume is locked, please unlock to make further changes." -msgstr "" +msgstr "यह बायोडाटा लॉक है, कृपया आगे बदलाव करने के लिए अनलॉक करें।" #: apps/client/src/pages/builder/sidebars/right/sections/notes.tsx:23 msgid "This section is reserved for your personal notes specific to this resume. The content here remains private and is not shared with anyone else." -msgstr "" +msgstr "यह अनुभाग इस बायोडाटा से संबंधित आपके व्यक्तिगत नोट्स के लिए आरक्षित है। यहां की सामग्री निजी रहती है और किसी अन्य के साथ साझा नहीं की जाती है।" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:215 msgid "Tip: You can name the resume referring to the position you are applying for." -msgstr "" +msgstr "युक्ति: आप जिस पद के लिए आवेदन कर रहे हैं, उसका संदर्भ देते हुए आप बायोडाटा को नाम दे सकते हैं।" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:39 msgctxt "Name of the Award" msgid "Title" -msgstr "" +msgstr "शीर्षक" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:195 msgid "Title" -msgstr "" +msgstr "शीर्षक" #: apps/client/src/pages/builder/_components/toolbar.tsx:97 msgid "Toggle Page Break Line" -msgstr "" +msgstr "पेज ब्रेक लाइन टॉगल करें" #: apps/client/src/pages/builder/_components/toolbar.tsx:109 msgid "Toggle Page Numbers" -msgstr "" +msgstr "पेज नंबर टॉगल करें" #: apps/client/src/pages/home/sections/features/index.tsx:67 msgid "Track views and downloads" -msgstr "" +msgstr "दृश्य और डाउनलोड ट्रैक करें" #: apps/client/src/pages/auth/verify-otp/page.tsx:52 #: apps/client/src/pages/auth/verify-otp/page.tsx:57 #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:135 msgid "Two-Factor Authentication" -msgstr "" +msgstr "दो कारक प्रमाणीकरण" #: apps/client/src/services/errors/translate-error.ts:23 msgid "Two-factor authentication is already enabled for this account." -msgstr "" +msgstr "इस खाते के लिए दो-कारक प्रमाणीकरण पहले से ही सक्षम है।" #: apps/client/src/services/errors/translate-error.ts:21 msgid "Two-factor authentication is not enabled for this account." -msgstr "" +msgstr "इस खाते के लिए दो-कारक प्रमाणीकरण सक्षम नहीं है।" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:84 msgid "Type <0>delete to confirm deleting your account." -msgstr "" +msgstr "<0>हटाएं टाइप करें अपना खाता हटाने की पुष्टि करने के लिए।" #. For example, Bachelor's Degree or Master's Degree #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:54 msgid "Type of Study" -msgstr "" +msgstr "अध्ययन का प्रकार" #: apps/client/src/pages/builder/sidebars/right/index.tsx:68 #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:66 msgid "Typography" -msgstr "" +msgstr "टाइपोग्राफी" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:190 msgid "Underline Links" -msgstr "" +msgstr "लिंक को रेखांकित करें" #: apps/client/src/pages/builder/_components/toolbar.tsx:57 msgid "Undo" -msgstr "" +msgstr "वापस लाएं" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:52 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:137 msgid "Unlock" -msgstr "" +msgstr "खोले" #: apps/client/src/pages/dashboard/resumes/_dialogs/lock.tsx:44 msgid "Unlocking a resume will allow you to make changes to it again." -msgstr "" +msgstr "बायोडाटा को अनलॉक करने से आप उसमें दोबारा बदलाव कर सकेंगे।" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191 msgid "Unverified" -msgstr "" +msgstr "असत्यापित" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:147 msgid "Update an existing item" -msgstr "" +msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:178 msgid "Update an existing resume" -msgstr "" +msgstr "किसी मौजूदा आइटम का नक़ल बनाएं" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:212 msgid "Upload a file from one of the accepted sources to parse existing data and import it into Reactive Resume for easier editing." -msgstr "" +msgstr "मौजूदा डेटा को पार्स करने के लिए स्वीकृत स्रोतों में से किसी एक से फ़ाइल अपलोड करें और आसान संपादन के लिए इसे रिएक्टिव रेज़्यूमे में आयात करें।" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:73 msgid "URL" -msgstr "" +msgstr "यूआरएल" #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:47 msgid "URL must start with https://" -msgstr "" +msgstr "यूआरएल https:// से शुरू होना चाहिए" #: apps/client/src/pages/auth/backup-otp/page.tsx:51 #: apps/client/src/pages/auth/backup-otp/page.tsx:56 msgid "Use your backup code" -msgstr "" +msgstr "एक बैकअप कोड उपयोग करें" #: apps/client/src/services/errors/translate-error.ts:11 msgid "User does not have an associated 'secrets' record. Please report this issue on GitHub." -msgstr "" +msgstr "उपयोगकर्ता के पास कोई संबद्ध 'रहस्य' रिकॉर्ड नहीं है. कृपया इस समस्या की रिपोर्ट GitHub पर करें।" #: apps/client/src/pages/auth/register/page.tsx:108 #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:54 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:166 msgid "Username" -msgstr "" +msgstr "उपयोगकर्ता नाम" #: apps/client/src/pages/home/sections/statistics/index.tsx:13 msgid "Users Signed Up" -msgstr "" +msgstr "उपयोगकर्ता साइन अप" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:296 msgid "Validate" -msgstr "" +msgstr "वैधीकृत करें" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:314 msgid "Validated" -msgstr "" +msgstr "वैधीकृत करें" #: apps/client/src/pages/builder/sidebars/left/sections/custom/section.tsx:50 msgid "Value" -msgstr "" +msgstr "मूल्य" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:191 msgid "Verified" -msgstr "" +msgstr "सत्यापित" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:159 msgid "Verify that two-factor authentication has been setup correctly" -msgstr "" +msgstr "सत्यापित करें कि दो-कारक प्रमाणीकरण सही ढंग से सेटअप किया गया है" #: apps/client/src/pages/auth/verify-email/page.tsx:43 #: apps/client/src/pages/auth/verify-email/page.tsx:48 msgid "Verify your email address" -msgstr "" +msgstr "अपने ईमेल पते की पुष्टि करें" #: apps/client/src/pages/home/sections/hero/index.tsx:25 msgid "Version 4" -msgstr "" +msgstr "संस्करण 4" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:51 msgid "Views" -msgstr "" +msgstr "दृश्य" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:85 msgid "Visible" -msgstr "" +msgstr "दर्शनीय" #: apps/client/src/pages/auth/verify-email/page.tsx:61 msgid "We verify your email address only to ensure that we can send you a password reset link in case you forget your password." -msgstr "" +msgstr "हम आपके ईमेल पते को केवल यह सुनिश्चित करने के लिए सत्यापित करते हैं कि यदि आप अपना पासवर्ड भूल जाते हैं तो हम आपको पासवर्ड रीसेट लिंक भेज सकते हैं।" #: apps/client/src/pages/builder/sidebars/left/dialogs/awards.tsx:87 #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:81 @@ -1607,69 +1608,68 @@ msgstr "" #: apps/client/src/pages/builder/sidebars/left/dialogs/volunteer.tsx:95 #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:63 msgid "Website" -msgstr "" +msgstr "वेबसाइट" #: apps/client/src/pages/home/sections/hero/index.tsx:28 msgid "What's new in the latest version" -msgstr "" +msgstr "नवीनतम संस्करण में नया क्या है" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:150 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:60 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:127 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:104 msgid "You can add multiple keywords by separating them with a comma or pressing enter." -msgstr "" +msgstr "आप एकाधिक कीवर्ड को अल्पविराम से अलग करके या एंटर दबाकर जोड़ सकते हैं।" #: apps/client/src/pages/auth/login/page.tsx:83 msgid "You can also enter your username." -msgstr "" +msgstr "आप अपना उपयोगकर्ता नाम भी दर्ज कर सकते हैं." #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:54 msgid "You can make use of the OpenAI API to help you generate content, or improve your writing while composing your resume." -msgstr "" +msgstr "आप सामग्री तैयार करने में मदद के लिए या अपना बायोडाटा बनाते समय अपने लेखन को बेहतर बनाने के लिए OpenAI API का उपयोग कर सकते हैं।" #: apps/client/src/pages/builder/sidebars/right/sections/statistics.tsx:40 msgid "You can track the number of views your resume has received, or how many people have downloaded the resume by enabling public sharing." -msgstr "" +msgstr "आप सार्वजनिक साझाकरण को सक्षम करके यह ट्रैक कर सकते हैं कि आपके बायोडाटा को कितने बार देखा गया है, या कितने लोगों ने बायोडाटा डाउनलोड किया है।" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:60 msgid "You have the option to <0>obtain your own OpenAI API key. This key empowers you to leverage the API as you see fit. Alternatively, if you wish to disable the AI features in Reactive Resume altogether, you can simply remove the key from your settings." -msgstr "" +msgstr "आपके पास <0>अपनी स्वयं की OpenAI API कुंजी प्राप्त करने का विकल्प है. यह कुंजी आपको अपनी इच्छानुसार एपीआई का लाभ उठाने का अधिकार देती है। वैकल्पिक रूप से, यदि आप रिएक्टिव रेज़्यूमे में एआई सुविधाओं को पूरी तरह से अक्षम करना चाहते हैं, तो आप बस अपनी सेटिंग्स से कुंजी को हटा सकते हैं।" #: apps/client/src/pages/auth/verify-email/page.tsx:50 msgid "You should have received an email from <0>Reactive Resume with a link to verify your account." -msgstr "" +msgstr "आपको अपने खाते को सत्यापित करने के लिंक के साथ <0>रिएक्टिव रेज़्यूमे से एक ईमेल प्राप्त होना चाहिए था।" #: apps/client/src/pages/auth/forgot-password/page.tsx:46 #: apps/client/src/pages/auth/forgot-password/page.tsx:51 msgid "You've got mail!" -msgstr "" +msgstr "आपको मेल प्राप्त हुआ है" #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:52 msgid "Your account and all your data has been deleted successfully. Goodbye!" -msgstr "" +msgstr "आपका खाता और आपका सारा डेटा सफलतापूर्वक हटा दिया गया है। अलविदा!" #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:116 msgid "Your API key is securely stored in the browser's local storage and is only utilized when making requests to OpenAI via their official SDK. Rest assured that your key is not transmitted to any external server except when interacting with OpenAI's services." -msgstr "" +msgstr "आपकी एपीआई कुंजी ब्राउज़र के स्थानीय भंडारण में सुरक्षित रूप से संग्रहीत है और इसका उपयोग केवल उनके आधिकारिक एसडीके के माध्यम से OpenAI से अनुरोध करते समय किया जाता है। निश्चिंत रहें कि आपकी कुंजी OpenAI की सेवाओं के साथ इंटरैक्ट करने के अलावा किसी भी बाहरी सर्वर पर प्रसारित नहीं होती है।" #: apps/client/src/pages/auth/verify-email/page.tsx:28 msgid "Your email address has been verified successfully." -msgstr "" +msgstr "आपका ईमेल पता सफलतापूर्वक सत्यापित कर दिया गया है." #: apps/client/src/services/openai/client.ts:11 msgid "Your OpenAI API Key has not been set yet. Please go to your account settings to enable OpenAI Integration." -msgstr "" +msgstr "आपकी OpenAI API कुंजी अभी तक सेट नहीं की गई है। OpenAI एकीकरण को सक्षम करने के लिए कृपया अपनी खाता सेटिंग में जाएं।" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:59 msgid "Your password has been updated successfully." -msgstr "" +msgstr "आपका पासवर्ड बदला जा चुका है।" #: apps/client/src/pages/builder/_components/toolbar.tsx:71 msgid "Zoom In" -msgstr "" +msgstr "ज़ूम इन" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" -msgstr "" - +msgstr "ज़ूम आउट" diff --git a/apps/client/src/locales/hu-HU/messages.po b/apps/client/src/locales/hu-HU/messages.po index e9da1bdc..1586b6a6 100644 --- a/apps/client/src/locales/hu-HU/messages.po +++ b/apps/client/src/locales/hu-HU/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: hu\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/id-ID/messages.po b/apps/client/src/locales/id-ID/messages.po index 117fb4b9..cc6f9187 100644 --- a/apps/client/src/locales/id-ID/messages.po +++ b/apps/client/src/locales/id-ID/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: id\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/it-IT/messages.po b/apps/client/src/locales/it-IT/messages.po index ddc10983..e4f23f28 100644 --- a/apps/client/src/locales/it-IT/messages.po +++ b/apps/client/src/locales/it-IT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: it\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Italian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ja-JP/messages.po b/apps/client/src/locales/ja-JP/messages.po index 18c8b1b3..a096b574 100644 --- a/apps/client/src/locales/ja-JP/messages.po +++ b/apps/client/src/locales/ja-JP/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ja\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/km-KH/messages.po b/apps/client/src/locales/km-KH/messages.po index 261ff177..37045d38 100644 --- a/apps/client/src/locales/km-KH/messages.po +++ b/apps/client/src/locales/km-KH/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: km\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Khmer\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/kn-IN/messages.po b/apps/client/src/locales/kn-IN/messages.po index 45fe56cb..7a4fa85a 100644 --- a/apps/client/src/locales/kn-IN/messages.po +++ b/apps/client/src/locales/kn-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: kn\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Kannada\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -32,27 +32,27 @@ msgstr "{value, plural, one {ಕಾಲಮ್} other {ಕಾಲಮ್‌ಗಳು #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:20 msgid "<0>I built Reactive Resume mostly by myself during my spare time, with a lot of help from other great open-source contributors.<1>If you like the app and want to support keeping it free forever, please donate whatever you can afford to give." -msgstr "" +msgstr "<0>ನನ್ನ ಬಿಡುವಿನ ವೇಳೆಯಲ್ಲಿ ನಾನು ಇತರ ಉತ್ತಮ ತೆರೆದ ಮೂಲ ಕೊಡುಗೆದಾರರಿಂದ ಹೆಚ್ಚಿನ ಸಹಾಯದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚಾಗಿ ನಿರ್ಮಿಸಿದ್ದೇನೆ. <1>ನೀವು ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಇಷ್ಟಪಟ್ಟರೆ ಮತ್ತು ಅದನ್ನು ಶಾಶ್ವತವಾಗಿ ಉಚಿತವಾಗಿ ಇರಿಸುವುದನ್ನು ಬೆಂಬಲಿಸಲು ಬಯಸಿದರೆ, ದಯವಿಟ್ಟು ನೀವು ನೀಡಲು ಸಾಧ್ಯವಿರುವ ಎಲ್ಲವನ್ನೂ ದೇಣಿಗೆ ನೀಡಿ." #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:51 msgid "<0>I'm sure the app is not perfect, but I'd like for it to be.<1>If you faced any issues while creating your resume, or have an idea that would help you and other users in creating your resume more easily, drop an issue on the repository or send me an email about it." -msgstr "" +msgstr "<0>ಅಪ್ಲಿಕೇಶನ್ ಪರಿಪೂರ್ಣವಾಗಿಲ್ಲ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ, ಆದರೆ ಅದು ಸಂಪೂರ್ಣ ಇರಬೇಕೆಂದು ನಾನು ಬಯಸುತ್ತೇನೆ. <1>ನಿಮ್ಮ ಪುನರಾರಂಭವನ್ನು ರಚಿಸುವಾಗ ನೀವು ಯಾವುದೇ ಸಮಸ್ಯೆಗಳನ್ನು ಎದುರಿಸಿದರೆ ಅಥವಾ ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಹೆಚ್ಚು ಸುಲಭವಾಗಿ ರಚಿಸುವಲ್ಲಿ ನಿಮಗೆ ಮತ್ತು ಇತರ ಬಳಕೆದಾರರಿಗೆ ಸಹಾಯ ಮಾಡುವ ಕಲ್ಪನೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, ರೆಪೊಸಿಟರಿಯಲ್ಲಿ ಸಮಸ್ಯೆಯನ್ನು ಬಿಡಿ ಅಥವಾ ಅದರ ಬಗ್ಗೆ ನನಗೆ ಇಮೇಲ್ ಕಳುಹಿಸಿ." #: apps/client/src/pages/dashboard/settings/_sections/openai.tsx:126 msgid "<0>Note: By utilizing the OpenAI API, you acknowledge and accept the <1>terms of use and <2>privacy policy outlined by OpenAI. Please note that Reactive Resume bears no responsibility for any improper or unauthorized utilization of the service, and any resulting repercussions or liabilities solely rest on the user." -msgstr "" +msgstr "<0>ಗಮನಿಸಿ: OpenAI API ಅನ್ನು ಬಳಸುವ ಮೂಲಕ, ನೀವು <1> ಬಳಕೆಯ ನಿಯಮಗಳನ್ನು ಅಂಗೀಕರಿಸುತ್ತೀರಿ ಮತ್ತು ಸಮ್ಮತಿಸುತ್ತೀರಿ ಮತ್ತು <2>ಗೌಪ್ಯತೆ ನೀತಿ OpenAI ನಿಂದ ವಿವರಿಸಲಾಗಿದೆ. ಸೇವೆಯ ಯಾವುದೇ ಅಸಮರ್ಪಕ ಅಥವಾ ಅನಧಿಕೃತ ಬಳಕೆಗೆ ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭವು ಯಾವುದೇ ಜವಾಬ್ದಾರಿಯನ್ನು ಹೊಂದಿರುವುದಿಲ್ಲ ಮತ್ತು ಯಾವುದೇ ಪರಿಣಾಮವಾಗಿ ಉಂಟಾಗುವ ಪರಿಣಾಮಗಳು ಅಥವಾ ಹೊಣೆಗಾರಿಕೆಗಳು ಬಳಕೆದಾರರ ಮೇಲೆ ಮಾತ್ರ ಅವಲಂಬಿತವಾಗಿರುತ್ತದೆ ಎಂಬುದನ್ನು ದಯವಿಟ್ಟು ಗಮನಿಸಿ." #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:90 msgid "<0>The community has spent a lot of time writing the documentation for Reactive Resume, and I'm sure it will help you get started with the app.<1>There are also a lot of examples to help you get started, and features that you might not know about which could help you build your perfect resume." -msgstr "" +msgstr "<0>ಪ್ರತಿಕ್ರಿಯಾತ್ಮಕ ಪುನರಾರಂಭಕ್ಕಾಗಿ ದಸ್ತಾವೇಜನ್ನು ಬರೆಯಲು ಸಮುದಾಯವು ಸಾಕಷ್ಟು ಸಮಯವನ್ನು ಕಳೆದಿದೆ ಮತ್ತು ಅಪ್ಲಿಕೇಶನ್‌ನೊಂದಿಗೆ ಪ್ರಾರಂಭಿಸಲು ಇದು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತದೆ ಎಂದು ನನಗೆ ಖಾತ್ರಿಯಿದೆ. <1>ಪ್ರಾರಂಭಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡಲು ಸಾಕಷ್ಟು ಉದಾಹರಣೆಗಳಿವೆ ಮತ್ತು ನಿಮಗೆ ತಿಳಿದಿಲ್ಲದ ವೈಶಿಷ್ಟ್ಯಗಳು ನಿಮ್ಮ ಪರಿಪೂರ್ಣ ಪುನರಾರಂಭವನ್ನು ನಿರ್ಮಿಸಲು ನಿಮಗೆ ಸಹಾಯ ಮಾಡುತ್ತವೆ." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:146 msgid "<0>Two-factor authentication is currently disabled. You can enable it by adding an authenticator app to your account." -msgstr "" +msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಪ್ರಸ್ತುತ ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ನಿಮ್ಮ ಖಾತೆಗೆ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ಸೇರಿಸುವ ಮೂಲಕ ನೀವು ಅದನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:139 msgid "<0>Two-factor authentication is enabled. You will be asked to enter a code every time you sign in." -msgstr "" +msgstr "<0>ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಲಾಗಿದೆ. ನೀವು ಸೈನ್ ಇನ್ ಮಾಡಿದಾಗಲೆಲ್ಲಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸಲು ನಿಮ್ಮನ್ನು ಕೇಳಲಾಗುತ್ತದೆ." #: apps/client/src/pages/home/page.tsx:18 #: apps/client/src/pages/home/sections/hero/index.tsx:36 @@ -62,11 +62,11 @@ msgstr "ಉಚಿತ ಮತ್ತು ಮೂಲ ಕೋಡ್ ತೆರೆದಿ #: apps/client/src/pages/home/components/footer.tsx:20 #: apps/client/src/pages/home/sections/hero/index.tsx:41 msgid "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume." -msgstr "" +msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮ್ ಅನ್ನು ರಚಿಸುವ, ನವೀಕರಿಸುವ ಮತ್ತು ಹಂಚಿಕೊಳ್ಳುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಸರಳಗೊಳಿಸುವ ಉಚಿತ ಮತ್ತು ಮುಕ್ತ-ಮೂಲ ಪುನರಾರಂಭ ಬಿಲ್ಡರ್." #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:29 msgid "A link has been copied to your clipboard." -msgstr "" +msgstr "ನಿಮ್ಮ ಕ್ಲಿಪ್‌ಬೋರ್ಡ್‌ಗೆ ಲಿಂಕ್ ಅನ್ನು ನಕಲಿಸಲಾಗಿದೆ." #: apps/client/src/components/copyright.tsx:29 msgid "A passion project by <0>Amruth Pillai" @@ -74,11 +74,11 @@ msgstr "<0>ಅಮೃತ್ ಪಿಳ್ಳೈ ಅವರಿಂದ ಒಂದ #: apps/client/src/pages/auth/forgot-password/page.tsx:54 msgid "A password reset link should have been sent to your inbox, if an account existed with the email you provided." -msgstr "" +msgstr "ನೀವು ಒದಗಿಸಿದ ಇಮೇಲ್‌ನೊಂದಿಗೆ ಖಾತೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿದ್ದರೆ, ಪಾಸ್‌ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಲಿಂಕ್ ಅನ್ನು ನಿಮ್ಮ ಇನ್‌ಬಾಕ್ಸ್‌ಗೆ ಕಳುಹಿಸಿರಬೇಕು." #: apps/client/src/services/errors/translate-error.ts:31 msgid "A resume with this slug already exists, please pick a different unique identifier." -msgstr "" +msgstr "ಈ ಸ್ಲಗ್‌ನೊಂದಿಗೆ ರೆಸ್ಯೂಮ್ ಈಗಾಗಲೇ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ, ದಯವಿಟ್ಟು ಬೇರೆ ಅನನ್ಯ ಗುರುತಿಸುವಿಕೆಯನ್ನು ಆರಿಸಿ." #: apps/client/src/services/errors/translate-error.ts:9 msgid "A user with this email address and/or username already exists." @@ -120,7 +120,7 @@ msgstr "ಹೊಸ ವಿಭಾಗವನ್ನು ಸೇರಿಸಿ" msgid "Add New Page" msgstr "ಹೊಸ ಪುಟವನ್ನು ಸೇರಿಸಿ" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "AI" @@ -238,8 +238,8 @@ msgstr "ಸಮುದಾಯದಿಂದ, ಸಮುದಾಯಕ್ಕಾಗಿ." msgid "Cancel" msgstr "ರದ್ದುಮಾಡಿ" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "ಸಾಂದರ್ಭಿಕ" @@ -252,7 +252,7 @@ msgstr "ಸೆಂಟರ್ ಆರ್ಟ್ಬೋರ್ಡ್" msgid "Change Password" msgstr "ಗುಪ್ತಪದವನ್ನು ಬದಲಾಯಿಸು" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "ಟೋನ್ ಬದಲಾಯಿಸಿ" @@ -288,8 +288,8 @@ msgstr "ಕಾಲಮ್ಗಳು" msgid "Company" msgstr "ಕಂಪನಿ" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "ಆತ್ಮವಿಶ್ವಾಸ" @@ -345,7 +345,7 @@ msgstr "ಮಾದರಿ ರೆಸ್ಯೂಮ್‌ ರಚಿಸಿ" #: apps/client/src/pages/home/sections/features/index.tsx:61 msgid "Custom resume sections" -msgstr "" +msgstr "ಕಸ್ಟಮ್ ಪುನರಾರಂಭ ವಿಭಾಗಗಳು" #: apps/client/src/stores/resume.ts:45 msgid "Custom Section" @@ -539,7 +539,7 @@ msgstr "ಕಡತದ ವರ್ಗ" msgid "Finally," msgstr "ಅಂತಿಮವಾಗಿ," -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "ಕಾಗುಣಿತ ಮತ್ತು ವ್ಯಾಕರಣವನ್ನು ಸರಿಪಡಿಸಿ" @@ -586,219 +586,219 @@ msgstr "ದೋಷ ಕಂಡುಬಂದಿದೆಯೇ ಅಥವಾ ಹೊಸ #: apps/client/src/pages/home/sections/features/index.tsx:45 msgid "Free, forever" -msgstr "" +msgstr "ಉಚಿತ ಶಾಶ್ವತವಾಗಿ" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" -msgstr "" +msgstr "ಸ್ನೇಹಪರ" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:31 msgid "Full Name" -msgstr "" +msgstr "ಪೂರ್ಣ ಹೆಸರು" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:201 msgid "Generate a random title for your resume" -msgstr "" +msgstr "ನಿಮ್ಮ ಪುನರಾರಂಭಕ್ಕಾಗಿ ಯಾದೃಚ್ಛಿಕ ಶೀರ್ಷಿಕೆಯನ್ನು ರಚಿಸಿ" #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:33 msgid "Get Started" -msgstr "" +msgstr "ಪ್ರಾರಂಭಿಸಿ" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" -msgstr "" +msgstr "Github" #: apps/client/src/pages/home/sections/statistics/index.tsx:12 msgid "GitHub Stars" -msgstr "" +msgstr "GitHub ಸ್ಟಾರ್ಸ್" #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:186 msgid "Give your old resume a new name." -msgstr "" +msgstr "ನಿಮ್ಮ ಹಳೆಯ ರೆಸ್ಯೂಮೇಗೆ ಹೊಸ ಹೆಸರನ್ನು ನೀಡಿ." #: apps/client/src/pages/auth/verify-email/page.tsx:67 #: apps/client/src/pages/home/sections/hero/call-to-action.tsx:18 msgid "Go to Dashboard" -msgstr "" +msgstr "ಡ್ಯಾಶ್ಬೋರ್ಡ್ಗೆ ಹೋಗಿ" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" -msgstr "" +msgstr "ಗೂಗಲ್" #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:207 msgid "Grayscale" -msgstr "" +msgstr "ಗ್ರೇಸ್ಕೇಲ್" #: apps/client/src/pages/dashboard/resumes/page.tsx:41 msgid "Grid" -msgstr "" +msgstr "ಗ್ರಿಡ್" #: apps/client/src/pages/builder/sidebars/left/sections/basics.tsx:41 msgid "Headline" -msgstr "" +msgstr "ಶೀರ್ಷಿಕೆ" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:106 msgid "Here, you can update your account information such as your profile picture, name and username." -msgstr "" +msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಚಿತ್ರ, ಹೆಸರು ಮತ್ತು ಬಳಕೆದಾರಹೆಸರು ಮುಂತಾದ ನಿಮ್ಮ ಖಾತೆ ಮಾಹಿತಿಯನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು." #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:63 msgid "Here, you can update your profile to customize and personalize your experience." -msgstr "" +msgstr "ಇಲ್ಲಿ, ನಿಮ್ಮ ಅನುಭವವನ್ನು ಕಸ್ಟಮೈಸ್ ಮಾಡಲು ಮತ್ತು ವೈಯಕ್ತೀಕರಿಸಲು ನಿಮ್ಮ ಪ್ರೊಫೈಲ್ ಅನ್ನು ನೀವು ನವೀಕರಿಸಬಹುದು." #: apps/client/src/pages/builder/sidebars/left/dialogs/languages.tsx:76 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:82 #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:185 msgid "Hidden" -msgstr "" +msgstr "ಮರೆಮಾಡಲಾಗಿದೆ" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:78 msgid "Hide" -msgstr "" +msgstr "ಮರೆಮಾಡಿ" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:179 msgid "Hide Icons" -msgstr "" +msgstr "ಐಕಾನ್‌ಗಳನ್ನು ಮರೆಮಾಡಿ" #: apps/client/src/pages/auth/login/page.tsx:99 #: apps/client/src/pages/auth/register/page.tsx:155 #: apps/client/src/pages/auth/reset-password/page.tsx:88 msgid "Hold <0>Ctrl to display your password temporarily." -msgstr "" +msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ತಾತ್ಕಾಲಿಕವಾಗಿ ಪ್ರದರ್ಶಿಸಲು <0>Ctrl ಅನ್ನು ಹಿಡಿದುಕೊಳ್ಳಿ." #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:100 msgid "Horizontal" -msgstr "" +msgstr "ಸಮತಲ" #: apps/client/src/pages/home/sections/features/index.tsx:66 msgid "Host your resume publicly" -msgstr "" +msgstr "ನಿಮ್ಮ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಸಾರ್ವಜನಿಕವಾಗಿ ಹೋಸ್ಟ್ ಮಾಡಿ" #: apps/client/src/pages/home/sections/testimonials/index.tsx:70 msgid "I always love to hear from the users of Reactive Resume with feedback or support. Here are some of the messages I've received. If you have any feedback, feel free to drop me an email at <0>{email}." -msgstr "" +msgstr "ಪ್ರತಿಕ್ರಿಯೆ ಅಥವಾ ಬೆಂಬಲದೊಂದಿಗೆ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ ಬಳಕೆದಾರರಿಂದ ಕೇಳಲು ನಾನು ಯಾವಾಗಲೂ ಇಷ್ಟಪಡುತ್ತೇನೆ. ನಾನು ಸ್ವೀಕರಿಸಿದ ಕೆಲವು ಸಂದೇಶಗಳು ಇಲ್ಲಿವೆ. ನೀವು ಯಾವುದೇ ಪ್ರತಿಕ್ರಿಯೆಯನ್ನು ಹೊಂದಿದ್ದರೆ, <0>{email} ನಲ್ಲಿ ನನಗೆ ಇಮೇಲ್ ಅನ್ನು ಡ್ರಾಪ್ ಮಾಡಲು ಹಿಂಜರಿಯಬೇಡಿ." #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:82 msgid "Icon" -msgstr "" +msgstr "ಐಕಾನ್" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:47 msgid "If this app has helped you with your job hunt, let me know by reaching out through <0>this contact form." -msgstr "" +msgstr "ನಿಮ್ಮ ಉದ್ಯೋಗ ಹುಡುಕಾಟದಲ್ಲಿ ಈ ಅಪ್ಲಿಕೇಶನ್ ನಿಮಗೆ ಸಹಾಯ ಮಾಡಿದ್ದರೆ, <0>ಈ ಸಂಪರ್ಕ ಫಾರ್ಮ್ ಮೂಲಕ ತಲುಪುವ ಮೂಲಕ ನನಗೆ ತಿಳಿಸಿ." #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:126 msgid "If you disable two-factor authentication, you will no longer be required to enter a verification code when logging in." -msgstr "" +msgstr "ನೀವು ಎರಡು ಅಂಶದ ದೃಢೀಕರಣವನ್ನು ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಿದರೆ, ಲಾಗ್ ಇನ್ ಮಾಡುವಾಗ ನೀವು ಇನ್ನು ಮುಂದೆ ಪರಿಶೀಲನಾ ಕೋಡ್ ಅನ್ನು ನಮೂದಿಸುವ ಅಗತ್ಯವಿರುವುದಿಲ್ಲ." #: apps/client/src/pages/home/sections/support/index.tsx:59 msgid "If you're multilingual, we'd love your help in bringing the app to more languages and communities. Don't worry if you don't see your language on the list - just give me a shout-out on GitHub, and I'll make sure to include it. Ready to get started? Jump into translation over at Crowdin by clicking the link below." -msgstr "" +msgstr "ನೀವು ಬಹುಭಾಷಿಕರಾಗಿದ್ದರೆ, ಹೆಚ್ಚಿನ ಭಾಷೆಗಳು ಮತ್ತು ಸಮುದಾಯಗಳಿಗೆ ಅಪ್ಲಿಕೇಶನ್ ಅನ್ನು ತರಲು ನಿಮ್ಮ ಸಹಾಯವನ್ನು ನಾವು ಬಯಸುತ್ತೇವೆ. ಪಟ್ಟಿಯಲ್ಲಿ ನಿಮ್ಮ ಭಾಷೆಯನ್ನು ನೀವು ನೋಡದಿದ್ದರೆ ಚಿಂತಿಸಬೇಡಿ - GitHub ನಲ್ಲಿ ನನಗೆ ಪ್ರೋತ್ಸಾಹ ನೀಡಿ ಮತ್ತು ಅದನ್ನು ಸೇರಿಸಲು ನಾನು ಖಚಿತಪಡಿಸಿಕೊಳ್ಳುತ್ತೇನೆ. ಪ್ರಾರಂಭಿಸಲು ಸಿದ್ಧರಿದ್ದೀರಾ? ಕೆಳಗಿನ ಲಿಂಕ್ ಅನ್ನು ಕ್ಲಿಕ್ ಮಾಡುವ ಮೂಲಕ ಕ್ರೌಡಿನ್‌ನಲ್ಲಿ ಅನುವಾದಕ್ಕೆ ಹೋಗಿ." #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:309 msgid "Import" -msgstr "" +msgstr "ಆಮದು" #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:208 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/import-card.tsx:24 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/import-item.tsx:18 msgid "Import an existing resume" -msgstr "" +msgstr "ಅಸ್ತಿತ್ವದಲ್ಲಿರುವ ರೆಸ್ಯೂಮೇ ಅನ್ನು ಆಮದು ಮಾಡಿ" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" -msgstr "" +msgstr "ಬರವಣಿಗೆಯನ್ನು ಸುಧಾರಿಸಿ" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:186 msgid "In case you are unable to scan this QR Code, you can also copy-paste this link into your authenticator app." -msgstr "" +msgstr "ಈ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಲು ನಿಮಗೆ ಸಾಧ್ಯವಾಗದಿದ್ದರೆ, ನೀವು ಈ ಲಿಂಕ್ ಅನ್ನು ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್‌ಗೆ ನಕಲಿಸಬಹುದು." #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:70 msgid "In this section, you can change your password and enable/disable two-factor authentication." -msgstr "" +msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನೀವು ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಬದಲಾಯಿಸಬಹುದು ಮತ್ತು ಎರಡು ಅಂಶಗಳ ದೃಢೀಕರಣವನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಬಹುದು/ನಿಷ್ಕ್ರಿಯಗೊಳಿಸಬಹುದು." #: apps/client/src/pages/dashboard/settings/_sections/danger.tsx:64 msgid "In this section, you can delete your account and all the data associated to your user, but please keep in mind that <0>this action is irreversible." -msgstr "" +msgstr "ಈ ವಿಭಾಗದಲ್ಲಿ, ನಿಮ್ಮ ಖಾತೆಯನ್ನು ಮತ್ತು ನಿಮ್ಮ ಬಳಕೆದಾರರಿಗೆ ಸಂಬಂಧಿಸಿದ ಎಲ್ಲಾ ಡೇಟಾವನ್ನು ನೀವು ಅಳಿಸಬಹುದು, ಆದರೆ ದಯವಿಟ್ಟು <0>ಈ ಕ್ರಿಯೆಯನ್ನು ಬದಲಾಯಿಸಲಾಗುವುದಿಲ್ಲ ಎಂಬುದನ್ನು ನೆನಪಿನಲ್ಲಿಡಿ." #: apps/client/src/pages/builder/sidebars/right/index.tsx:83 #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:122 msgid "Information" -msgstr "" +msgstr "ಮಾಹಿತಿ" #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:39 msgid "Institution" -msgstr "" +msgstr "ಸಂಸ್ಥೆ" #: apps/client/src/pages/builder/sidebars/left/dialogs/certifications.tsx:53 msgid "Issuer" -msgstr "" +msgstr "ನೀಡುವವರು" #: apps/client/src/services/errors/translate-error.ts:7 msgid "It doesn't look like a user exists with the credentials you provided." -msgstr "" +msgstr "ನೀವು ಒದಗಿಸಿದ ರುಜುವಾತುಗಳೊಂದಿಗೆ ಬಳಕೆದಾರರು ಅಸ್ತಿತ್ವದಲ್ಲಿರುವಂತೆ ತೋರುತ್ತಿಲ್ಲ." #: apps/client/src/services/errors/translate-error.ts:27 msgid "It looks like the backup code you provided is invalid or used. Please try again." -msgstr "" +msgstr "ನೀವು ಒದಗಿಸಿದ ಬ್ಯಾಕಪ್ ಕೋಡ್ ಅಮಾನ್ಯವಾಗಿದೆ ಅಥವಾ ಬಳಸಲಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ." #: apps/client/src/services/errors/translate-error.ts:15 msgid "It looks like the reset token you provided is invalid. Please try restarting the password reset process again." -msgstr "" +msgstr "ನೀವು ಒದಗಿಸಿದ ಮರುಹೊಂದಿಸುವ ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪಾಸ್‌ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಮತ್ತೊಮ್ಮೆ ಮರುಪ್ರಾರಂಭಿಸಲು ಪ್ರಯತ್ನಿಸಿ." #: apps/client/src/services/errors/translate-error.ts:33 msgid "It looks like the resume you're looking for doesn't exist." -msgstr "" +msgstr "ನೀವು ಹುಡುಕುತ್ತಿರುವ ರೆಸ್ಯೂಮೇ ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ ಎಂದು ತೋರುತ್ತಿದೆ." #: apps/client/src/services/errors/translate-error.ts:25 msgid "It looks like the two-factor authentication code you provided is invalid. Please try again." -msgstr "" +msgstr "ನೀವು ಒದಗಿಸಿದ ಎರಡು ಅಂಶದ ದೃಢೀಕರಣ ಕೋಡ್ ಅಮಾನ್ಯವಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪುನಃ ಪ್ರಯತ್ನಿಸಿ." #: apps/client/src/services/errors/translate-error.ts:17 msgid "It looks like the verification token you provided is invalid. Please try restarting the verification process again." -msgstr "" +msgstr "ನೀವು ಒದಗಿಸಿದ ಮರುಹೊಂದಿಸುವ ಟೋಕನ್ ಅಮಾನ್ಯವಾಗಿದೆ ಎಂದು ತೋರುತ್ತಿದೆ. ದಯವಿಟ್ಟು ಪಾಸ್‌ವರ್ಡ್ ಮರುಹೊಂದಿಸುವ ಪ್ರಕ್ರಿಯೆಯನ್ನು ಮತ್ತೊಮ್ಮೆ ಮರುಪ್ರಾರಂಭಿಸಲು ಪ್ರಯತ್ನಿಸಿ." #: apps/client/src/services/errors/translate-error.ts:19 msgid "It looks like your email address has already been verified." -msgstr "" +msgstr "ನಿಮ್ಮ ಇಮೇಲ್ ವಿಳಾಸವನ್ನು ಈಗಾಗಲೇ ಪರಿಶೀಲಿಸಿರುವಂತೆ ತೋರುತ್ತಿದೆ." #: apps/client/src/pages/auth/register/page.tsx:90 msgctxt "Localized version of a placeholder name. For example, Max Mustermann in German or Jan Kowalski in Polish." msgid "John Doe" -msgstr "" +msgstr "ಜಾನ್ ಡೋ" #: apps/client/src/pages/auth/register/page.tsx:111 msgctxt "Localized version of a placeholder username. For example, max.mustermann in German or jan.kowalski in Polish." msgid "john.doe" -msgstr "" +msgstr "ಜಾನ್ ಡೋ" #: apps/client/src/pages/auth/register/page.tsx:132 msgctxt "Localized version of a placeholder email. For example, max.mustermann@example.de in German or jan.kowalski@example.pl in Polish." msgid "john.doe@example.com" -msgstr "" +msgstr "john.doe@example.com" #: apps/client/src/pages/builder/sidebars/right/sections/export.tsx:54 msgid "JSON" -msgstr "" +msgstr "JSON" #: apps/client/src/pages/builder/sidebars/left/dialogs/custom-section.tsx:145 #: apps/client/src/pages/builder/sidebars/left/dialogs/interests.tsx:55 #: apps/client/src/pages/builder/sidebars/left/dialogs/projects.tsx:122 #: apps/client/src/pages/builder/sidebars/left/dialogs/skills.tsx:99 msgid "Keywords" -msgstr "" +msgstr "ಕೀವರ್ಡ್‌ಗಳು" #: apps/client/src/pages/builder/sidebars/left/sections/shared/url-input.tsx:40 msgid "Label" -msgstr "" +msgstr "ಲೇಬಲ್" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:96 msgid "Language" -msgstr "" +msgstr "ಭಾಷೆ" #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:116 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:121 msgid "Last updated {lastUpdated}" -msgstr "" +msgstr "ಕೊನೆಯದಾಗಿ ನವೀಕರಿಸಲಾಗಿದೆ {lastUpdated}" #: apps/client/src/pages/builder/sidebars/right/index.tsx:65 #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:207 @@ -949,6 +949,7 @@ msgstr "ಟಿಪ್ಪಣಿಗಳು" msgid "One-Time Password" msgstr "ಒನ್-ಟೈಮ್ ಪಾಸ್‌ವರ್ಡ್" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1045,7 +1046,7 @@ msgstr "ದಯವಿಟ್ಟು ನಿಮ್ಮ ಬ್ಯಾಕಪ್ ಕೋಡ #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:106 msgid "Portrait" -msgstr "" +msgstr "ಭಾವ ಚಿತ್ರ" #: apps/client/src/pages/builder/sidebars/left/dialogs/experience.tsx:54 msgctxt "Position held at a company, for example, Software Engineer" @@ -1058,36 +1059,36 @@ msgstr "ಸ್ಥಾನ" #: apps/client/src/pages/home/sections/features/index.tsx:96 msgid "Powered by" -msgstr "" +msgstr "ಇವರಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ" #: apps/client/src/pages/builder/sidebars/left/dialogs/profiles.tsx:98 msgid "Powered by <0>Simple Icons" -msgstr "" +msgstr "<0>ಸರಳ ಐಕಾನ್‌ಗಳಿಂದ ನಡೆಸಲ್ಪಡುತ್ತಿದೆ" #: apps/client/src/pages/builder/sidebars/right/sections/theme.tsx:43 msgid "Primary Color" -msgstr "" +msgstr "ಪ್ರಾಥಮಿಕ ಬಣ್ಣ" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" -msgstr "" +msgstr "ವೃತ್ತಿಪರ" #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:61 msgid "Profile" -msgstr "" +msgstr "ಪ್ರೊಫೈಲ್" #: apps/client/src/pages/builder/sidebars/right/sections/sharing.tsx:55 msgid "Public" -msgstr "" +msgstr "ಸಾರ್ವಜನಿಕ" #: apps/client/src/pages/builder/sidebars/left/dialogs/publications.tsx:53 msgid "Publisher" -msgstr "" +msgstr "ಪ್ರಕಾಶಕರು" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:69 msgid "Raise an issue" -msgstr "" +msgstr "ಒಂದು ಸಮಸ್ಯೆಯನ್ನು ಎತ್ತಿಕೊಳ್ಳಿ" #: apps/client/src/components/copyright.tsx:38 #: apps/client/src/pages/auth/backup-otp/page.tsx:51 @@ -1105,140 +1106,140 @@ msgstr "" #: apps/client/src/pages/public/page.tsx:57 #: apps/client/src/pages/public/page.tsx:79 msgid "Reactive Resume" -msgstr "" +msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ" #: apps/client/src/pages/home/sections/logo-cloud/index.tsx:39 msgid "Reactive Resume has helped people land jobs at these great companies:" -msgstr "" +msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಈ ಮಹಾನ್ ಕಂಪನಿಗಳಲ್ಲಿ ಉದ್ಯೋಗಗಳನ್ನು ಪಡೆಯಲು ಜನರಿಗೆ ಸಹಾಯ ಮಾಡಿದೆ:" #: apps/client/src/pages/home/sections/support/index.tsx:12 msgid "Reactive Resume is a free and open-source project crafted mostly by me, and your support would be greatly appreciated. If you're inclined to contribute, and only if you can afford to, consider making a donation through any of the listed platforms. Additionally, donations to Reactive Resume through Open Collective are tax-exempt, as the project is fiscally hosted by Open Collective Europe." -msgstr "" +msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇನ್ನಿಂದ ಹೆಚ್ಚಾಗಿ ರಚಿಸಲಾದ ಉಚಿತ ಮತ್ತು ಮುಕ್ತ-ಮೂಲ ಯೋಜನೆಯಾಗಿದೆ ಮತ್ತು ನಿಮ್ಮ ಬೆಂಬಲವನ್ನು ಹೆಚ್ಚು ಪ್ರಶಂಸಿಸಲಾಗುತ್ತದೆ. ನೀವು ಕೊಡುಗೆ ನೀಡಲು ಒಲವು ತೋರುತ್ತಿದ್ದರೆ ಮತ್ತು ನೀವು ನಿಭಾಯಿಸಲು ಸಾಧ್ಯವಾದರೆ, ಪಟ್ಟಿ ಮಾಡಲಾದ ಯಾವುದೇ ಪ್ಲಾಟ್‌ಫಾರ್ಮ್‌ಗಳ ಮೂಲಕ ದೇಣಿಗೆ ನೀಡಲು ಪರಿಗಣಿಸಿ. ಹೆಚ್ಚುವರಿಯಾಗಿ, ಓಪನ್ ಕಲೆಕ್ಟಿವ್ ಮೂಲಕ ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇಗೆ ದೇಣಿಗೆಗಳು ತೆರಿಗೆ-ವಿನಾಯತಿಯನ್ನು ಹೊಂದಿವೆ, ಏಕೆಂದರೆ ಯೋಜನೆಯು ಓಪನ್ ಕಲೆಕ್ಟಿವ್ ಯುರೋಪ್‌ನಿಂದ ಆರ್ಥಿಕವಾಗಿ ಆಯೋಜಿಸಲ್ಪಟ್ಟಿದ." #: apps/client/src/pages/home/sections/features/index.tsx:107 msgid "Reactive Resume is a passion project of over 3 years of hard work, and with that comes a number of re-iterated ideas and features that have been built to (near) perfection." -msgstr "" +msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ 3 ವರ್ಷಗಳ ಕಠಿಣ ಪರಿಶ್ರಮದ ಉತ್ಸಾಹದ ಯೋಜನೆಯಾಗಿದೆ ಮತ್ತು ಅದರೊಂದಿಗೆ (ಹತ್ತಿರ) ಪರಿಪೂರ್ಣತೆಗೆ ನಿರ್ಮಿಸಲಾದ ಹಲವಾರು ಮರು-ಪುನರಾವರ್ತಿತ ಆಲೋಚನೆಗಳು ಮತ್ತು ವೈಶಿಷ್ಟ್ಯಗಳು ಬರುತ್ತದೆ." #: apps/client/src/pages/home/sections/contributors/index.tsx:22 msgid "Reactive Resume thrives thanks to its vibrant community. This project owes its progress to numerous individuals who've dedicated their time and skills. Below, we celebrate the coders who've enhanced its features on GitHub and the linguists whose translations on Crowdin have made it accessible to a broader audience." -msgstr "" +msgstr "ರಿಯಾಕ್ಟಿವ್ ರೆಸ್ಯೂಮೇ ಅದರ ರೋಮಾಂಚಕ ಸಮುದಾಯಕ್ಕೆ ಧನ್ಯವಾದಗಳು. ಈ ಯೋಜನೆಯು ತಮ್ಮ ಸಮಯ ಮತ್ತು ಕೌಶಲ್ಯಗಳನ್ನು ಮೀಸಲಿಟ್ಟ ಹಲವಾರು ವ್ಯಕ್ತಿಗಳಿಗೆ ಅದರ ಪ್ರಗತಿಗೆ ಬದ್ಧವಾಗಿದೆ. ಕೆಳಗೆ, GitHub ನಲ್ಲಿ ಅದರ ವೈಶಿಷ್ಟ್ಯಗಳನ್ನು ವರ್ಧಿಸಿದ ಕೋಡರ್‌ಗಳನ್ನು ಮತ್ತು ಕ್ರೌಡಿನ್‌ನಲ್ಲಿ ಭಾಷಾಂತರಿಸಿದ ಭಾಷಾಶಾಸ್ತ್ರಜ್ಞರನ್ನು ವಿಶಾಲ ಪ್ರೇಕ್ಷಕರಿಗೆ ಪ್ರವೇಶಿಸುವಂತೆ ನಾವು ಆಚರಿಸುತ್ತೇವೆ." #: apps/client/src/pages/builder/_components/toolbar.tsx:63 msgid "Redo" -msgstr "" +msgstr "ಮತ್ತೆಮಾಡು" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-list-item.tsx:97 #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:129 msgid "Remove" -msgstr "" +msgstr "ತೆಗೆದುಹಾಕಿ" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:83 #: apps/client/src/pages/dashboard/resumes/_layouts/grid/_components/resume-card.tsx:128 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:86 #: apps/client/src/pages/dashboard/resumes/_layouts/list/_components/resume-item.tsx:150 msgid "Rename" -msgstr "" +msgstr "ಮರುಹೆಸರಿಸಿ" #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:198 msgid "Resend email confirmation link" -msgstr "" +msgstr "ಇಮೇಲ್ ದೃಢೀಕರಣ ಲಿಂಕ್ ಅನ್ನು ಮರುಕಳುಹಿಸಿ" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-options.tsx:124 msgid "Reset" -msgstr "" +msgstr "ಮರುಹೊಂದಿಸಿ" #: apps/client/src/pages/builder/sidebars/right/sections/layout.tsx:210 msgid "Reset Layout" -msgstr "" +msgstr "ಲೇಔಟ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ" #: apps/client/src/pages/auth/reset-password/page.tsx:65 msgid "Reset your password" -msgstr "" +msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ" #: apps/client/src/pages/auth/reset-password/page.tsx:60 msgid "Reset your Password" -msgstr "" +msgstr "ನಿಮ್ಮ ಪಾಸ್‌ವರ್ಡ್ ಅನ್ನು ಮರುಹೊಂದಿಸಿ" #: apps/client/src/pages/builder/_components/toolbar.tsx:83 msgid "Reset Zoom" -msgstr "" +msgstr "ಜೂಮ್ ಮರುಹೊಂದಿಸಿ" #: apps/client/src/pages/dashboard/_components/sidebar.tsx:86 #: apps/client/src/pages/dashboard/resumes/page.tsx:20 #: apps/client/src/pages/dashboard/resumes/page.tsx:35 msgid "Resumes" -msgstr "" +msgstr "ರೆಸ್ಯೂಮೇ" #: apps/client/src/pages/home/sections/statistics/index.tsx:14 msgid "Resumes Generated" -msgstr "" +msgstr "ರೆಸ್ಯೂಮ್‌ಗಳನ್ನು ರಚಿಸಲಾಗಿದೆ" #: apps/client/src/pages/home/sections/features/index.tsx:105 msgid "Rich in features, not in pricing." -msgstr "" +msgstr "ವೈಶಿಷ್ಟ್ಯಗಳಲ್ಲಿ ಸಮೃದ್ಧವಾಗಿದೆ, ಬೆಲೆಯಲ್ಲಿ ಅಲ್ಲ." #: apps/client/src/pages/builder/sidebars/left/sections/picture/options.tsx:143 msgid "Rounded" -msgstr "" +msgstr "ದುಂಡಾದ" #: apps/client/src/pages/builder/sidebars/left/sections/shared/section-dialog.tsx:159 #: apps/client/src/pages/dashboard/resumes/_dialogs/resume.tsx:240 #: apps/client/src/pages/dashboard/settings/_sections/account.tsx:216 #: apps/client/src/pages/dashboard/settings/_sections/profile.tsx:138 msgid "Save Changes" -msgstr "" +msgstr "ಬದಲಾವಣೆಗಳನ್ನು ಉಳಿಸು" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:166 msgid "Scan the QR code below with your authenticator app to setup 2FA on your account." -msgstr "" +msgstr "ನಿಮ್ಮ ಖಾತೆಯಲ್ಲಿ 2FA ಸೆಟಪ್ ಮಾಡಲು ನಿಮ್ಮ ದೃಢೀಕರಣ ಅಪ್ಲಿಕೇಶನ್‌ನೊಂದಿಗೆ ಕೆಳಗಿನ QR ಕೋಡ್ ಅನ್ನು ಸ್ಕ್ಯಾನ್ ಮಾಡಿ." #. Score or honors for the degree, for example, CGPA or magna cum laude #: apps/client/src/pages/builder/sidebars/left/dialogs/education.tsx:92 msgid "Score" -msgstr "" +msgstr "ಅಂಕ" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:98 msgid "Search for a font family" -msgstr "" +msgstr "ಫಾಂಟ್ ಕುಟುಂಬಕ್ಕಾಗಿ ಹುಡುಕಿ" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:113 msgid "Search for a font subset" -msgstr "" +msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ" #: apps/client/src/pages/builder/sidebars/right/sections/typography.tsx:126 msgid "Search for a font variant" -msgstr "" +msgstr "ಫಾಂಟ್ ಉಪವಿಭಾಗಕ್ಕಾಗಿ ಹುಡುಕಿ" #: apps/client/src/components/locale-switch.tsx:42 msgid "Search for a language" -msgstr "" +msgstr "ಭಾಷೆಗಾಗಿ ಹುಡುಕಿ" #: apps/client/src/pages/home/sections/features/index.tsx:55 msgid "Secure with two-factor authentication" -msgstr "" +msgstr "ಎರಡು ಅಂಶದ ದೃಢೀಕರಣದೊಂದಿಗೆ ಸುರಕ್ಷಿತ" #: apps/client/src/pages/dashboard/settings/_sections/security.tsx:68 msgid "Security" -msgstr "" +msgstr "ಭದ್ರತೆ" #: apps/client/src/pages/home/sections/features/index.tsx:49 msgid "Self-host with Docker" -msgstr "" +msgstr "ಡಾಕರ್ ಜೊತೆಗೆ ಸ್ವಯಂ ಹೋಸ್ಟ್" #: apps/client/src/pages/auth/forgot-password/page.tsx:89 msgid "Send Email" -msgstr "" +msgstr "ಇಮೇಲ್ ಕಳುಹಿಸಿ" #: apps/client/src/pages/builder/sidebars/right/sections/information.tsx:79 msgid "Send me a message" -msgstr "" +msgstr "ಸಂದೇಶ ಕಳುಹಿಸಿ" #: apps/client/src/components/user-options.tsx:28 #: apps/client/src/pages/dashboard/_components/sidebar.tsx:92 #: apps/client/src/pages/dashboard/settings/page.tsx:16 #: apps/client/src/pages/dashboard/settings/page.tsx:26 msgid "Settings" -msgstr "" +msgstr "ಸೆಟ್ಟಿಂಗ್ಸಗಳು" #: apps/client/src/pages/dashboard/settings/_dialogs/two-factor.tsx:157 msgid "Setup two-factor authentication on your account" @@ -1672,4 +1673,3 @@ msgstr "ಗಾತ್ರ ಹಿಗ್ಗಿಸಿ" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "ಗಾತ್ರ ಕುಗ್ಗಿಸಿ" - diff --git a/apps/client/src/locales/ko-KR/messages.po b/apps/client/src/locales/ko-KR/messages.po index a50896c0..6b98f47e 100644 --- a/apps/client/src/locales/ko-KR/messages.po +++ b/apps/client/src/locales/ko-KR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ko\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Korean\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/lt-LT/messages.po b/apps/client/src/locales/lt-LT/messages.po index 72f5c90c..8ce76dc9 100644 --- a/apps/client/src/locales/lt-LT/messages.po +++ b/apps/client/src/locales/lt-LT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: lt\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && (n%100>19 || n%100<11) ? 0 : (n%10>=2 && n%10<=9) && (n%100>19 || n%100<11) ? 1 : n%1!=0 ? 2: 3);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ml-IN/messages.po b/apps/client/src/locales/ml-IN/messages.po index 5c303eb6..5b81ea61 100644 --- a/apps/client/src/locales/ml-IN/messages.po +++ b/apps/client/src/locales/ml-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ml\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Malayalam\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/mr-IN/messages.po b/apps/client/src/locales/mr-IN/messages.po index 07c0c440..3b7fcbb6 100644 --- a/apps/client/src/locales/mr-IN/messages.po +++ b/apps/client/src/locales/mr-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: mr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Marathi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ne-NP/messages.po b/apps/client/src/locales/ne-NP/messages.po index 5e917c49..58a2cba7 100644 --- a/apps/client/src/locales/ne-NP/messages.po +++ b/apps/client/src/locales/ne-NP/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ne\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Nepali\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/nl-NL/messages.po b/apps/client/src/locales/nl-NL/messages.po index 6c9fd18a..a5dff6a9 100644 --- a/apps/client/src/locales/nl-NL/messages.po +++ b/apps/client/src/locales/nl-NL/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: nl\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/no-NO/messages.po b/apps/client/src/locales/no-NO/messages.po index 5b1d6468..95083314 100644 --- a/apps/client/src/locales/no-NO/messages.po +++ b/apps/client/src/locales/no-NO/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: no\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/or-IN/messages.po b/apps/client/src/locales/or-IN/messages.po index db8513d9..266e08b4 100644 --- a/apps/client/src/locales/or-IN/messages.po +++ b/apps/client/src/locales/or-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: or\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Odia\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/pl-PL/messages.po b/apps/client/src/locales/pl-PL/messages.po index 5a2d5a21..e0a68287 100644 --- a/apps/client/src/locales/pl-PL/messages.po +++ b/apps/client/src/locales/pl-PL/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pl\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Polish\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/pt-BR/messages.po b/apps/client/src/locales/pt-BR/messages.po index 6555dac9..ef0f61f2 100644 --- a/apps/client/src/locales/pt-BR/messages.po +++ b/apps/client/src/locales/pt-BR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/pt-PT/messages.po b/apps/client/src/locales/pt-PT/messages.po index 92246c70..c96a59c1 100644 --- a/apps/client/src/locales/pt-PT/messages.po +++ b/apps/client/src/locales/pt-PT/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: pt\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ro-RO/messages.po b/apps/client/src/locales/ro-RO/messages.po index 1377d073..7875f510 100644 --- a/apps/client/src/locales/ro-RO/messages.po +++ b/apps/client/src/locales/ro-RO/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ro\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100>0 && n%100<20)) ? 1 : 2);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ru-RU/messages.po b/apps/client/src/locales/ru-RU/messages.po index 29e25c48..381c230b 100644 --- a/apps/client/src/locales/ru-RU/messages.po +++ b/apps/client/src/locales/ru-RU/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ru\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Russian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/sr-SP/messages.po b/apps/client/src/locales/sr-SP/messages.po index 1f69ef06..af3ff04e 100644 --- a/apps/client/src/locales/sr-SP/messages.po +++ b/apps/client/src/locales/sr-SP/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Serbian (Cyrillic)\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/sv-SE/messages.po b/apps/client/src/locales/sv-SE/messages.po index 7d941d90..7a0b3ac0 100644 --- a/apps/client/src/locales/sv-SE/messages.po +++ b/apps/client/src/locales/sv-SE/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: sv\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/ta-IN/messages.po b/apps/client/src/locales/ta-IN/messages.po index 11f47c62..904c508c 100644 --- a/apps/client/src/locales/ta-IN/messages.po +++ b/apps/client/src/locales/ta-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: ta\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Tamil\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/te-IN/messages.po b/apps/client/src/locales/te-IN/messages.po index a3221ae3..79e14911 100644 --- a/apps/client/src/locales/te-IN/messages.po +++ b/apps/client/src/locales/te-IN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: te\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Telugu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/th-TH/messages.po b/apps/client/src/locales/th-TH/messages.po index 4fcc1004..50a71ce8 100644 --- a/apps/client/src/locales/th-TH/messages.po +++ b/apps/client/src/locales/th-TH/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: th\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Thai\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/tr-TR/messages.po b/apps/client/src/locales/tr-TR/messages.po index f9de74e2..cf500908 100644 --- a/apps/client/src/locales/tr-TR/messages.po +++ b/apps/client/src/locales/tr-TR/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: tr\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/uk-UA/messages.po b/apps/client/src/locales/uk-UA/messages.po index 6683b6cc..a02ed85a 100644 --- a/apps/client/src/locales/uk-UA/messages.po +++ b/apps/client/src/locales/uk-UA/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: uk\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Plural-Forms: nplurals=4; plural=((n%10==1 && n%100!=11) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || (n%10 >= 5 && n%10 <=9)) || (n%100 >= 11 && n%100 <= 14)) ? 2 : 3));\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/vi-VN/messages.po b/apps/client/src/locales/vi-VN/messages.po index 2981f8b7..b5d5203c 100644 --- a/apps/client/src/locales/vi-VN/messages.po +++ b/apps/client/src/locales/vi-VN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: vi\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:50\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/zh-CN/messages.po b/apps/client/src/locales/zh-CN/messages.po index ed69238a..b125644a 100644 --- a/apps/client/src/locales/zh-CN/messages.po +++ b/apps/client/src/locales/zh-CN/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/locales/zh-TW/messages.po b/apps/client/src/locales/zh-TW/messages.po index ccbe0596..1b96da36 100644 --- a/apps/client/src/locales/zh-TW/messages.po +++ b/apps/client/src/locales/zh-TW/messages.po @@ -8,7 +8,7 @@ msgstr "" "Language: zh\n" "Project-Id-Version: reactive-resume\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2023-11-19 08:49\n" +"PO-Revision-Date: 2023-11-20 17:59\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Plural-Forms: nplurals=1; plural=0;\n" @@ -120,7 +120,7 @@ msgstr "" msgid "Add New Page" msgstr "" -#: apps/client/src/components/ai-actions.tsx:70 +#: apps/client/src/components/ai-actions.tsx:79 msgid "AI" msgstr "" @@ -238,8 +238,8 @@ msgstr "" msgid "Cancel" msgstr "" -#: apps/client/src/components/ai-actions.tsx:94 -#: apps/client/src/components/ai-actions.tsx:97 +#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:106 msgid "Casual" msgstr "" @@ -252,7 +252,7 @@ msgstr "" msgid "Change Password" msgstr "" -#: apps/client/src/components/ai-actions.tsx:88 +#: apps/client/src/components/ai-actions.tsx:97 msgid "Change Tone" msgstr "" @@ -288,8 +288,8 @@ msgstr "" msgid "Company" msgstr "" -#: apps/client/src/components/ai-actions.tsx:106 -#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:118 msgid "Confident" msgstr "" @@ -539,7 +539,7 @@ msgstr "" msgid "Finally," msgstr "" -#: apps/client/src/components/ai-actions.tsx:81 +#: apps/client/src/components/ai-actions.tsx:90 msgid "Fix Spelling & Grammar" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "Free, forever" msgstr "" -#: apps/client/src/components/ai-actions.tsx:112 -#: apps/client/src/components/ai-actions.tsx:115 +#: apps/client/src/components/ai-actions.tsx:121 +#: apps/client/src/components/ai-actions.tsx:124 msgid "Friendly" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Get Started" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:10 +#: apps/client/src/pages/auth/_components/social-auth.tsx:18 msgid "GitHub" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Go to Dashboard" msgstr "" -#: apps/client/src/pages/auth/_components/social-auth.tsx:17 +#: apps/client/src/pages/auth/_components/social-auth.tsx:31 msgid "Google" msgstr "" @@ -704,7 +704,7 @@ msgstr "" msgid "Import an existing resume" msgstr "" -#: apps/client/src/components/ai-actions.tsx:76 +#: apps/client/src/components/ai-actions.tsx:85 msgid "Improve Writing" msgstr "" @@ -949,6 +949,7 @@ msgstr "" msgid "One-Time Password" msgstr "" +#: apps/client/src/components/ai-actions.tsx:56 #: apps/client/src/libs/axios.ts:34 #: apps/client/src/pages/dashboard/resumes/_dialogs/import.tsx:188 #: apps/client/src/services/resume/print.tsx:34 @@ -1068,8 +1069,8 @@ msgstr "" msgid "Primary Color" msgstr "" -#: apps/client/src/components/ai-actions.tsx:100 -#: apps/client/src/components/ai-actions.tsx:103 +#: apps/client/src/components/ai-actions.tsx:109 +#: apps/client/src/components/ai-actions.tsx:112 msgid "Professional" msgstr "" @@ -1672,4 +1673,3 @@ msgstr "" #: apps/client/src/pages/builder/_components/toolbar.tsx:77 msgid "Zoom Out" msgstr "" - diff --git a/apps/client/src/pages/auth/_components/social-auth.tsx b/apps/client/src/pages/auth/_components/social-auth.tsx index fe1a0b6f..750972ba 100644 --- a/apps/client/src/pages/auth/_components/social-auth.tsx +++ b/apps/client/src/pages/auth/_components/social-auth.tsx @@ -2,20 +2,36 @@ import { t } from "@lingui/macro"; import { GithubLogo, GoogleLogo } from "@phosphor-icons/react"; import { Button } from "@reactive-resume/ui"; -export const SocialAuth = () => ( -
- +import { useAuthProviders } from "@/client/services/auth/providers"; - -
-); +export const SocialAuth = () => { + const { providers } = useAuthProviders(); + + if (!providers || providers.length === 0) return null; + + return ( +
+ {providers.includes("github") && ( + + )} + + {providers.includes("google") && ( + + )} +
+ ); +}; diff --git a/apps/client/src/pages/auth/layout.tsx b/apps/client/src/pages/auth/layout.tsx index e5f6d414..84938282 100644 --- a/apps/client/src/pages/auth/layout.tsx +++ b/apps/client/src/pages/auth/layout.tsx @@ -1,10 +1,12 @@ import { t } from "@lingui/macro"; +import { cn } from "@reactive-resume/utils"; import { useMemo } from "react"; import { Link, matchRoutes, Outlet, useLocation } from "react-router-dom"; import { LocaleSwitch } from "@/client/components/locale-switch"; import { Logo } from "@/client/components/logo"; import { ThemeSwitch } from "@/client/components/theme-switch"; +import { useAuthProviders } from "@/client/services/auth/providers"; import { SocialAuth } from "./_components/social-auth"; @@ -13,8 +15,13 @@ const authRoutes = [{ path: "/auth/login" }, { path: "/auth/register" }]; export const AuthLayout = () => { const location = useLocation(); + const { providers } = useAuthProviders(); + const emailAuthDisabled = !providers || !providers.includes("email"); + const isAuthRoute = useMemo(() => matchRoutes(authRoutes, location) !== null, [location]); + if (!providers) return null; + return (
@@ -33,7 +40,7 @@ export const AuthLayout = () => { {isAuthRoute && ( <> -
+

{t({ diff --git a/apps/client/src/pages/auth/login/page.tsx b/apps/client/src/pages/auth/login/page.tsx index 6b6100af..0b8ec058 100644 --- a/apps/client/src/pages/auth/login/page.tsx +++ b/apps/client/src/pages/auth/login/page.tsx @@ -14,6 +14,7 @@ import { FormMessage, Input, } from "@reactive-resume/ui"; +import { cn } from "@reactive-resume/utils"; import { useRef } from "react"; import { Helmet } from "react-helmet-async"; import { useForm } from "react-hook-form"; @@ -21,12 +22,16 @@ import { Link } from "react-router-dom"; import { z } from "zod"; import { useLogin } from "@/client/services/auth"; +import { useAuthProviders } from "@/client/services/auth/providers"; type FormValues = z.infer; export const LoginPage = () => { const { login, loading } = useLogin(); + const { providers } = useAuthProviders(); + const emailAuthDisabled = !providers || !providers.includes("email"); + const formRef = useRef(null); usePasswordToggle(formRef); @@ -53,7 +58,7 @@ export const LoginPage = () => {

{t`Sign in to your account`}

-
+
{t`Don't have an account?`}
-
+
; @@ -28,6 +30,9 @@ export const RegisterPage = () => { const navigate = useNavigate(); const { register, loading } = useRegister(); + const { providers } = useAuthProviders(); + const emailAuthDisabled = !providers || !providers.includes("email"); + const formRef = useRef(null); usePasswordToggle(formRef); @@ -62,7 +67,7 @@ export const RegisterPage = () => {

{t`Create a new account`}

-
+
{t`Already have an account?`}
-
+
( -
- - - {t`Reactive Resume`} - {t`A free and open-source resume builder`} - - +export const HomePage = () => { + const { i18n } = useLingui(); - - - - - - - - - -
-); + return ( +
+ + + + + {t`Reactive Resume`} - {t`A free and open-source resume builder`} + + + + + + + + + + + + + + +
+ ); +}; diff --git a/apps/client/src/pages/home/sections/hero/index.tsx b/apps/client/src/pages/home/sections/hero/index.tsx index 5b9a4984..d72d3962 100644 --- a/apps/client/src/pages/home/sections/hero/index.tsx +++ b/apps/client/src/pages/home/sections/hero/index.tsx @@ -57,7 +57,7 @@ export const HeroSection = () => ( Reactive Resume - Screenshot - Builder Screen diff --git a/apps/client/src/providers/index.tsx b/apps/client/src/providers/index.tsx index dadfcdfa..4bb0d581 100644 --- a/apps/client/src/providers/index.tsx +++ b/apps/client/src/providers/index.tsx @@ -3,6 +3,7 @@ import { QueryClientProvider } from "@tanstack/react-query"; import { HelmetProvider } from "react-helmet-async"; import { Outlet } from "react-router-dom"; +import { helmetContext } from "../constants/helmet"; import { queryClient } from "../libs/query-client"; import { DialogProvider } from "./dialog"; import { LocaleProvider } from "./locale"; @@ -11,18 +12,18 @@ import { Toaster } from "./toaster"; export const Providers = () => ( - - - - - + + + + + - - - - - + + + + + ); diff --git a/apps/client/src/router/loaders/auth.ts b/apps/client/src/router/loaders/auth.ts index 2d353ddb..a70c499c 100644 --- a/apps/client/src/router/loaders/auth.ts +++ b/apps/client/src/router/loaders/auth.ts @@ -9,23 +9,21 @@ import { useAuthStore } from "@/client/stores/auth"; export const authLoader: LoaderFunction = async ({ request }) => { const status = new URL(request.url).searchParams.get("status"); - const { success } = authResponseSchema - .pick({ status: true }) - .safeParse({ status: new URL(request.url).searchParams.get("status") }); + const { success } = authResponseSchema.pick({ status: true }).safeParse({ status }); if (!success) return redirect("/auth/login"); + if (status === "2fa_required") { + return redirect("/auth/verify-otp"); + } + const user = await queryClient.fetchQuery({ queryKey: [USER_KEY], queryFn: fetchUser, }); if (!user) { - redirect("/auth/login"); - } - - if (status === "2fa_required") { - return redirect("/auth/verify-otp"); + return redirect("/auth/login"); } if (status === "authenticated") { diff --git a/apps/client/src/services/auth/providers.ts b/apps/client/src/services/auth/providers.ts new file mode 100644 index 00000000..70ce68a7 --- /dev/null +++ b/apps/client/src/services/auth/providers.ts @@ -0,0 +1,24 @@ +import { AuthProvidersDto } from "@reactive-resume/dto"; +import { useQuery } from "@tanstack/react-query"; + +import { AUTH_PROVIDERS_KEY } from "@/client/constants/query-keys"; +import { axios } from "@/client/libs/axios"; + +export const getAuthProviders = async () => { + const response = await axios.get(`/auth/providers`); + + return response.data; +}; + +export const useAuthProviders = () => { + const { + error, + isPending: loading, + data: providers, + } = useQuery({ + queryKey: [AUTH_PROVIDERS_KEY], + queryFn: getAuthProviders, + }); + + return { providers, loading, error }; +}; diff --git a/apps/client/src/services/resume/translation.ts b/apps/client/src/services/resume/translation.ts index 500264ab..39efcf91 100644 --- a/apps/client/src/services/resume/translation.ts +++ b/apps/client/src/services/resume/translation.ts @@ -1,6 +1,7 @@ import { Language } from "@reactive-resume/utils"; import { useQuery } from "@tanstack/react-query"; +import { LANGUAGES_KEY } from "@/client/constants/query-keys"; import { axios } from "@/client/libs/axios"; export const fetchLanguages = async () => { @@ -15,7 +16,7 @@ export const useLanguages = () => { isPending: loading, data: languages, } = useQuery({ - queryKey: ["translation", "languages"], + queryKey: [LANGUAGES_KEY], queryFn: fetchLanguages, }); diff --git a/apps/server/src/auth/auth.controller.ts b/apps/server/src/auth/auth.controller.ts index 7148b7a6..f141180d 100644 --- a/apps/server/src/auth/auth.controller.ts +++ b/apps/server/src/auth/auth.controller.ts @@ -106,6 +106,12 @@ export class AuthController { return this.handleAuthenticationResponse(user, response); } + @Get("providers") + getAuthProviders() { + return this.authService.getAuthProviders(); + } + + // OAuth Flows @ApiTags("OAuth", "GitHub") @Get("github") @UseGuards(GitHubGuard) diff --git a/apps/server/src/auth/auth.module.ts b/apps/server/src/auth/auth.module.ts index e8c7c3af..e16c1ec9 100644 --- a/apps/server/src/auth/auth.module.ts +++ b/apps/server/src/auth/auth.module.ts @@ -32,22 +32,6 @@ export class AuthModule { TwoFactorStrategy, // OAuth2 Strategies - { - provide: GoogleStrategy, - inject: [ConfigService, UserService], - useFactory: (configService: ConfigService, userService: UserService) => { - try { - const clientID = configService.getOrThrow("GOOGLE_CLIENT_ID"); - const clientSecret = configService.getOrThrow("GOOGLE_CLIENT_SECRET"); - const callbackURL = configService.getOrThrow("GOOGLE_CALLBACK_URL"); - - return new GoogleStrategy(clientID, clientSecret, callbackURL, userService); - } catch (error) { - return new DummyStrategy(); - } - }, - }, - { provide: GitHubStrategy, inject: [ConfigService, UserService], @@ -63,6 +47,22 @@ export class AuthModule { } }, }, + + { + provide: GoogleStrategy, + inject: [ConfigService, UserService], + useFactory: (configService: ConfigService, userService: UserService) => { + try { + const clientID = configService.getOrThrow("GOOGLE_CLIENT_ID"); + const clientSecret = configService.getOrThrow("GOOGLE_CLIENT_SECRET"); + const callbackURL = configService.getOrThrow("GOOGLE_CALLBACK_URL"); + + return new GoogleStrategy(clientID, clientSecret, callbackURL, userService); + } catch (error) { + return new DummyStrategy(); + } + }, + }, ], exports: [AuthService], }; diff --git a/apps/server/src/auth/auth.service.ts b/apps/server/src/auth/auth.service.ts index 00c74a4e..5f793080 100644 --- a/apps/server/src/auth/auth.service.ts +++ b/apps/server/src/auth/auth.service.ts @@ -7,7 +7,7 @@ import { import { ConfigService } from "@nestjs/config"; import { JwtService } from "@nestjs/jwt"; import { PrismaClientKnownRequestError } from "@prisma/client/runtime/library"; -import { LoginDto, RegisterDto } from "@reactive-resume/dto"; +import { AuthProvidersDto, LoginDto, RegisterDto } from "@reactive-resume/dto"; import { ErrorMessage } from "@reactive-resume/utils"; import * as bcryptjs from "bcryptjs"; import { randomBytes } from "crypto"; @@ -171,6 +171,32 @@ export class AuthService { }); } + getAuthProviders() { + const providers: AuthProvidersDto = []; + + if (!this.configService.get("DISABLE_EMAIL_AUTH")) { + providers.push("email"); + } + + if ( + this.configService.get("GITHUB_CLIENT_ID") && + this.configService.get("GITHUB_CLIENT_SECRET") && + this.configService.get("GITHUB_CALLBACK_URL") + ) { + providers.push("github"); + } + + if ( + this.configService.get("GOOGLE_CLIENT_ID") && + this.configService.get("GOOGLE_CLIENT_SECRET") && + this.configService.get("GOOGLE_CALLBACK_URL") + ) { + providers.push("google"); + } + + return providers; + } + // Email Verification Flows async sendVerificationEmail(email: string) { try { diff --git a/apps/server/src/config/schema.ts b/apps/server/src/config/schema.ts index b57729bb..93ed8334 100644 --- a/apps/server/src/config/schema.ts +++ b/apps/server/src/config/schema.ts @@ -6,8 +6,7 @@ export const configSchema = z.object({ // Ports PORT: z.coerce.number().default(3000), - // Client Port & URL (only for development environments) - __DEV__CLIENT_PORT: z.coerce.number().optional(), + // Client URL (only for development environments) __DEV__CLIENT_URL: z.string().url().optional(), // URLs @@ -44,7 +43,10 @@ export const configSchema = z.object({ // Crowdin (Optional) CROWDIN_PROJECT_ID: z.coerce.number().optional(), - CROWDIN_ACCESS_TOKEN: z.string().optional(), + CROWDIN_PERSONAL_TOKEN: z.string().optional(), + + // Email (Optional) + DISABLE_EMAIL_AUTH: z.coerce.boolean().optional().default(false), // GitHub (OAuth) GITHUB_CLIENT_ID: z.string().optional(), diff --git a/apps/server/src/contributors/contributors.service.ts b/apps/server/src/contributors/contributors.service.ts index 65748eb0..e43ced76 100644 --- a/apps/server/src/contributors/contributors.service.ts +++ b/apps/server/src/contributors/contributors.service.ts @@ -35,21 +35,25 @@ export class ContributorsService { async fetchCrowdinContributors() { const projectId = this.configService.getOrThrow("CROWDIN_PROJECT_ID"); - const accessToken = this.configService.getOrThrow("CROWDIN_ACCESS_TOKEN"); + const accessToken = this.configService.getOrThrow("CROWDIN_PERSONAL_TOKEN"); - const response = await this.httpService.axiosRef.get( - `https://api.crowdin.com/api/v2/projects/${projectId}/members`, - { headers: { Authorization: `Bearer ${accessToken}` } }, - ); - const { data } = response.data as CrowdinContributorsResponse; + try { + const response = await this.httpService.axiosRef.get( + `https://api.crowdin.com/api/v2/projects/${projectId}/members`, + { headers: { Authorization: `Bearer ${accessToken}` } }, + ); + const { data } = response.data as CrowdinContributorsResponse; - return data.map(({ data }) => { - return { - id: data.id, - name: data.username, - url: `https://crowdin.com/profile/${data.username}`, - avatar: data.avatarUrl, - } satisfies ContributorDto; - }); + return data.map(({ data }) => { + return { + id: data.id, + name: data.username, + url: `https://crowdin.com/profile/${data.username}`, + avatar: data.avatarUrl, + } satisfies ContributorDto; + }); + } catch (error) { + return []; + } } } diff --git a/apps/server/src/translation/translation.service.ts b/apps/server/src/translation/translation.service.ts index 4373de9d..0be5a413 100644 --- a/apps/server/src/translation/translation.service.ts +++ b/apps/server/src/translation/translation.service.ts @@ -24,7 +24,7 @@ export class TranslationService { async fetchLanguages() { try { const projectId = this.configService.getOrThrow("CROWDIN_PROJECT_ID"); - const accessToken = this.configService.getOrThrow("CROWDIN_ACCESS_TOKEN"); + const accessToken = this.configService.getOrThrow("CROWDIN_PERSONAL_TOKEN"); const response = await this.httpService.axiosRef.get( `https://api.crowdin.com/api/v2/projects/${projectId}/languages/progress?limit=100`, diff --git a/crowdin.yml b/crowdin.yml index 2b6e3d16..26700490 100644 --- a/crowdin.yml +++ b/crowdin.yml @@ -2,7 +2,7 @@ base_path: . preserve_hierarchy: false project_id_env: CROWDIN_PROJECT_ID -api_token_env: CROWDIN_ACCESS_TOKEN +api_token_env: CROWDIN_PERSONAL_TOKEN files: - source: /apps/client/src/locales/en-US/messages.po diff --git a/libs/dto/src/auth/index.ts b/libs/dto/src/auth/index.ts index 8d9d700d..b06e2fad 100644 --- a/libs/dto/src/auth/index.ts +++ b/libs/dto/src/auth/index.ts @@ -1,6 +1,7 @@ export * from "./forgot-password"; export * from "./login"; export * from "./message"; +export * from "./providers"; export * from "./register"; export * from "./reset-password"; export * from "./response"; diff --git a/libs/dto/src/auth/providers.ts b/libs/dto/src/auth/providers.ts new file mode 100644 index 00000000..1c02472a --- /dev/null +++ b/libs/dto/src/auth/providers.ts @@ -0,0 +1,6 @@ +import { createZodDto } from "nestjs-zod/dto"; +import { z } from "nestjs-zod/z"; + +const authProvidersSchema = z.array(z.enum(["email", "github", "google"])); + +export class AuthProvidersDto extends createZodDto(authProvidersSchema) {} diff --git a/package.json b/package.json index 9301e8b8..cc05b1cd 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@reactive-resume/source", "description": "A free and open-source resume builder that simplifies the process of creating, updating, and sharing your resume.", - "version": "4.0.0-alpha.7", + "version": "4.0.0-alpha.8", "license": "MIT", "private": true, "author": { @@ -35,21 +35,21 @@ "@lingui/swc-plugin": "^4.0.4", "@lingui/vite-plugin": "^4.5.0", "@nestjs/schematics": "^10.0.3", - "@nestjs/testing": "^10.2.9", - "@nx/eslint-plugin": "17.1.2", - "@nx/eslint": "17.1.2", - "@nx/jest": "17.1.2", - "@nx/js": "17.1.2", - "@nx/nest": "17.1.2", - "@nx/node": "17.1.2", - "@nx/react": "17.1.2", - "@nx/vite": "17.1.2", - "@nx/web": "17.1.2", - "@nx/webpack": "17.1.2", - "@nx/workspace": "17.1.2", + "@nestjs/testing": "^10.2.10", + "@nx/eslint": "17.1.3", + "@nx/eslint-plugin": "17.1.3", + "@nx/jest": "17.1.3", + "@nx/js": "17.1.3", + "@nx/nest": "17.1.3", + "@nx/node": "17.1.3", + "@nx/react": "17.1.3", + "@nx/vite": "17.1.3", + "@nx/web": "17.1.3", + "@nx/webpack": "17.1.3", + "@nx/workspace": "17.1.3", "@swc-node/register": "~1.6.8", "@swc/cli": "~0.1.63", - "@swc/core": "~1.3.96", + "@swc/core": "~1.3.99", "@tailwindcss/container-queries": "^0.1.1", "@tailwindcss/forms": "^0.5.7", "@tailwindcss/typography": "^0.5.10", @@ -60,56 +60,56 @@ "@types/cookie-parser": "^1.4.6", "@types/express": "^4.17.21", "@types/file-saver": "^2.0.7", - "@types/jest": "^29.5.8", + "@types/jest": "^29.5.9", "@types/lodash.debounce": "^4.0.9", "@types/lodash.get": "^4.4.9", "@types/lodash.set": "^4.3.9", - "@types/multer": "^1.4.10", - "@types/node": "20.9.2", + "@types/multer": "^1.4.11", + "@types/node": "20.9.3", "@types/nodemailer": "^6.4.14", - "@types/papaparse": "^5.3.11", + "@types/papaparse": "^5.3.12", + "@types/passport": "^1.0.16", "@types/passport-github2": "^1.2.9", "@types/passport-google-oauth20": "^2.0.14", "@types/passport-local": "^1.0.38", - "@types/passport": "^1.0.15", - "@types/react-dom": "18.2.15", + "@types/react": "18.2.38", + "@types/react-dom": "18.2.16", "@types/react-is": "18.2.4", - "@types/react": "18.2.37", "@types/retry": "^0.12.5", - "@types/webfontloader": "^1.6.37", - "@typescript-eslint/eslint-plugin": "^6.11.0", - "@typescript-eslint/parser": "^6.11.0", - "@vitejs/plugin-react-swc": "~3.5.0", + "@types/webfontloader": "^1.6.38", + "@typescript-eslint/eslint-plugin": "^6.12.0", + "@typescript-eslint/parser": "^6.12.0", "@vitejs/plugin-react": "~4.2.0", + "@vitejs/plugin-react-swc": "~3.5.0", "@vitest/coverage-v8": "^0.34.6", "@vitest/ui": "~0.34.6", "autoprefixer": "^10.4.16", + "eslint": "~8.54.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-import": "2.29.0", "eslint-plugin-jsx-a11y": "6.8.0", "eslint-plugin-lingui": "^0.2.0", "eslint-plugin-prettier": "^5.0.1", - "eslint-plugin-react-hooks": "4.6.0", "eslint-plugin-react": "7.33.2", + "eslint-plugin-react-hooks": "4.6.0", "eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-tailwindcss": "^3.13.0", "eslint-plugin-unused-imports": "^3.0.0", - "eslint": "~8.54.0", - "jest-environment-node": "^29.7.0", "jest": "^29.7.0", + "jest-environment-node": "^29.7.0", "jsdom": "~22.1.0", - "nx": "17.1.2", + "nx": "17.1.3", + "postcss": "8.4.31", "postcss-import": "^15.1.0", "postcss-nested": "^6.0.1", - "postcss": "8.4.31", "prettier": "^3.1.0", - "tailwindcss-animate": "^1.0.7", "tailwindcss": "^3.3.5", + "tailwindcss-animate": "^1.0.7", "ts-jest": "^29.1.1", "ts-node": "10.9.1", - "typescript": "~5.2.2", - "vite-plugin-dts": "~3.6.3", + "typescript": "~5.3.2", "vite": "~5.0.0", + "vite-plugin-dts": "~3.6.3", "vitest": "~0.34.6" }, "dependencies": { @@ -126,12 +126,12 @@ "@lingui/react": "^4.5.0", "@nestjs-modules/mailer": "^1.9.1", "@nestjs/axios": "^3.0.1", - "@nestjs/common": "^10.2.9", + "@nestjs/common": "^10.2.10", "@nestjs/config": "^3.1.1", - "@nestjs/core": "^10.2.9", + "@nestjs/core": "^10.2.10", "@nestjs/jwt": "^10.2.0", "@nestjs/passport": "^10.0.2", - "@nestjs/platform-express": "^10.2.9", + "@nestjs/platform-express": "^10.2.10", "@nestjs/serve-static": "^4.0.0", "@nestjs/swagger": "^7.1.16", "@nestjs/terminus": "^10.1.1", @@ -159,12 +159,12 @@ "@radix-ui/react-switch": "^1.0.3", "@radix-ui/react-tabs": "^1.0.4", "@radix-ui/react-toast": "^1.1.5", - "@radix-ui/react-toggle-group": "^1.0.4", "@radix-ui/react-toggle": "^1.0.3", + "@radix-ui/react-toggle-group": "^1.0.4", "@radix-ui/react-tooltip": "^1.0.7", - "@sentry/node": "^7.80.1", - "@songkeys/nestjs-redis-health": "^10.0.0", + "@sentry/node": "^7.81.0", "@songkeys/nestjs-redis": "^10.0.0", + "@songkeys/nestjs-redis-health": "^10.0.0", "@swc/helpers": "~0.5.3", "@tanstack/react-query": "^5.8.4", "@tiptap/extension-highlight": "^2.1.12", @@ -176,8 +176,8 @@ "@tiptap/starter-kit": "^2.1.12", "@types/passport-jwt": "^3.0.13", "async-retry": "^1.3.3", - "axios-auth-refresh": "^3.3.6", "axios": "^1.6.2", + "axios-auth-refresh": "^3.3.6", "bcryptjs": "^2.4.3", "class-variance-authority": "^0.7.0", "clsx": "^2.0.0", @@ -200,27 +200,27 @@ "nestjs-prisma": "^0.22.0", "nestjs-zod": "^3.0.0", "nodemailer": "^6.9.7", - "openai": "^4.19.0", + "openai": "^4.19.1", "otplib": "^12.0.1", "papaparse": "^5.4.1", + "passport": "^0.6.0", "passport-github2": "^0.1.12", "passport-google-oauth20": "^2.0.0", "passport-jwt": "^4.0.1", "passport-local": "^1.0.0", - "passport": "^0.6.0", "pdf-lib": "^1.17.1", "prisma": "^5.6.0", "puppeteer": "^21.4.1", "qrcode.react": "^3.1.0", + "react": "18.2.0", "react-colorful": "^5.6.1", "react-dom": "18.2.0", - "react-helmet-async": "^1.3.0", + "react-helmet-async": "^2.0.0", "react-hook-form": "^7.48.2", "react-parallax-tilt": "^1.7.174", - "react-resizable-panels": "^0.0.59", + "react-resizable-panels": "^0.0.61", "react-router-dom": "6.19.0", "react-zoom-pan-pinch": "^3.3.0", - "react": "18.2.0", "reflect-metadata": "^0.1.13", "rxjs": "^7.8.1", "sharp": "^0.32.6", @@ -231,8 +231,8 @@ "use-keyboard-shortcut": "^1.1.6", "usehooks-ts": "^2.9.1", "webfontloader": "^1.6.28", - "zod-to-json-schema": "^3.22.0", "zod": "^3.22.4", + "zod-to-json-schema": "^3.22.0", "zundo": "^2.0.0", "zustand": "^4.4.6" }, diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 88ec7da0..b127c825 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -25,7 +25,7 @@ dependencies: version: 3.3.2(react-hook-form@7.48.2) '@lingui/cli': specifier: ^4.5.0 - version: 4.5.0(typescript@5.2.2) + version: 4.5.0(typescript@5.3.2) '@lingui/core': specifier: ^4.5.0 version: 4.5.0 @@ -34,43 +34,43 @@ dependencies: version: 4.5.0 '@lingui/macro': specifier: ^4.5.0 - version: 4.5.0(@lingui/react@4.5.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2) + version: 4.5.0(@lingui/react@4.5.0)(babel-plugin-macros@3.1.0)(typescript@5.3.2) '@lingui/react': specifier: ^4.5.0 version: 4.5.0(react@18.2.0) '@nestjs-modules/mailer': specifier: ^1.9.1 - version: 1.9.1(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(nodemailer@6.9.7) + version: 1.9.1(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(nodemailer@6.9.7) '@nestjs/axios': specifier: ^3.0.1 - version: 3.0.1(@nestjs/common@10.2.9)(axios@1.6.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + version: 3.0.1(@nestjs/common@10.2.10)(axios@1.6.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/common': - specifier: ^10.2.9 - version: 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + specifier: ^10.2.10 + version: 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/config': specifier: ^3.1.1 - version: 3.1.1(@nestjs/common@10.2.9)(reflect-metadata@0.1.13) + version: 3.1.1(@nestjs/common@10.2.10)(reflect-metadata@0.1.13) '@nestjs/core': - specifier: ^10.2.9 - version: 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) + specifier: ^10.2.10 + version: 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@nestjs/jwt': specifier: ^10.2.0 - version: 10.2.0(@nestjs/common@10.2.9) + version: 10.2.0(@nestjs/common@10.2.10) '@nestjs/passport': specifier: ^10.0.2 - version: 10.0.2(@nestjs/common@10.2.9)(passport@0.6.0) + version: 10.0.2(@nestjs/common@10.2.10)(passport@0.6.0) '@nestjs/platform-express': - specifier: ^10.2.9 - version: 10.2.9(@nestjs/common@10.2.9)(@nestjs/core@10.2.9) + specifier: ^10.2.10 + version: 10.2.10(@nestjs/common@10.2.10)(@nestjs/core@10.2.10) '@nestjs/serve-static': specifier: ^4.0.0 - version: 4.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9) + version: 4.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10) '@nestjs/swagger': specifier: ^7.1.16 - version: 7.1.16(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(reflect-metadata@0.1.13) + version: 7.1.16(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(reflect-metadata@0.1.13) '@nestjs/terminus': specifier: ^10.1.1 - version: 10.1.1(@nestjs/axios@3.0.1)(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@prisma/client@5.6.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + version: 10.1.1(@nestjs/axios@3.0.1)(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@prisma/client@5.6.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@paralleldrive/cuid2': specifier: ^2.2.2 version: 2.2.2 @@ -85,82 +85,82 @@ dependencies: version: 5.6.0(prisma@5.6.0) '@radix-ui/react-accordion': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.1.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-alert-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-aspect-ratio': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-avatar': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-checkbox': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-context-menu': specifier: ^2.1.5 - version: 2.1.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 2.1.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-dialog': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-dropdown-menu': specifier: ^2.0.6 - version: 2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-hover-card': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-label': specifier: ^2.0.2 - version: 2.0.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-popover': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-portal': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-scroll-area': specifier: ^1.0.5 - version: 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-select': specifier: ^2.0.0 - version: 2.0.0(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 2.0.0(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-separator': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-slider': specifier: ^1.1.2 - version: 1.1.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.1.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-slot': specifier: ^1.0.2 - version: 1.0.2(@types/react@18.2.37)(react@18.2.0) + version: 1.0.2(@types/react@18.2.38)(react@18.2.0) '@radix-ui/react-switch': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-tabs': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-toast': specifier: ^1.1.5 - version: 1.1.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.1.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-toggle': specifier: ^1.0.3 - version: 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-toggle-group': specifier: ^1.0.4 - version: 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@radix-ui/react-tooltip': specifier: ^1.0.7 - version: 1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) '@sentry/node': - specifier: ^7.80.1 - version: 7.80.1 + specifier: ^7.81.0 + version: 7.81.0 '@songkeys/nestjs-redis': specifier: ^10.0.0 - version: 10.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(ioredis@5.3.2) + version: 10.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(ioredis@5.3.2) '@songkeys/nestjs-redis-health': specifier: ^10.0.0 - version: 10.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@nestjs/terminus@10.1.1)(ioredis@5.3.2) + version: 10.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@nestjs/terminus@10.1.1)(ioredis@5.3.2) '@swc/helpers': specifier: ~0.5.3 version: 0.5.3 @@ -211,7 +211,7 @@ dependencies: version: 2.0.0 cmdk: specifier: ^0.2.0 - version: 0.2.0(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + version: 0.2.0(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) cookie-parser: specifier: ^1.4.6 version: 1.4.6 @@ -253,22 +253,22 @@ dependencies: version: 7.1.3 nest-raven: specifier: ^10.0.0 - version: 10.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@sentry/node@7.80.1)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) + version: 10.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@sentry/node@7.81.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1) nestjs-minio-client: specifier: ^2.2.0 - version: 2.2.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9) + version: 2.2.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10) nestjs-prisma: specifier: ^0.22.0 - version: 0.22.0(@nestjs/common@10.2.9)(@prisma/client@5.6.0)(prisma@5.6.0) + version: 0.22.0(@nestjs/common@10.2.10)(@prisma/client@5.6.0)(prisma@5.6.0) nestjs-zod: specifier: ^3.0.0 - version: 3.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@nestjs/swagger@7.1.16)(zod@3.22.4) + version: 3.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@nestjs/swagger@7.1.16)(zod@3.22.4) nodemailer: specifier: ^6.9.7 version: 6.9.7 openai: - specifier: ^4.19.0 - version: 4.19.0 + specifier: ^4.19.1 + version: 4.19.1 otplib: specifier: ^12.0.1 version: 12.0.1 @@ -298,7 +298,7 @@ dependencies: version: 5.6.0 puppeteer: specifier: ^21.4.1 - version: 21.5.2(typescript@5.2.2) + version: 21.5.2(typescript@5.3.2) qrcode.react: specifier: ^3.1.0 version: 3.1.0(react@18.2.0) @@ -312,8 +312,8 @@ dependencies: specifier: 18.2.0 version: 18.2.0(react@18.2.0) react-helmet-async: - specifier: ^1.3.0 - version: 1.3.0(react-dom@18.2.0)(react@18.2.0) + specifier: ^2.0.0 + version: 2.0.0(react-dom@18.2.0)(react@18.2.0) react-hook-form: specifier: ^7.48.2 version: 7.48.2(react@18.2.0) @@ -321,8 +321,8 @@ dependencies: specifier: ^1.7.174 version: 1.7.174(react-dom@18.2.0)(react@18.2.0) react-resizable-panels: - specifier: ^0.0.59 - version: 0.0.59(react-dom@18.2.0)(react@18.2.0) + specifier: ^0.0.61 + version: 0.0.61(react-dom@18.2.0)(react@18.2.0) react-router-dom: specifier: 6.19.0 version: 6.19.0(react-dom@18.2.0)(react@18.2.0) @@ -370,7 +370,7 @@ dependencies: version: 2.0.0(zustand@4.4.6) zustand: specifier: ^4.4.6 - version: 4.4.6(@types/react@18.2.37)(immer@10.0.3)(react@18.2.0) + version: 4.4.6(@types/react@18.2.38)(immer@10.0.3)(react@18.2.0) devDependencies: '@babel/core': @@ -381,61 +381,61 @@ devDependencies: version: 7.23.3(@babel/core@7.23.3) '@lingui/conf': specifier: ^4.5.0 - version: 4.5.0(typescript@5.2.2) + version: 4.5.0(typescript@5.3.2) '@lingui/swc-plugin': specifier: ^4.0.4 - version: 4.0.4(@lingui/macro@4.5.0)(@swc/core@1.3.96) + version: 4.0.4(@lingui/macro@4.5.0)(@swc/core@1.3.99) '@lingui/vite-plugin': specifier: ^4.5.0 - version: 4.5.0(typescript@5.2.2)(vite@5.0.0) + version: 4.5.0(typescript@5.3.2)(vite@5.0.0) '@nestjs/schematics': specifier: ^10.0.3 - version: 10.0.3(typescript@5.2.2) + version: 10.0.3(typescript@5.3.2) '@nestjs/testing': - specifier: ^10.2.9 - version: 10.2.9(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@nestjs/platform-express@10.2.9) + specifier: ^10.2.10 + version: 10.2.10(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@nestjs/platform-express@10.2.10) '@nx/eslint': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3) '@nx/eslint-plugin': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(@typescript-eslint/parser@6.11.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(@typescript-eslint/parser@6.12.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2) '@nx/jest': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) '@nx/js': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) '@nx/nest': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) '@nx/node': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) '@nx/react': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2)(webpack@5.89.0) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2)(webpack@5.89.0) '@nx/vite': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2)(vite@5.0.0)(vitest@0.34.6) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2)(vite@5.0.0)(vitest@0.34.6) '@nx/web': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) '@nx/webpack': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) '@nx/workspace': - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) '@swc-node/register': specifier: ~1.6.8 - version: 1.6.8(@swc/core@1.3.96)(typescript@5.2.2) + version: 1.6.8(@swc/core@1.3.99)(typescript@5.3.2) '@swc/cli': specifier: ~0.1.63 - version: 0.1.63(@swc/core@1.3.96) + version: 0.1.63(@swc/core@1.3.99) '@swc/core': - specifier: ~1.3.96 - version: 1.3.96(@swc/helpers@0.5.3) + specifier: ~1.3.99 + version: 1.3.99(@swc/helpers@0.5.3) '@tailwindcss/container-queries': specifier: ^0.1.1 version: 0.1.1(tailwindcss@3.3.5) @@ -447,7 +447,7 @@ devDependencies: version: 0.5.10(tailwindcss@3.3.5) '@tanstack/eslint-plugin-query': specifier: ^5.8.4 - version: 5.8.4(eslint@8.54.0)(typescript@5.2.2) + version: 5.8.4(eslint@8.54.0)(typescript@5.3.2) '@testing-library/react': specifier: 14.1.2 version: 14.1.2(react-dom@18.2.0)(react@18.2.0) @@ -467,8 +467,8 @@ devDependencies: specifier: ^2.0.7 version: 2.0.7 '@types/jest': - specifier: ^29.5.8 - version: 29.5.8 + specifier: ^29.5.9 + version: 29.5.9 '@types/lodash.debounce': specifier: ^4.0.9 version: 4.0.9 @@ -479,20 +479,20 @@ devDependencies: specifier: ^4.3.9 version: 4.3.9 '@types/multer': - specifier: ^1.4.10 - version: 1.4.10 + specifier: ^1.4.11 + version: 1.4.11 '@types/node': - specifier: 20.9.2 - version: 20.9.2 + specifier: 20.9.3 + version: 20.9.3 '@types/nodemailer': specifier: ^6.4.14 version: 6.4.14 '@types/papaparse': - specifier: ^5.3.11 - version: 5.3.11 + specifier: ^5.3.12 + version: 5.3.12 '@types/passport': - specifier: ^1.0.15 - version: 1.0.15 + specifier: ^1.0.16 + version: 1.0.16 '@types/passport-github2': specifier: ^1.2.9 version: 1.2.9 @@ -503,11 +503,11 @@ devDependencies: specifier: ^1.0.38 version: 1.0.38 '@types/react': - specifier: 18.2.37 - version: 18.2.37 + specifier: 18.2.38 + version: 18.2.38 '@types/react-dom': - specifier: 18.2.15 - version: 18.2.15 + specifier: 18.2.16 + version: 18.2.16 '@types/react-is': specifier: 18.2.4 version: 18.2.4 @@ -515,14 +515,14 @@ devDependencies: specifier: ^0.12.5 version: 0.12.5 '@types/webfontloader': - specifier: ^1.6.37 - version: 1.6.37 + specifier: ^1.6.38 + version: 1.6.38 '@typescript-eslint/eslint-plugin': - specifier: ^6.11.0 - version: 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2) + specifier: ^6.12.0 + version: 6.12.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0)(typescript@5.3.2) '@typescript-eslint/parser': - specifier: ^6.11.0 - version: 6.11.0(eslint@8.54.0)(typescript@5.2.2) + specifier: ^6.12.0 + version: 6.12.0(eslint@8.54.0)(typescript@5.3.2) '@vitejs/plugin-react': specifier: ~4.2.0 version: 4.2.0(vite@5.0.0) @@ -546,13 +546,13 @@ devDependencies: version: 9.0.0(eslint@8.54.0) eslint-plugin-import: specifier: 2.29.0 - version: 2.29.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0) + version: 2.29.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0) eslint-plugin-jsx-a11y: specifier: 6.8.0 version: 6.8.0(eslint@8.54.0) eslint-plugin-lingui: specifier: ^0.2.0 - version: 0.2.0(eslint@8.54.0)(typescript@5.2.2) + version: 0.2.0(eslint@8.54.0)(typescript@5.3.2) eslint-plugin-prettier: specifier: ^5.0.1 version: 5.0.1(eslint-config-prettier@9.0.0)(eslint@8.54.0)(prettier@3.1.0) @@ -570,10 +570,10 @@ devDependencies: version: 3.13.0(tailwindcss@3.3.5) eslint-plugin-unused-imports: specifier: ^3.0.0 - version: 3.0.0(@typescript-eslint/eslint-plugin@6.11.0)(eslint@8.54.0) + version: 3.0.0(@typescript-eslint/eslint-plugin@6.12.0)(eslint@8.54.0) jest: specifier: ^29.7.0 - version: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + version: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) jest-environment-node: specifier: ^29.7.0 version: 29.7.0 @@ -581,8 +581,8 @@ devDependencies: specifier: ~22.1.0 version: 22.1.0 nx: - specifier: 17.1.2 - version: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) + specifier: 17.1.3 + version: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) postcss: specifier: 8.4.31 version: 8.4.31 @@ -603,19 +603,19 @@ devDependencies: version: 1.0.7(tailwindcss@3.3.5) ts-jest: specifier: ^29.1.1 - version: 29.1.1(@babel/core@7.23.3)(jest@29.7.0)(typescript@5.2.2) + version: 29.1.1(@babel/core@7.23.3)(jest@29.7.0)(typescript@5.3.2) ts-node: specifier: 10.9.1 - version: 10.9.1(@swc/core@1.3.96)(@types/node@20.9.2)(typescript@5.2.2) + version: 10.9.1(@swc/core@1.3.99)(@types/node@20.9.3)(typescript@5.3.2) typescript: - specifier: ~5.2.2 - version: 5.2.2 + specifier: ~5.3.2 + version: 5.3.2 vite: specifier: ~5.0.0 - version: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) + version: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) vite-plugin-dts: specifier: ~3.6.3 - version: 3.6.3(@types/node@20.9.2)(typescript@5.2.2)(vite@5.0.0) + version: 3.6.3(@types/node@20.9.3)(typescript@5.3.2)(vite@5.0.0) vitest: specifier: ~0.34.6 version: 0.34.6(@vitest/ui@0.34.6)(jsdom@22.1.0)(less@4.1.3)(stylus@0.59.0) @@ -2703,7 +2703,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 chalk: 4.1.2 jest-message-util: 29.7.0 jest-util: 29.7.0 @@ -2724,14 +2724,14 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 ansi-escapes: 4.3.2 chalk: 4.1.2 ci-info: 3.9.0 exit: 0.1.2 graceful-fs: 4.2.11 jest-changed-files: 29.7.0 - jest-config: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) jest-haste-map: 29.7.0 jest-message-util: 29.7.0 jest-regex-util: 29.6.3 @@ -2759,7 +2759,7 @@ packages: dependencies: '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 jest-mock: 29.7.0 dev: true @@ -2786,7 +2786,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@sinonjs/fake-timers': 10.3.0 - '@types/node': 20.9.2 + '@types/node': 20.9.3 jest-message-util: 29.7.0 jest-mock: 29.7.0 jest-util: 29.7.0 @@ -2819,7 +2819,7 @@ packages: '@jest/transform': 29.7.0 '@jest/types': 29.6.3 '@jridgewell/trace-mapping': 0.3.20 - '@types/node': 20.9.2 + '@types/node': 20.9.3 chalk: 4.1.2 collect-v8-coverage: 1.0.2 exit: 0.1.2 @@ -2906,7 +2906,7 @@ packages: '@jest/schemas': 29.6.3 '@types/istanbul-lib-coverage': 2.0.6 '@types/istanbul-reports': 3.0.4 - '@types/node': 20.9.2 + '@types/node': 20.9.3 '@types/yargs': 17.0.31 chalk: 4.1.2 @@ -2961,7 +2961,7 @@ packages: resolution: {integrity: sha512-jZq3Gbi691jsHyQ4+OPnGgIqZt5eKEGnmI75akYlZpwTPxF7n+hiuKlQS+YB3xfKvcvlAED76ZAMCcwYG5fNrQ==} engines: {node: '>=16.0.0'} - /@lingui/cli@4.5.0(typescript@5.2.2): + /@lingui/cli@4.5.0(typescript@5.3.2): resolution: {integrity: sha512-MzhxNUNd+YYEmK79TwmneUow5BuLwpOlrUrZq9EyIAWUM4N6kkCVkZ8VIMYCL4TXGQ4kBQjstgDpkF8wdFRtNg==} engines: {node: '>=16.0.0'} hasBin: true @@ -2972,9 +2972,9 @@ packages: '@babel/runtime': 7.23.2 '@babel/types': 7.23.3 '@lingui/babel-plugin-extract-messages': 4.5.0 - '@lingui/conf': 4.5.0(typescript@5.2.2) + '@lingui/conf': 4.5.0(typescript@5.3.2) '@lingui/core': 4.5.0 - '@lingui/format-po': 4.5.0(typescript@5.2.2) + '@lingui/format-po': 4.5.0(typescript@5.3.2) '@lingui/message-utils': 4.5.0 babel-plugin-macros: 3.1.0 chalk: 4.1.2 @@ -2999,13 +2999,13 @@ packages: - supports-color - typescript - /@lingui/conf@4.5.0(typescript@5.2.2): + /@lingui/conf@4.5.0(typescript@5.3.2): resolution: {integrity: sha512-OBm4RQQtbpvmuazLWVpvpaOpt/xvu1PBv8WUX8QoW1vsROe/3P5BpRHRYFyMeZz5mhORJgis9lQtDTq145Ruug==} engines: {node: '>=16.0.0'} dependencies: '@babel/runtime': 7.23.2 chalk: 4.1.2 - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.3.2) jest-validate: 29.7.0 jiti: 1.21.0 lodash.get: 4.4.2 @@ -3025,18 +3025,18 @@ packages: engines: {node: '>=16.0.0'} dev: false - /@lingui/format-po@4.5.0(typescript@5.2.2): + /@lingui/format-po@4.5.0(typescript@5.3.2): resolution: {integrity: sha512-xQNzZ4RCQfh6TjzjUsyHz3B0R9FJuzhBit9R37NyMn6mL3kBTCUExpPczknm8gWZjtfFO4T8EH5eJhhC5vgJYg==} engines: {node: '>=16.0.0'} dependencies: - '@lingui/conf': 4.5.0(typescript@5.2.2) + '@lingui/conf': 4.5.0(typescript@5.3.2) '@lingui/message-utils': 4.5.0 date-fns: 2.30.0 pofile: 1.1.4 transitivePeerDependencies: - typescript - /@lingui/macro@4.5.0(@lingui/react@4.5.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2): + /@lingui/macro@4.5.0(@lingui/react@4.5.0)(babel-plugin-macros@3.1.0)(typescript@5.3.2): resolution: {integrity: sha512-6qha9YXuNnta4HCR+g6J6UPaAuAFlM1duqgznh4X7hHSsFG+m6oX7/srAMfU41Z8lbDmgXc3raqHLXFSdUNbYQ==} engines: {node: '>=16.0.0'} peerDependencies: @@ -3045,7 +3045,7 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@babel/types': 7.23.3 - '@lingui/conf': 4.5.0(typescript@5.2.2) + '@lingui/conf': 4.5.0(typescript@5.3.2) '@lingui/core': 4.5.0 '@lingui/message-utils': 4.5.0 '@lingui/react': 4.5.0(react@18.2.0) @@ -3069,7 +3069,7 @@ packages: '@lingui/core': 4.5.0 react: 18.2.0 - /@lingui/swc-plugin@4.0.4(@lingui/macro@4.5.0)(@swc/core@1.3.96): + /@lingui/swc-plugin@4.0.4(@lingui/macro@4.5.0)(@swc/core@1.3.99): resolution: {integrity: sha512-xRnR96Mqi6zwGlVfGJMfoM8QykBbUz/sSnwmcFL9BZ8Y9YBZxzLAVf4t1BbiIQsAs+pMYu/HfujTBD4y/r1ucA==} peerDependencies: '@lingui/macro': '4' @@ -3081,19 +3081,19 @@ packages: next: optional: true dependencies: - '@lingui/macro': 4.5.0(@lingui/react@4.5.0)(babel-plugin-macros@3.1.0)(typescript@5.2.2) - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@lingui/macro': 4.5.0(@lingui/react@4.5.0)(babel-plugin-macros@3.1.0)(typescript@5.3.2) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) dev: true - /@lingui/vite-plugin@4.5.0(typescript@5.2.2)(vite@5.0.0): + /@lingui/vite-plugin@4.5.0(typescript@5.3.2)(vite@5.0.0): resolution: {integrity: sha512-REAzk7BgoK+jSytTlBvtPXfkE3nbWpUzy1qjupk0EfDxVtLiPIQk7EpNQ6Qk7F5Av3udWlHL7z+dBF7TY/MQBg==} engines: {node: '>=16.0.0'} peerDependencies: vite: 3 - 4 dependencies: - '@lingui/cli': 4.5.0(typescript@5.2.2) - '@lingui/conf': 4.5.0(typescript@5.2.2) - vite: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) + '@lingui/cli': 4.5.0(typescript@5.3.2) + '@lingui/conf': 4.5.0(typescript@5.3.2) + vite: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - supports-color - typescript @@ -3108,24 +3108,24 @@ packages: dependencies: moo: 0.5.2 - /@microsoft/api-extractor-model@7.28.2(@types/node@20.9.2): + /@microsoft/api-extractor-model@7.28.2(@types/node@20.9.3): resolution: {integrity: sha512-vkojrM2fo3q4n4oPh4uUZdjJ2DxQ2+RnDQL/xhTWSRUNPF6P4QyrvY357HBxbnltKcYu+nNNolVqc6TIGQ73Ig==} dependencies: '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.61.0(@types/node@20.9.2) + '@rushstack/node-core-library': 3.61.0(@types/node@20.9.3) transitivePeerDependencies: - '@types/node' dev: true - /@microsoft/api-extractor@7.38.3(@types/node@20.9.2): + /@microsoft/api-extractor@7.38.3(@types/node@20.9.3): resolution: {integrity: sha512-xt9iYyC5f39281j77JTA9C3ISJpW1XWkCcnw+2vM78CPnro6KhPfwQdPDfwS5JCPNuq0grm8cMdPUOPvrchDWw==} hasBin: true dependencies: - '@microsoft/api-extractor-model': 7.28.2(@types/node@20.9.2) + '@microsoft/api-extractor-model': 7.28.2(@types/node@20.9.3) '@microsoft/tsdoc': 0.14.2 '@microsoft/tsdoc-config': 0.16.2 - '@rushstack/node-core-library': 3.61.0(@types/node@20.9.2) + '@rushstack/node-core-library': 3.61.0(@types/node@20.9.3) '@rushstack/rig-package': 0.5.1 '@rushstack/ts-command-line': 4.17.1 colors: 1.2.5 @@ -3165,15 +3165,15 @@ packages: os-filter-obj: 2.0.0 dev: true - /@nestjs-modules/mailer@1.9.1(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(nodemailer@6.9.7): + /@nestjs-modules/mailer@1.9.1(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(nodemailer@6.9.7): resolution: {integrity: sha512-9kSDgg4qA6+2BXOzfY4IltL70uMGXDeE8u/dhkzM2gnCCOKu8Y+wIxWmh8xyLGYcrFHQ3Mke+ap0O1T98Tyjaw==} peerDependencies: '@nestjs/common': ^7.0.9 || ^8.0.0 || ^9.0.0 || ^10.0.0 '@nestjs/core': ^7.0.9 || ^8.0.0 || ^9.0.0 || ^10.0.0 nodemailer: ^6.4.6 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) glob: 10.3.3 inline-css: 4.0.2 mjml: 4.14.1 @@ -3190,7 +3190,7 @@ packages: - supports-color dev: false - /@nestjs/axios@3.0.1(@nestjs/common@10.2.9)(axios@1.6.2)(reflect-metadata@0.1.13)(rxjs@7.8.1): + /@nestjs/axios@3.0.1(@nestjs/common@10.2.10)(axios@1.6.2)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-VlOZhAGDmOoFdsmewn8AyClAdGpKXQQaY1+3PGB+g6ceurGIdTxZgRX3VXc1T6Zs60PedWjg3A82TDOB05mrzQ==} peerDependencies: '@nestjs/common': ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 @@ -3198,14 +3198,14 @@ packages: reflect-metadata: ^0.1.12 rxjs: ^6.0.0 || ^7.0.0 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) axios: 1.6.2 reflect-metadata: 0.1.13 rxjs: 7.8.1 dev: false - /@nestjs/common@10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1): - resolution: {integrity: sha512-i7vb2zMLJUDIPqjfBhMkgIITK1AnKDkFYSsM+aaRHpNa9xv/CwsiQuINaXfzStMpnwjkq5FDE3aoF0wkTfD2cQ==} + /@nestjs/common@10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1): + resolution: {integrity: sha512-fwAk931rjW8CNH2Mgwawq/7HWHH1dxkOLdcgs7U52ddLk8CtHXjejm1cbNahewlSbNhvlOl7y1STLHutE6sUqw==} peerDependencies: class-transformer: '*' class-validator: '*' @@ -3223,13 +3223,13 @@ packages: tslib: 2.6.2 uid: 2.0.2 - /@nestjs/config@3.1.1(@nestjs/common@10.2.9)(reflect-metadata@0.1.13): + /@nestjs/config@3.1.1(@nestjs/common@10.2.10)(reflect-metadata@0.1.13): resolution: {integrity: sha512-qu5QlNiJdqQtOsnB6lx4JCXPQ96jkKUsOGd+JXfXwqJqZcOSAq6heNFg0opW4pq4J/VZoNwoo87TNnx9wthnqQ==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 reflect-metadata: ^0.1.13 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) dotenv: 16.3.1 dotenv-expand: 10.0.0 lodash: 4.17.21 @@ -3237,8 +3237,8 @@ packages: uuid: 9.0.0 dev: false - /@nestjs/core@10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1): - resolution: {integrity: sha512-Hl6HC9hR7JD3YmzwcveBKeydaq9cguEsMdEghzLuVH3VEH0M+bTFHjCIKhsxMez4/O7/K6n3EhNx1Et4Z+BqWg==} + /@nestjs/core@10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1): + resolution: {integrity: sha512-+ckOI6BPi2ZMHikT9MCG4ctHDc4OnjhoIytrn7f2AYMMXI4bnutJhqyQKc30VDka5x3Wq6QAD57pgSP7y+JjJg==} requiresBuild: true peerDependencies: '@nestjs/common': ^10.0.0 @@ -3255,8 +3255,8 @@ packages: '@nestjs/websockets': optional: true dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/platform-express': 10.2.9(@nestjs/common@10.2.9)(@nestjs/core@10.2.9) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': 10.2.10(@nestjs/common@10.2.10)(@nestjs/core@10.2.10) '@nuxtjs/opencollective': 0.3.2 fast-safe-stringify: 2.1.1 iterare: 1.2.1 @@ -3268,7 +3268,7 @@ packages: transitivePeerDependencies: - encoding - /@nestjs/graphql@12.0.11(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(graphql@16.8.1)(reflect-metadata@0.1.13): + /@nestjs/graphql@12.0.11(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(graphql@16.8.1)(reflect-metadata@0.1.13): resolution: {integrity: sha512-iCyVs9+utCQt9ehMhUjQcEdjRN/MrcTBINd7P44O1fzGENuWMbt1Z8RCoZbeGi5iVPBY63HgYik+BnnICqmxZw==} requiresBuild: true peerDependencies: @@ -3293,9 +3293,9 @@ packages: '@graphql-tools/merge': 9.0.0(graphql@16.8.1) '@graphql-tools/schema': 10.0.0(graphql@16.8.1) '@graphql-tools/utils': 10.0.8(graphql@16.8.1) - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/mapped-types': 2.0.2(@nestjs/common@10.2.9)(reflect-metadata@0.1.13) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/mapped-types': 2.0.2(@nestjs/common@10.2.10)(reflect-metadata@0.1.13) chokidar: 3.5.3 fast-glob: 3.3.2 graphql: 16.8.1 @@ -3314,17 +3314,17 @@ packages: dev: false optional: true - /@nestjs/jwt@10.2.0(@nestjs/common@10.2.9): + /@nestjs/jwt@10.2.0(@nestjs/common@10.2.10): resolution: {integrity: sha512-x8cG90SURkEiLOehNaN2aRlotxT0KZESUliOPKKnjWiyJOcWurkF3w345WOX0P4MgFzUjGoZ1Sy0aZnxeihT0g==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) '@types/jsonwebtoken': 9.0.5 jsonwebtoken: 9.0.2 dev: false - /@nestjs/mapped-types@2.0.2(@nestjs/common@10.2.9)(reflect-metadata@0.1.13): + /@nestjs/mapped-types@2.0.2(@nestjs/common@10.2.10)(reflect-metadata@0.1.13): resolution: {integrity: sha512-V0izw6tWs6fTp9+KiiPUbGHWALy563Frn8X6Bm87ANLRuE46iuBMD5acKBDP5lKL/75QFvrzSJT7HkCbB0jTpg==} requiresBuild: true peerDependencies: @@ -3338,12 +3338,12 @@ packages: class-validator: optional: true dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) reflect-metadata: 0.1.13 dev: false optional: true - /@nestjs/mapped-types@2.0.3(@nestjs/common@10.2.9)(reflect-metadata@0.1.13): + /@nestjs/mapped-types@2.0.3(@nestjs/common@10.2.10)(reflect-metadata@0.1.13): resolution: {integrity: sha512-40Zdqg98lqoF0+7ThWIZFStxgzisK6GG22+1ABO4kZiGF/Tu2FE+DYLw+Q9D94vcFWizJ+MSjNN4ns9r6hIGxw==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 @@ -3356,28 +3356,28 @@ packages: class-validator: optional: true dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) reflect-metadata: 0.1.13 dev: false - /@nestjs/passport@10.0.2(@nestjs/common@10.2.9)(passport@0.6.0): + /@nestjs/passport@10.0.2(@nestjs/common@10.2.10)(passport@0.6.0): resolution: {integrity: sha512-od31vfB2z3y05IDB5dWSbCGE2+pAf2k2WCBinNuTTOxN0O0+wtO1L3kawj/aCW3YR9uxsTOVbTDwtwgpNNsnjQ==} peerDependencies: '@nestjs/common': ^8.0.0 || ^9.0.0 || ^10.0.0 passport: ^0.4.0 || ^0.5.0 || ^0.6.0 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) passport: 0.6.0 dev: false - /@nestjs/platform-express@10.2.9(@nestjs/common@10.2.9)(@nestjs/core@10.2.9): - resolution: {integrity: sha512-r6BSMJmLLeNgyPZJ9F8wQWCXH6rrMHMd9QbCfvyUmETci5Ofy6atiYVVXl7Ms1rAi2EEnXpVCuoydHBBqSlTbg==} + /@nestjs/platform-express@10.2.10(@nestjs/common@10.2.10)(@nestjs/core@10.2.10): + resolution: {integrity: sha512-U4KDgtMjH8TqEvt0RzC/POP8ABvL9bYoCScvlGtFSKgVGaMLBKkZ4+jHtbQx6qItYSlBBRUuz/dveMZCObfrkQ==} peerDependencies: '@nestjs/common': ^10.0.0 '@nestjs/core': ^10.0.0 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) body-parser: 1.20.2 cors: 2.8.5 express: 4.18.2 @@ -3386,7 +3386,7 @@ packages: transitivePeerDependencies: - supports-color - /@nestjs/schematics@10.0.3(typescript@5.2.2): + /@nestjs/schematics@10.0.3(typescript@5.3.2): resolution: {integrity: sha512-2BRujK0GqGQ7j1Zpz+obVfskDnnOeVKt5aXoSaVngKo8Oczy8uYCY+R547TQB+Kf35epdfFER2pVnQrX3/It5A==} peerDependencies: typescript: '>=4.8.2' @@ -3396,12 +3396,12 @@ packages: comment-json: 4.2.3 jsonc-parser: 3.2.0 pluralize: 8.0.0 - typescript: 5.2.2 + typescript: 5.3.2 transitivePeerDependencies: - chokidar dev: true - /@nestjs/schematics@9.2.0(typescript@5.2.2): + /@nestjs/schematics@9.2.0(typescript@5.3.2): resolution: {integrity: sha512-wHpNJDPzM6XtZUOB3gW0J6mkFCSJilzCM3XrHI1o0C8vZmFE1snbmkIXNyoi1eV0Nxh1BMymcgz5vIMJgQtTqw==} peerDependencies: typescript: '>=4.3.5' @@ -3410,12 +3410,12 @@ packages: '@angular-devkit/schematics': 16.0.1 jsonc-parser: 3.2.0 pluralize: 8.0.0 - typescript: 5.2.2 + typescript: 5.3.2 transitivePeerDependencies: - chokidar dev: true - /@nestjs/serve-static@4.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9): + /@nestjs/serve-static@4.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10): resolution: {integrity: sha512-8cTrNV2ngdHIjiLNsXePnw0+KY1ThrZGz/WeyAG5gIvmZNDbnZBOrPoYlKL+MOzlXlQStxR5jKLYmn+nJeoncQ==} peerDependencies: '@fastify/static': ^6.5.0 @@ -3431,12 +3431,12 @@ packages: fastify: optional: true dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) path-to-regexp: 0.2.5 dev: false - /@nestjs/swagger@7.1.16(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(reflect-metadata@0.1.13): + /@nestjs/swagger@7.1.16(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(reflect-metadata@0.1.13): resolution: {integrity: sha512-f9KBk/BX9MUKPTj7tQNYJ124wV/jP5W2lwWHLGwe/4qQXixuDOo39zP55HIJ44LE7S04B7BOeUOo9GBJD/vRcw==} peerDependencies: '@fastify/static': ^6.0.0 @@ -3453,9 +3453,9 @@ packages: class-validator: optional: true dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/mapped-types': 2.0.3(@nestjs/common@10.2.9)(reflect-metadata@0.1.13) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/mapped-types': 2.0.3(@nestjs/common@10.2.10)(reflect-metadata@0.1.13) js-yaml: 4.1.0 lodash: 4.17.21 path-to-regexp: 3.2.0 @@ -3463,7 +3463,7 @@ packages: swagger-ui-dist: 5.9.1 dev: false - /@nestjs/terminus@10.1.1(@nestjs/axios@3.0.1)(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@prisma/client@5.6.0)(reflect-metadata@0.1.13)(rxjs@7.8.1): + /@nestjs/terminus@10.1.1(@nestjs/axios@3.0.1)(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@prisma/client@5.6.0)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-aDoPK/uaR9PHn56xzand6zqpp+S3Ibm+y/OrG3M01F1WnScLfo29hbS6MdnIMqmVRAS11r/8X3xWTSo8TT/Lig==} peerDependencies: '@grpc/grpc-js': '*' @@ -3511,9 +3511,9 @@ packages: typeorm: optional: true dependencies: - '@nestjs/axios': 3.0.1(@nestjs/common@10.2.9)(axios@1.6.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/axios': 3.0.1(@nestjs/common@10.2.10)(axios@1.6.2)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) '@prisma/client': 5.6.0(prisma@5.6.0) boxen: 5.1.2 check-disk-space: 3.4.0 @@ -3521,8 +3521,8 @@ packages: rxjs: 7.8.1 dev: false - /@nestjs/testing@10.2.9(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@nestjs/platform-express@10.2.9): - resolution: {integrity: sha512-E+66R27Op+WAQHHH6RnUsz7QpKApl4Bn42nheCAGvS/sxbaDJ8RKtm4stE4Iz2aioPCUvRi8j4z8Ze73k0CcGQ==} + /@nestjs/testing@10.2.10(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@nestjs/platform-express@10.2.10): + resolution: {integrity: sha512-IVLUnPz/+fkBtPATYfqTIP+phN9yjkXejmj+JyhmcfPJZpxBmD1i9VSMqa4u54l37j0xkGPscQ0IXpbhqMYUKw==} peerDependencies: '@nestjs/common': ^10.0.0 '@nestjs/core': ^10.0.0 @@ -3534,9 +3534,9 @@ packages: '@nestjs/platform-express': optional: true dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/platform-express': 10.2.9(@nestjs/common@10.2.9)(@nestjs/core@10.2.9) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/platform-express': 10.2.10(@nestjs/common@10.2.10)(@nestjs/core@10.2.10) tslib: 2.6.2 dev: true @@ -3563,18 +3563,18 @@ packages: '@nodelib/fs.scandir': 2.1.5 fastq: 1.15.0 - /@nrwl/devkit@17.1.2(nx@17.1.2): - resolution: {integrity: sha512-INPZk4qts3xNJt8E9fttuVTufXdigPUOvUiAiPJmR2oUGDF8SeOlIYNForbz+XMRvxyIVtf45O32azUsgeZe3Q==} + /@nrwl/devkit@17.1.3(nx@17.1.3): + resolution: {integrity: sha512-8HfIY7P3yIYfQ/XKuHoq0GGLA9GpwWtBlI9kPQ0ygjuJ9BkpiGMtQvO6003zs7c6vpc2vNeG+Jmi72+EKvoN5A==} dependencies: - '@nx/devkit': 17.1.2(nx@17.1.2) + '@nx/devkit': 17.1.3(nx@17.1.3) transitivePeerDependencies: - nx dev: true - /@nrwl/eslint-plugin-nx@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(@typescript-eslint/parser@6.11.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-6Mw33BV7hVlWlncGxs002/Q3IEAFm6AYINgK9Gkqpkpj2VVLuwRjucCuYwiZDnoWXEWPBKAcv9F4sAiWWMWVyg==} + /@nrwl/eslint-plugin-nx@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(@typescript-eslint/parser@6.12.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-UGtktnM3tfc9F+NROQi0NkowASu2QuiOE67H1B8DjOxkvNZRbFzbS6D+YyBvVGXBbcMWXlqM54Zv6/1dabqgbg==} dependencies: - '@nx/eslint-plugin': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(@typescript-eslint/parser@6.11.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2) + '@nx/eslint-plugin': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(@typescript-eslint/parser@6.12.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3591,10 +3591,10 @@ packages: - verdaccio dev: true - /@nrwl/jest@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-FUZcjZQaPg6ImzoK6es5KpyZGNSj6vG7AKzgAmVHzLelnSgP/0hVEZevotRKwFVWS1AmP2LLyguzpIRjtDAX0g==} + /@nrwl/jest@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2): + resolution: {integrity: sha512-q5nbEbhvjOuNSEQMSpoUSBwR9Q3EFR92mNT2T0wbHcWVyfp1wPtJ8NAY/d2jJF+Ekm2hu3fJCfslFE3L3riZfg==} dependencies: - '@nx/jest': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) + '@nx/jest': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3611,10 +3611,10 @@ packages: - verdaccio dev: true - /@nrwl/js@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-70Fx//GJdRt2Uo6ft07Up+eeSK2+jqUnkBhvGLauro91g9SVSgbHlhj+D8l86wccyKz/OULod29WEBkA6Z/t3Q==} + /@nrwl/js@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.2.2): + resolution: {integrity: sha512-aUE6lK8+D37xNlRz7ZpFbUOwIU6Vb1aNVjXxaouFQ2kcirv2NdJVmUIpbK7zDE/pzC3YmdZADqG2UjpvSUAErw==} dependencies: - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.2.2) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3628,10 +3628,27 @@ packages: - verdaccio dev: true - /@nrwl/nest@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-s9/mvLyw0DSzefr6F+/w2tCGhVPR14IDiUac/q9r/MraUo2fkq0SmCbz5wl5L9fGHkpGGcCdruprijh6i7844w==} + /@nrwl/js@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-aUE6lK8+D37xNlRz7ZpFbUOwIU6Vb1aNVjXxaouFQ2kcirv2NdJVmUIpbK7zDE/pzC3YmdZADqG2UjpvSUAErw==} dependencies: - '@nx/nest': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - debug + - nx + - supports-color + - typescript + - verdaccio + dev: true + + /@nrwl/nest@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2): + resolution: {integrity: sha512-oE+MjqElv5REXNnQAsEgVYMB4V2H2dO8c3EjGjfMxO+f5+bnxkDblXILIYiy5b63TvLsXJdM+z5YYfrv4q49bA==} + dependencies: + '@nx/nest': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3650,10 +3667,10 @@ packages: - verdaccio dev: true - /@nrwl/node@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-tfyE+Rmr/UiQXKciJahHrLhuoZmmKjhB5gaLGCnYpTDHRur+pogpDuHP+242DF5k108SHCcTR5OuUi08SBm3Qg==} + /@nrwl/node@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2): + resolution: {integrity: sha512-J/iIDuuLwM6NR0TIWEHXQmre9SdlkHbFtstae9nuTqATcZEBShBLYdR8I9piQT+QGMvwKIoWej5a3g21JBQhlg==} dependencies: - '@nx/node': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) + '@nx/node': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3671,10 +3688,10 @@ packages: - verdaccio dev: true - /@nrwl/react@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2)(webpack@5.89.0): - resolution: {integrity: sha512-GBuJiqwFALuBLE4IRE+EUMP6rquXhOPbe2pEppTy6Zvt1zs7Dc8bcAWwfAWnntb/4uWk9BhO1oGp/K4pgdU3LA==} + /@nrwl/react@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2)(webpack@5.89.0): + resolution: {integrity: sha512-1VW5AZ1MV3/r31A/u3oVyOrs0vbaRFwH5ow7H7aLmJnGd+mKLEqQ3DbEYxLun3eAAiy8bF9SfDPxgh/cEXDfPw==} dependencies: - '@nx/react': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2)(webpack@5.89.0) + '@nx/react': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2)(webpack@5.89.0) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3690,11 +3707,11 @@ packages: - webpack dev: true - /@nrwl/tao@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-tL+dlygeor/kLG5fuK5qaiVFJ4hEtvJ/E+xY9epp20UKCNQSEkrSFiesiXtX6E/PPf4YbOQ4B4itWR2EYCm03Q==} + /@nrwl/tao@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-9YpfEkUpVqOweqgQvMDcWApNx4jhCqBNH5IByZj302Enp3TLnQSvhuX5Dfr8hNQRQokIpEn6tW8SGTctTM5LXw==} hasBin: true dependencies: - nx: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) + nx: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) tslib: 2.6.2 transitivePeerDependencies: - '@swc-node/register' @@ -3702,10 +3719,10 @@ packages: - debug dev: true - /@nrwl/vite@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2)(vite@5.0.0)(vitest@0.34.6): - resolution: {integrity: sha512-V6OaEGPAdq9eZcMKSrVwwDqKWOVRivsKyxMrYjVZvGEmtKQubDFt0fUeA3FAviNLWmlR+sM3XtaFTkgLPUr2yQ==} + /@nrwl/vite@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2)(vite@5.0.0)(vitest@0.34.6): + resolution: {integrity: sha512-CXB9LnfLB9bAq6nqWAZBTHyTe5/tPoSmMyStK9djgeyXNCvNNz30EXJOEislA7FuSL1HDh59np3Y2KgVOtbxuA==} dependencies: - '@nx/vite': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2)(vite@5.0.0)(vitest@0.34.6) + '@nx/vite': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2)(vite@5.0.0)(vitest@0.34.6) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3721,10 +3738,10 @@ packages: - vitest dev: true - /@nrwl/web@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-BGq0NW/mmkKxDr1V7Rj47IzV4VV6831knVpumqTZHOVNo07KkTW5m37+KA0XprAlPN+F3T/OSYlvP1DEdspafA==} + /@nrwl/web@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-vhteqBanX/3JdwrT9F3+iMfRJ7xqcSgzWZcAOfL8DyL8UFQfN6mdAPW7S/HvwqLIsoa5vjRGq4uBo9TEqrDS/g==} dependencies: - '@nx/web': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + '@nx/web': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3738,10 +3755,10 @@ packages: - verdaccio dev: true - /@nrwl/webpack@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-D8+tuyb5v56mTiX6absMoxSkSbNgjp593P4GHHu5bCaCYGMI1Rj8CYwakFIXaxaLzguBtoqC+6L2OxAQ1OwB1g==} + /@nrwl/webpack@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-8iDLTIEbqJ8hxNPRadqBmH4+GatFC1dwd8QscKMQqmeNKn2toYzX4I0EGJ289gY4fdhF45wkVhWEyTfvAwI80Q==} dependencies: - '@nx/webpack': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + '@nx/webpack': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) transitivePeerDependencies: - '@babel/traverse' - '@parcel/css' @@ -3770,10 +3787,10 @@ packages: - webpack-cli dev: true - /@nrwl/workspace@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-1MymxYcX5YPrTSuZhQ6V0MhqAFB+8Bm2O9EJHpj4VS9LKIWwDche4DkqypmhbTeAzagr5YIWqaKtPCrkP0tn8w==} + /@nrwl/workspace@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-V5nLZ58DIZLlJQASYHKo9mUcdm2FbzjJeoKwi0X3VXUvU1ftforFxNIQ7BqS0qjZJKKHjpgZ+cAH0xeVysS5kA==} dependencies: - '@nx/workspace': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) + '@nx/workspace': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) transitivePeerDependencies: - '@swc-node/register' - '@swc/core' @@ -3791,23 +3808,23 @@ packages: transitivePeerDependencies: - encoding - /@nx/devkit@17.1.2(nx@17.1.2): - resolution: {integrity: sha512-9Izd9jsa++AaZSSlhi0zkv58k4clzE0kICurx9DjfWN6zXnD08HqJoUYCVVaeYS/SrWlQUbMig8e49BO8ZV5mw==} + /@nx/devkit@17.1.3(nx@17.1.3): + resolution: {integrity: sha512-1Is7ooovg3kdGJ5VdkePulRUDaMYLLULr+LwXgx7oHSW7AY2iCmhkoOE/vSR7DJ6rkey2gYx7eT1IoRoORiIaQ==} peerDependencies: nx: '>= 16 <= 18' dependencies: - '@nrwl/devkit': 17.1.2(nx@17.1.2) + '@nrwl/devkit': 17.1.3(nx@17.1.3) ejs: 3.1.9 enquirer: 2.3.6 ignore: 5.3.0 - nx: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) + nx: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) semver: 7.5.3 tmp: 0.2.1 tslib: 2.6.2 dev: true - /@nx/eslint-plugin@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(@typescript-eslint/parser@6.11.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-92AAx6UaLl8fb23GBrSzCco8XQm482AwIY7jgugvfXYZSluau3zapdZsLC1ePJtyhVDd2P3KddjA7tiNLGOaXA==} + /@nx/eslint-plugin@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(@typescript-eslint/parser@6.12.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-SGBXiKiXifK/KZqoEvNAqIbKMYMN9f6HIZXX23dwaimGrOct+8vtQc3nJIB5QuPtBypfsVCxfoVcJVi0QaN1uw==} peerDependencies: '@typescript-eslint/parser': ^6.9.1 eslint-config-prettier: ^9.0.0 @@ -3815,12 +3832,12 @@ packages: eslint-config-prettier: optional: true dependencies: - '@nrwl/eslint-plugin-nx': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(@typescript-eslint/parser@6.11.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/type-utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@nrwl/eslint-plugin-nx': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(@typescript-eslint/parser@6.12.0)(eslint-config-prettier@9.0.0)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/type-utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) chalk: 4.1.2 confusing-browser-globals: 1.0.11 eslint-config-prettier: 9.0.0(eslint@8.54.0) @@ -3841,17 +3858,17 @@ packages: - verdaccio dev: true - /@nx/eslint@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2): - resolution: {integrity: sha512-SDwx6P0HMzLURzbmUCPxvvkGBIhBIEujsvTCnaRsWJIKmrYKJjv4ENWqjZZSOMgP5gU2HjQFaWtRicjbdcu9Tg==} + /@nx/eslint@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3): + resolution: {integrity: sha512-AQZ67Q3JzLZxguCat7mhBfvxr4ztc97ogDj6jD40Sql8cb/eVYTf/0mszIxxPFsTNG3YBqP5Eb2saAKKxUrfMw==} peerDependencies: eslint: ^8.0.0 peerDependenciesMeta: eslint: optional: true dependencies: - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@nx/linter': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.2.2) + '@nx/linter': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3) eslint: 8.54.0 tslib: 2.6.2 typescript: 5.2.2 @@ -3867,18 +3884,18 @@ packages: - verdaccio dev: true - /@nx/jest@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-rgwowVMbSR9/U9yzTX2LqDFpsvQ9QkWC/dEpn2jHXMYEU5qu0rbW6mnKSuQ+sHN4Fn6UgesFrYAZCwEPx+izpQ==} + /@nx/jest@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2): + resolution: {integrity: sha512-08amXLb5GHIIE8XzJRT/RhIzJzKp8mSjzT0ymciK6lDRYbzSBoHFS8KN9xqqmtWNYVZWPMq6ySoDYGi1abIR4Q==} dependencies: '@jest/reporters': 29.7.0 '@jest/test-result': 29.7.0 - '@nrwl/jest': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) + '@nrwl/jest': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.2) chalk: 4.1.2 identity-obj-proxy: 3.0.0 - jest-config: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) jest-resolve: 29.7.0 jest-util: 29.7.0 resolve.exports: 1.1.0 @@ -3899,8 +3916,8 @@ packages: - verdaccio dev: true - /@nx/js@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-3fPiOEw+iD1Bc+AvfdGgMSCYDYxAGmZ01lHp/RERTyCHroEoMiq8yiTBbET6TPOvKOBMXA+pR2Ux04QA3S4N6Q==} + /@nx/js@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.2.2): + resolution: {integrity: sha512-FCvIjTtuVYctRJw4S+Sp0ZCPeiwNxOR++CsLciWAogO81k3k6ajMIfjn0Xmwuq/FKWK8thtjkk9MfKjTDuxFkg==} peerDependencies: verdaccio: ^5.0.4 peerDependenciesMeta: @@ -3914,9 +3931,9 @@ packages: '@babel/preset-env': 7.23.3(@babel/core@7.23.3) '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3) '@babel/runtime': 7.23.2 - '@nrwl/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/workspace': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) + '@nrwl/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.2.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/workspace': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) babel-plugin-const-enum: 1.2.0(@babel/core@7.23.3) babel-plugin-macros: 2.8.0 @@ -3934,7 +3951,7 @@ packages: ora: 5.3.0 semver: 7.5.3 source-map-support: 0.5.19 - ts-node: 10.9.1(@swc/core@1.3.96)(@types/node@20.9.2)(typescript@5.2.2) + ts-node: 10.9.1(@swc/core@1.3.99)(@types/node@20.9.3)(typescript@5.2.2) tsconfig-paths: 4.2.0 tslib: 2.6.2 transitivePeerDependencies: @@ -3949,10 +3966,60 @@ packages: - typescript dev: true - /@nx/linter@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2): - resolution: {integrity: sha512-KS7jq61Fg2tiB+PDui3+zH9RANZV/rYyg1yzKe/Say7DabcZDziHmxw5t/JZE7JlTA2Kmy7HBMRgvJsqxOlukQ==} + /@nx/js@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-FCvIjTtuVYctRJw4S+Sp0ZCPeiwNxOR++CsLciWAogO81k3k6ajMIfjn0Xmwuq/FKWK8thtjkk9MfKjTDuxFkg==} + peerDependencies: + verdaccio: ^5.0.4 + peerDependenciesMeta: + verdaccio: + optional: true dependencies: - '@nx/eslint': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2) + '@babel/core': 7.23.3 + '@babel/plugin-proposal-decorators': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-class-properties': 7.23.3(@babel/core@7.23.3) + '@babel/plugin-transform-runtime': 7.23.3(@babel/core@7.23.3) + '@babel/preset-env': 7.23.3(@babel/core@7.23.3) + '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3) + '@babel/runtime': 7.23.2 + '@nrwl/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/workspace': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.2) + babel-plugin-const-enum: 1.2.0(@babel/core@7.23.3) + babel-plugin-macros: 2.8.0 + babel-plugin-transform-typescript-metadata: 0.3.2(@babel/core@7.23.3) + chalk: 4.1.2 + columnify: 1.6.0 + detect-port: 1.5.1 + fast-glob: 3.2.7 + fs-extra: 11.1.1 + ignore: 5.3.0 + js-tokens: 4.0.0 + minimatch: 3.0.5 + npm-package-arg: 11.0.1 + npm-run-path: 4.0.1 + ora: 5.3.0 + semver: 7.5.3 + source-map-support: 0.5.19 + ts-node: 10.9.1(@swc/core@1.3.99)(@types/node@20.9.3)(typescript@5.3.2) + tsconfig-paths: 4.2.0 + tslib: 2.6.2 + transitivePeerDependencies: + - '@babel/traverse' + - '@swc-node/register' + - '@swc/core' + - '@swc/wasm' + - '@types/node' + - debug + - nx + - supports-color + - typescript + dev: true + + /@nx/linter@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3): + resolution: {integrity: sha512-KAeZ+kMxahQ67B2DFlikOPKILErdxRtpC3RbcHd9Oi+x0M7pGlmbBdnyP23CQplMsvYqzhTziF/W8CllYAKmCg==} + dependencies: + '@nx/eslint': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3) transitivePeerDependencies: - '@babel/traverse' - '@swc-node/register' @@ -3966,16 +4033,16 @@ packages: - verdaccio dev: true - /@nx/nest@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-IsIk+O7C0cxHDB9mCXtY3X5PQBirq/KI/bj770OSZAPzxuZ+0MwD82nRGRFRcPzYKSXpbiQSxesoJMfIgThXiQ==} + /@nx/nest@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2): + resolution: {integrity: sha512-9fYTtL7QFE5prnId2MNytrTnn1niTv4jEp3av6BuZwcXb7lr1zD6KMoPiwwe3YnJdFhKmbtSwICAszI3QndF3Q==} dependencies: - '@nestjs/schematics': 9.2.0(typescript@5.2.2) - '@nrwl/nest': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/eslint': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@nx/node': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) + '@nestjs/schematics': 9.2.0(typescript@5.3.2) + '@nrwl/nest': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/eslint': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@nx/node': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.2) tslib: 2.6.2 transitivePeerDependencies: - '@babel/traverse' @@ -3995,14 +4062,14 @@ packages: - verdaccio dev: true - /@nx/node@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2): - resolution: {integrity: sha512-o3M1RD2UliorCf9LyxSK3+QQ9qF3JUJa7gigmoc/25DiByyuZ962OUpPeyUsruNmgowJnB/ZSKh9QnhI4NiWZQ==} + /@nx/node@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2): + resolution: {integrity: sha512-3L937cSGuo92oCfgV+NcYpz53nTcFpqcHnt0UXO1x1VbFst5l0qM689xwPbHWoM2VCUkcCGMIwBvWOiZ+EJdLA==} dependencies: - '@nrwl/node': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/eslint': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2) - '@nx/jest': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(nx@17.1.2)(ts-node@10.9.1)(typescript@5.2.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + '@nrwl/node': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(eslint@8.54.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/eslint': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3) + '@nx/jest': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(nx@17.1.3)(ts-node@10.9.1)(typescript@5.3.2) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) tslib: 2.6.2 transitivePeerDependencies: - '@babel/traverse' @@ -4021,8 +4088,8 @@ packages: - verdaccio dev: true - /@nx/nx-darwin-arm64@17.1.2: - resolution: {integrity: sha512-U8fwkuw0vmDfeRQX9LSMt1XiAXM57fxOiuHlrIBn8hUBvMAugAgSAYd7K9YQjrFf9UFUtQeSHDU9N/c/n63hdg==} + /@nx/nx-darwin-arm64@17.1.3: + resolution: {integrity: sha512-f4qLa0y3C4uuhYKgq+MU892WaQvtvmHqrEhHINUOxYXNiLy2sgyJPW0mOZvzXtC4dPaUmiVaFP5RMVzc8Lxhtg==} engines: {node: '>= 10'} cpu: [arm64] os: [darwin] @@ -4030,8 +4097,8 @@ packages: dev: true optional: true - /@nx/nx-darwin-x64@17.1.2: - resolution: {integrity: sha512-QR9Jrm32UK2nLdDRtjFabfCvF5SOQJ2IuYkw6Sxe16xGZU2DS9nQku0TQO3Uy2HV1xSR7vzj7ys5z4eI2k+/mA==} + /@nx/nx-darwin-x64@17.1.3: + resolution: {integrity: sha512-kh76ZjqkLeQUIAfTa9G/DFFf+e1sZ5ipDzk7zFGhZ2k68PoQoFdsFOO3C513JmuEdavspts6Hkifsqh61TaE+A==} engines: {node: '>= 10'} cpu: [x64] os: [darwin] @@ -4039,8 +4106,8 @@ packages: dev: true optional: true - /@nx/nx-freebsd-x64@17.1.2: - resolution: {integrity: sha512-6rDuFHJREVg5XpcM5RlE8pHP4bgcbns8sSemF/g75SV4iEkBqxRvSe88oBtF44b7IpX2zdONRDV4qQcRf3DxRg==} + /@nx/nx-freebsd-x64@17.1.3: + resolution: {integrity: sha512-CRuVL5ZSLb+Gc8vwMUUe9Pl/1Z26YtXMKTahBMQh2dac63vzLgzqIV4c66aduUl1x2M0kGYBSIIRG9z0/BgWeg==} engines: {node: '>= 10'} cpu: [x64] os: [freebsd] @@ -4048,8 +4115,8 @@ packages: dev: true optional: true - /@nx/nx-linux-arm-gnueabihf@17.1.2: - resolution: {integrity: sha512-4FwqUX7NxVfJ0v7frBKNbjENz6pvp3slDfoG2/WmnAj5a6TCu7magwlg1qLQaHYJ1m/i8u7RrG0Uz4SYHWzkVw==} + /@nx/nx-linux-arm-gnueabihf@17.1.3: + resolution: {integrity: sha512-KDBmd5tSrg93g/oij/eGW4yeVNVK3DBIM4VYAS2vtkIgVOGoqcQ+SEIeMK3nMUJP9jGyblt3QNj5ZsJBtScwQw==} engines: {node: '>= 10'} cpu: [arm] os: [linux] @@ -4057,8 +4124,8 @@ packages: dev: true optional: true - /@nx/nx-linux-arm64-gnu@17.1.2: - resolution: {integrity: sha512-r6UATY0dVdxwpVJPf/f/KfRkFpMP06wC6HcfNMGbTBTKiKtsdYF42bWoSkDgtgP2bOx9FDH+Hwu3U/Rtj44FIA==} + /@nx/nx-linux-arm64-gnu@17.1.3: + resolution: {integrity: sha512-W2tNL/7sIwoQKLmuy68Usd6TZzIZvxZt4UE30kDwGc2RSap6RCHAvDbzSxtW+L4+deC9UxX0Tty0VuW+J8FjSg==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -4066,8 +4133,8 @@ packages: dev: true optional: true - /@nx/nx-linux-arm64-musl@17.1.2: - resolution: {integrity: sha512-MXGYY/KCzQhbj5UKwnRO2/GhByOkRlI+EeH1Mazam8wZ1BiBfcVWZoOUybIlxxes1o4cAnkZwB527tCmwrHvGw==} + /@nx/nx-linux-arm64-musl@17.1.3: + resolution: {integrity: sha512-Oto3gkLd7yweuVUCsSHwm4JkAIbcxpPJP0ycRHI/PRHPMIOPiMX8r651QM1amMyKAbJtAe047nyb9Sh1X0FA4A==} engines: {node: '>= 10'} cpu: [arm64] os: [linux] @@ -4075,8 +4142,8 @@ packages: dev: true optional: true - /@nx/nx-linux-x64-gnu@17.1.2: - resolution: {integrity: sha512-3cC131hJ3VhuxjzzBlwIdVp46onykOo78EmnURNdLxcWOpmcKgYXn7OnVwjrglYi+JL7D0vABGKKUpt1cs6/rA==} + /@nx/nx-linux-x64-gnu@17.1.3: + resolution: {integrity: sha512-pJS994sa5PBPFak93RydTB9KdEmiVb3rgiSB7PDBegphERbzHEB77B7G8M5TZ62dGlMdplIEKmdhY5XNqeAf9A==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -4084,8 +4151,8 @@ packages: dev: true optional: true - /@nx/nx-linux-x64-musl@17.1.2: - resolution: {integrity: sha512-1UrR87ByhE0zSXt0C+RNT5ZiAsctOSWZwPYQAGolz8K70BxomDeRVtIaRog5KK5SHlEd1ILvgsmrhovjLjrJNw==} + /@nx/nx-linux-x64-musl@17.1.3: + resolution: {integrity: sha512-4Hcx5Fg/88jV+bcTr6P0dM4unXNvKgrGJe3oK9/sgEhiW6pD2UAFjv16CCSRcWhDUAzUDqcwnD2fgg+vnAJG6g==} engines: {node: '>= 10'} cpu: [x64] os: [linux] @@ -4093,8 +4160,8 @@ packages: dev: true optional: true - /@nx/nx-win32-arm64-msvc@17.1.2: - resolution: {integrity: sha512-2M7FfzfPGAN7tCUWZilPGNk/RbbGcA00MKOA4MDqMwJtLobW8KqfMedilRNTEuyNibejOHwvGzA9T/Ac/ahHgA==} + /@nx/nx-win32-arm64-msvc@17.1.3: + resolution: {integrity: sha512-dUasEuskmDxUL36XA0GZqSb9233suE4wKhxrMobyFBzHUZ2tq/unzOpPjYfqDBie4QIvF8tEpAjQsLds8LWgbw==} engines: {node: '>= 10'} cpu: [arm64] os: [win32] @@ -4102,8 +4169,8 @@ packages: dev: true optional: true - /@nx/nx-win32-x64-msvc@17.1.2: - resolution: {integrity: sha512-oxKCKunuo4wRusMlNu7PlhBijhtNy7eBZPAWyqUsdfnb+CjY2QncjCguW3fnsG9gHQFCa+y0b1WkSkvJ5G1DiQ==} + /@nx/nx-win32-x64-msvc@17.1.3: + resolution: {integrity: sha512-eTuTpBHFvA5NFJh/iosmqCL4JOAjDrwXLSMgfKrZKjiApHMG1T/5Hb+PrsNpt+WnGp94ur7c4Dtx4xD5vlpAEw==} engines: {node: '>= 10'} cpu: [x64] os: [win32] @@ -4111,16 +4178,16 @@ packages: dev: true optional: true - /@nx/react@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2)(webpack@5.89.0): - resolution: {integrity: sha512-moVOelxOwubq3zWcII4g0NqUQUdwa53clhu/PQYFFH0KFC9uZnsCXS9sHAGtBpsZwZ6jrsjsqDhT9VBuJlJg3Q==} + /@nx/react@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2)(webpack@5.89.0): + resolution: {integrity: sha512-ORdIzUWZw97AKZQs9aX9mNetiP4a0TWdPgDKfLBHDHxq+Vn/Z0caW/Ivt4mhPY9NJsq7lR0O35ZSBRt1IleCJg==} dependencies: - '@nrwl/react': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2)(typescript@5.2.2)(webpack@5.89.0) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/eslint': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(eslint@8.54.0)(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@nx/web': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) - '@svgr/webpack': 8.1.0(typescript@5.2.2) + '@nrwl/react': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3)(typescript@5.3.2)(webpack@5.89.0) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/eslint': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(eslint@8.54.0)(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@nx/web': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.2) + '@svgr/webpack': 8.1.0(typescript@5.3.2) chalk: 4.1.2 file-loader: 6.2.0(webpack@5.89.0) minimatch: 3.0.5 @@ -4140,20 +4207,20 @@ packages: - webpack dev: true - /@nx/vite@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2)(vite@5.0.0)(vitest@0.34.6): - resolution: {integrity: sha512-fuLfsQUWizag0nyqZmGGaGdNylKkJ5CfU9uThze6z4R4Jje6kqrRbZ0DJvIpguwlc9VcFpggYbyv3OHfg38FEw==} + /@nx/vite@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2)(vite@5.0.0)(vitest@0.34.6): + resolution: {integrity: sha512-IuBpfSjn94vYCKs637Hh2pUF4Xzp5nmNTYqEl6UnNbzrK0EmV5H3KnkA2jF3KTLzO2pul/FY3Nwr+OfdYK9qig==} peerDependencies: vite: ^4.3.4 vitest: '>=0.31.0 <1.0.0' dependencies: - '@nrwl/vite': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2)(vite@5.0.0)(vitest@0.34.6) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@phenomnomnominal/tsquery': 5.0.1(typescript@5.2.2) + '@nrwl/vite': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2)(vite@5.0.0)(vitest@0.34.6) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@phenomnomnominal/tsquery': 5.0.1(typescript@5.3.2) '@swc/helpers': 0.5.3 enquirer: 2.3.6 tsconfig-paths: 4.2.0 - vite: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) + vite: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) vitest: 0.34.6(@vitest/ui@0.34.6)(jsdom@22.1.0)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - '@babel/traverse' @@ -4168,12 +4235,12 @@ packages: - verdaccio dev: true - /@nx/web@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-TJIY3uyBUCO9F15v1iWU5Lm6qvNBGzyLI0cNKB4Xl6H5mJA3bxW92NlRM++8mS9hSpw2OLEVN5jA2q+pbRzk8Q==} + /@nx/web@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-l8gXxRZKGsYJEIwYITgLjBdjlliETLK5hvs0hyHY26tuVY6mDy8zdGPfhJae1CpO4NL/hpqmGc99HLRQ1WCrAA==} dependencies: - '@nrwl/web': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + '@nrwl/web': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) chalk: 4.1.2 detect-port: 1.5.1 http-server: 14.1.1 @@ -4191,13 +4258,13 @@ packages: - verdaccio dev: true - /@nx/webpack@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2): - resolution: {integrity: sha512-i6TAKrM1TakHyqEHbtsyfyqh5nrk4xgK/aiJZT8mojOSK5ifSrcZSdlPHHbIzuLsCJt1Wo94LA//C26oBg5PTw==} + /@nx/webpack@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2): + resolution: {integrity: sha512-dbDG+tPflrW5M2WS+SuAzHX2lSrxyQGPPCIXWXexBrlXzU/Yyy3fvJqQKeRiRV+EILjNiQXKI2A1pzGUcnuW7g==} dependencies: '@babel/core': 7.23.3 - '@nrwl/webpack': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) - '@nx/devkit': 17.1.2(nx@17.1.2) - '@nx/js': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96)(@types/node@20.9.2)(nx@17.1.2)(typescript@5.2.2) + '@nrwl/webpack': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) + '@nx/devkit': 17.1.3(nx@17.1.3) + '@nx/js': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99)(@types/node@20.9.3)(nx@17.1.3)(typescript@5.3.2) autoprefixer: 10.4.16(postcss@8.4.31) babel-loader: 9.1.3(@babel/core@7.23.3)(webpack@5.89.0) browserslist: 4.22.1 @@ -4205,7 +4272,7 @@ packages: copy-webpack-plugin: 10.2.4(webpack@5.89.0) css-loader: 6.8.1(webpack@5.89.0) css-minimizer-webpack-plugin: 5.0.1(webpack@5.89.0) - fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.2.2)(webpack@5.89.0) + fork-ts-checker-webpack-plugin: 7.2.13(typescript@5.3.2)(webpack@5.89.0) less: 4.1.3 less-loader: 11.1.0(less@4.1.3)(webpack@5.89.0) license-webpack-plugin: 4.0.2(webpack@5.89.0) @@ -4222,11 +4289,11 @@ packages: style-loader: 3.3.3(webpack@5.89.0) stylus: 0.59.0 stylus-loader: 7.1.3(stylus@0.59.0)(webpack@5.89.0) - terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(webpack@5.89.0) - ts-loader: 9.5.1(typescript@5.2.2)(webpack@5.89.0) + terser-webpack-plugin: 5.3.9(@swc/core@1.3.99)(webpack@5.89.0) + ts-loader: 9.5.1(typescript@5.3.2)(webpack@5.89.0) tsconfig-paths-webpack-plugin: 4.0.0 tslib: 2.6.2 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) webpack-dev-server: 4.15.1(webpack@5.89.0) webpack-node-externals: 3.0.0 webpack-subresource-integrity: 5.1.0(webpack@5.89.0) @@ -4258,14 +4325,14 @@ packages: - webpack-cli dev: true - /@nx/workspace@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-lmdfWyspRgk7XewKU/5bjr6PieShJemDJpaSI+/H5utOeT8QeXVmNj+DDizig4eobwK0b6OXb0Vgnc7osbgjlw==} + /@nx/workspace@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-Je9nml9NJZJ0Ga70njK4N8KNSP7MnlxiVlosMzBAWDGrgnW+A403nae9pstEC2uGKpce2T7jBqFewAy+3U6JbA==} dependencies: - '@nrwl/workspace': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) - '@nx/devkit': 17.1.2(nx@17.1.2) + '@nrwl/workspace': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@nx/devkit': 17.1.3(nx@17.1.3) chalk: 4.1.2 enquirer: 2.3.6 - nx: 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) + nx: 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) tslib: 2.6.2 yargs-parser: 21.1.1 transitivePeerDependencies: @@ -4344,6 +4411,15 @@ packages: typescript: 5.2.2 dev: true + /@phenomnomnominal/tsquery@5.0.1(typescript@5.3.2): + resolution: {integrity: sha512-3nVv+e2FQwsW8Aw6qTU6f+1rfcJ3hrcnvH/mu9i8YhxO+9sqbOfpL8m6PbET5+xKOlz/VSbp0RoYWYCtIsnmuA==} + peerDependencies: + typescript: ^3 || ^4 || ^5 + dependencies: + esquery: 1.5.0 + typescript: 5.3.2 + dev: true + /@phosphor-icons/react@2.0.14(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-VaZ7/JEQ7dW+Up23l7t6lqJ3dPJupM03916Pat+ZOLX1vex9OeX9t8RZLJWt0oVrdc/GcrAyRD5FESDeP+M4tQ==} engines: {node: '>=10'} @@ -4439,7 +4515,7 @@ packages: '@babel/runtime': 7.23.2 dev: false - /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-accordion@1.1.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fDG7jcoNKVjSK6yfmuAs0EnPDro0WMXIhMtXdTBWqEioVW206ku+4Lw07e+13lUkFkpoEQ2PdeMIAGpdqEAmDg==} peerDependencies: '@types/react': '*' @@ -4454,21 +4530,21 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-collapsible': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-alert-dialog@1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-OrVIOcZL0tl6xibeuGt5/+UxoT2N27KCFOPjFyfXMnchxSHZ/OW7cCX2nGlIYJrbHK/fczPcFzAwvNBB6XBNMA==} peerDependencies: '@types/react': '*' @@ -4483,18 +4559,18 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dialog': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-arrow@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==} peerDependencies: '@types/react': '*' @@ -4508,14 +4584,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-aspect-ratio@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fXR5kbMan9oQqMuacfzlGG/SQMcmMlZ4wrvpckv8SgUulD0MMpspxJrxg/Gp/ISV3JfV1AeSWTYK9GvxA4ySwA==} peerDependencies: '@types/react': '*' @@ -4529,14 +4605,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-avatar@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-kVK2K7ZD3wwj3qhle0ElXhOjbezIgyl2hVvgwfIdexL3rN6zJmy5AqqIf+D31lxVppdzV8CjAfZ6PklkmInZLw==} peerDependencies: '@types/react': '*' @@ -4550,17 +4626,17 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-checkbox@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-CBuGQa52aAYnADZVt/KBQzXrwx6TqnlwtcIPGtVt5JkkzQwMOLJjPukimhfKEr4GQNd43C+djUh5Ikopj8pSLg==} peerDependencies: '@types/react': '*' @@ -4575,20 +4651,20 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-collapsible@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-UBmVDkmR6IvDsloHVN+3rtx4Mi5TFvylYXpluuv0f37dtaz3H99bp8No0LGXRigVpl3UAT4l9j6bIchh42S/Gg==} peerDependencies: '@types/react': '*' @@ -4603,20 +4679,20 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-collection@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==} peerDependencies: '@types/react': '*' @@ -4630,12 +4706,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -4649,7 +4725,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-compose-refs@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==} peerDependencies: '@types/react': '*' @@ -4659,11 +4735,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-context-menu@2.1.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-R5XaDj06Xul1KGb+WP8qiOh7tKJNz2durpLBXAGZjSVtctcRFCuEvy2gtMwRJGePwQQE5nV77gs4FwRi8T+r2g==} peerDependencies: '@types/react': '*' @@ -4678,13 +4754,13 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -4698,7 +4774,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-context@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-context@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==} peerDependencies: '@types/react': '*' @@ -4708,11 +4784,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-dialog@1.0.0(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dialog@1.0.0(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==} peerDependencies: react: ^16.8 || ^17.0 || ^18.0 @@ -4734,12 +4810,12 @@ packages: aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.4(@types/react@18.2.37)(react@18.2.0) + react-remove-scroll: 2.5.4(@types/react@18.2.38)(react@18.2.0) transitivePeerDependencies: - '@types/react' dev: false - /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dialog@1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==} peerDependencies: '@types/react': '*' @@ -4754,26 +4830,26 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.37)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0) dev: false - /@radix-ui/react-direction@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-direction@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==} peerDependencies: '@types/react': '*' @@ -4783,7 +4859,7 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false @@ -4803,7 +4879,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==} peerDependencies: '@types/react': '*' @@ -4818,17 +4894,17 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-escape-keydown': 1.0.3(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-dropdown-menu@2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-i6TuFOoWmLWq+M/eCLGd/bQ2HfAX1RJgvrBQ6AQLmzfvsLdefxbWu8G9zczcPFfcSPehz9GcpF6K9QYreFV8hA==} peerDependencies: '@types/react': '*' @@ -4843,14 +4919,14 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-menu': 2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -4864,7 +4940,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-focus-guards@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==} peerDependencies: '@types/react': '*' @@ -4874,7 +4950,7 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false @@ -4892,7 +4968,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==} peerDependencies: '@types/react': '*' @@ -4906,16 +4982,16 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-hover-card@1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-OcUN2FU0YpmajD/qkph3XzMcK/NmSk9hGWnjV68p6QiZMgILugusgQwnLSDs3oFSJYGKf3Y49zgFedhGh04k9A==} peerDependencies: '@types/react': '*' @@ -4930,16 +5006,16 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -4954,7 +5030,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-id@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-id@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==} peerDependencies: '@types/react': '*' @@ -4964,12 +5040,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-label@2.0.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-N5ehvlM7qoTLx7nWPodsPYPgMzA5WM8zZChQg8nyFJKnDO5WHdba1vv5/H6IO5LtJMfD2Q3wh1qHFGNtK0w3bQ==} peerDependencies: '@types/react': '*' @@ -4983,14 +5059,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-menu@2.0.6(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-BVkFLS+bUC8HcImkRKPSiVumA1VPOOEC5WBMiT+QAVsPzW1FJzI9KnqgGxVDPBcql5xXrHkD3JOVoXWEXD8SYA==} peerDependencies: '@types/react': '*' @@ -5005,30 +5081,30 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.37)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0) dev: false - /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popover@1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-shtvVnlsxT6faMnK/a7n0wptwBD23xc1Z5mdrtKLwVEfsEMXodS0r5s0/g5P0hX//EKYZS2sxUjqfzlg52ZSnQ==} peerDependencies: '@types/react': '*' @@ -5043,27 +5119,27 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.37)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0) dev: false - /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-popper@1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-cKpopj/5RHZWjrbF2846jBNacjQVwkP068DfmgrNJXpvVWrOvlAmE9xSiy5OqeE+Gi8D9fP+oDhUnPqNMY8/5w==} peerDependencies: '@types/react': '*' @@ -5078,17 +5154,17 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0) + '@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-rect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.38)(react@18.2.0) '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -5105,7 +5181,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-portal@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==} peerDependencies: '@types/react': '*' @@ -5119,9 +5195,9 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -5139,7 +5215,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-presence@1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==} peerDependencies: '@types/react': '*' @@ -5153,10 +5229,10 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -5173,7 +5249,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-primitive@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==} peerDependencies: '@types/react': '*' @@ -5187,14 +5263,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-roving-focus@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==} peerDependencies: '@types/react': '*' @@ -5209,21 +5285,21 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-scroll-area@1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-b6PAgH4GQf9QEn8zbT2XUHpW5z8BzqEc7Kl11TwDrvuTrxlkcjTD5qa/bxgKr+nmuXKu4L/W5UZ4mlP/VG/5Gw==} peerDependencies: '@types/react': '*' @@ -5239,20 +5315,20 @@ packages: '@babel/runtime': 7.23.2 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-select@2.0.0(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-RH5b7af4oHtkcHS7pG6Sgv5rk5Wxa7XI8W5gvB1N/yiuDGZxko1ynvOiVhFM7Cis2A8zxF9bTOUVbRDzPepe6w==} peerDependencies: '@types/react': '*' @@ -5268,32 +5344,32 @@ packages: '@babel/runtime': 7.23.2 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-focus-guards': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-focus-scope': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 aria-hidden: 1.2.3 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-remove-scroll: 2.5.5(@types/react@18.2.37)(react@18.2.0) + react-remove-scroll: 2.5.5(@types/react@18.2.38)(react@18.2.0) dev: false - /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-separator@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==} peerDependencies: '@types/react': '*' @@ -5307,14 +5383,14 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-slider@1.1.2(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-NKs15MJylfzVsCagVSWKhGGLNR1W9qWs+HtgbmjjVUB3B9+lb3PYoXxVju3kOrpf0VKyVCtZp+iTwVoqpa1Chw==} peerDependencies: '@types/react': '*' @@ -5330,17 +5406,17 @@ packages: '@babel/runtime': 7.23.2 '@radix-ui/number': 1.0.1 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -5355,7 +5431,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-slot@1.0.2(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-slot@1.0.2(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==} peerDependencies: '@types/react': '*' @@ -5365,12 +5441,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-switch@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-mxm87F88HyHztsI7N+ZUmEoARGkC22YVW5CaC+Byc+HRpuvCrOBPTAnXgf+tZ/7i0Sg/eOePGdMhUKhPaQEqow==} peerDependencies: '@types/react': '*' @@ -5385,19 +5461,19 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-previous': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-size': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-tabs@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-egZfYY/+wRNCflXNHx+dePvnz9FbmssDTJBtgRfDY7e8SE5oIo3Py2eCB1ckAbh1Q7cQ/6yJZThJ++sgbxibog==} peerDependencies: '@types/react': '*' @@ -5412,20 +5488,20 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toast@1.1.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-fRLn227WHIBRSzuRzGJ8W+5YALxofH23y0MlPLddaIpLpCDqdE0NZlS2NRQDRiptfxDeeCjgFIpexB1/zkxDlw==} peerDependencies: '@types/react': '*' @@ -5440,24 +5516,24 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-collection': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toggle-group@1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==} peerDependencies: '@types/react': '*' @@ -5472,19 +5548,19 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-direction': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-direction': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-roving-focus': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-toggle': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-toggle@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==} peerDependencies: '@types/react': '*' @@ -5499,15 +5575,15 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false - /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-tooltip@1.0.7(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-lPh5iKNFVQ/jav/j6ZrWq3blfDJ0OH9R6FlNUHPMqdLuQ9vwDgFsRxvl8b7Asuy5c8xmoojHUxKHQSOAvMHxyw==} peerDependencies: '@types/react': '*' @@ -5522,19 +5598,19 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/primitive': 1.0.1 - '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-context': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-id': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@radix-ui/react-slot': 1.0.2(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-compose-refs': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-context': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-dismissable-layer': 1.0.5(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-id': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-popper': 1.1.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-portal': 1.0.4(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-presence': 1.0.1(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-slot': 1.0.2(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-use-controllable-state': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@radix-ui/react-visually-hidden': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -5548,7 +5624,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==} peerDependencies: '@types/react': '*' @@ -5558,7 +5634,7 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false @@ -5572,7 +5648,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==} peerDependencies: '@types/react': '*' @@ -5582,8 +5658,8 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 react: 18.2.0 dev: false @@ -5597,7 +5673,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==} peerDependencies: '@types/react': '*' @@ -5607,8 +5683,8 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 + '@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 react: 18.2.0 dev: false @@ -5621,7 +5697,7 @@ packages: react: 18.2.0 dev: false - /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==} peerDependencies: '@types/react': '*' @@ -5631,11 +5707,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-use-previous@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==} peerDependencies: '@types/react': '*' @@ -5645,11 +5721,11 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-use-rect@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==} peerDependencies: '@types/react': '*' @@ -5660,11 +5736,11 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@radix-ui/rect': 1.0.1 - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-use-size@1.0.1(@types/react@18.2.37)(react@18.2.0): + /@radix-ui/react-use-size@1.0.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==} peerDependencies: '@types/react': '*' @@ -5674,12 +5750,12 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.37)(react@18.2.0) - '@types/react': 18.2.37 + '@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.2.38)(react@18.2.0) + '@types/react': 18.2.38 react: 18.2.0 dev: false - /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /@radix-ui/react-visually-hidden@1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==} peerDependencies: '@types/react': '*' @@ -5693,9 +5769,9 @@ packages: optional: true dependencies: '@babel/runtime': 7.23.2 - '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.15)(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) - '@types/react': 18.2.37 - '@types/react-dom': 18.2.15 + '@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.2.16)(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) + '@types/react': 18.2.38 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: false @@ -5849,7 +5925,7 @@ packages: dev: true optional: true - /@rushstack/node-core-library@3.61.0(@types/node@20.9.2): + /@rushstack/node-core-library@3.61.0(@types/node@20.9.3): resolution: {integrity: sha512-tdOjdErme+/YOu4gPed3sFS72GhtWCgNV9oDsHDnoLY5oDfwjKUc9Z+JOZZ37uAxcm/OCahDHfuu2ugqrfWAVQ==} peerDependencies: '@types/node': '*' @@ -5857,7 +5933,7 @@ packages: '@types/node': optional: true dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 colors: 1.2.5 fs-extra: 7.0.1 import-lazy: 4.0.0 @@ -5901,46 +5977,46 @@ packages: selderee: 0.11.0 dev: false - /@sentry-internal/tracing@7.80.1: - resolution: {integrity: sha512-5gZ4LPIj2vpQl2/dHBM4uXMi9OI5E0VlOhJQt0foiuN6JJeiOjdpJFcfVqJk69wrc0deVENTtgKKktxqMwVeWQ==} + /@sentry-internal/tracing@7.81.0: + resolution: {integrity: sha512-mc3tdOEvAE6kaCvT3BpMwCgfTT2yfXjWpC7g+3N8U/yuQEmQSCDZA/ut7EkzU0DyhG3t8HzT0c+CAG3HtilEAQ==} engines: {node: '>=8'} dependencies: - '@sentry/core': 7.80.1 - '@sentry/types': 7.80.1 - '@sentry/utils': 7.80.1 + '@sentry/core': 7.81.0 + '@sentry/types': 7.81.0 + '@sentry/utils': 7.81.0 dev: false - /@sentry/core@7.80.1: - resolution: {integrity: sha512-3Yh+O9Q86MxwIuJFYtuSSoUCpdx99P1xDAqL0FIPTJ+ekaVMiUJq9NmyaNh9uN2myPSmxvEXW6q3z37zta9ZHg==} + /@sentry/core@7.81.0: + resolution: {integrity: sha512-FCAKlqo9Z6fku69bkahw1AN+eBfAgRgOL1RpBLZgyG7YBW12vtSkHb5SDvZZTkm541Fo3hhepUTLtX0qmpA4yw==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.80.1 - '@sentry/utils': 7.80.1 + '@sentry/types': 7.81.0 + '@sentry/utils': 7.81.0 dev: false - /@sentry/node@7.80.1: - resolution: {integrity: sha512-0NWfcZMlyQphKWsvyzfhGm2dCBk5DUPqOGW/vGx18G4tCCYtFcAIj/mCp/4XOEcZRPQgb9vkm+sidGD6DnwWlA==} + /@sentry/node@7.81.0: + resolution: {integrity: sha512-hFfDxKGB+JhkhpZtM1ntyZDZoMlS8rMsynCSQcqJS39iYcCgdvgy9zOb34mXrX9kXOJNhWWmoloBZGA+KKFTdg==} engines: {node: '>=8'} dependencies: - '@sentry-internal/tracing': 7.80.1 - '@sentry/core': 7.80.1 - '@sentry/types': 7.80.1 - '@sentry/utils': 7.80.1 + '@sentry-internal/tracing': 7.81.0 + '@sentry/core': 7.81.0 + '@sentry/types': 7.81.0 + '@sentry/utils': 7.81.0 https-proxy-agent: 5.0.1 transitivePeerDependencies: - supports-color dev: false - /@sentry/types@7.80.1: - resolution: {integrity: sha512-CVu4uPVTOI3U9kYiOdA085R7jX5H1oVODbs9y+A8opJ0dtJTMueCXgZyE8oXQ0NjGVs6HEeaLkOuiV0mj8X3yw==} + /@sentry/types@7.81.0: + resolution: {integrity: sha512-rbYNYSSrrnwNndC7S+eVT84GRLEyCZNh9oXUQqzgSD6ngXCZ0xFJW6si75uv/XQBWIw4rkj9xfRcy8DU0Tj4fg==} engines: {node: '>=8'} dev: false - /@sentry/utils@7.80.1: - resolution: {integrity: sha512-bfFm2e/nEn+b9++QwjNEYCbS7EqmteT8uf0XUs7PljusSimIqqxDtK1pfD9zjynPgC8kW/fVBKv0pe2LufomeA==} + /@sentry/utils@7.81.0: + resolution: {integrity: sha512-yC9IvfeVbG4dygi4b+iUUMHp9xeHJfCn6XLbqjJVfq3xjAzBGHgfrpw6fYPNyTljXKb6CTiSXSqaNaQJE4CkPA==} engines: {node: '>=8'} dependencies: - '@sentry/types': 7.80.1 + '@sentry/types': 7.81.0 dev: false /@sinclair/typebox@0.27.8: @@ -5963,7 +6039,7 @@ packages: '@sinonjs/commons': 3.0.0 dev: true - /@songkeys/nestjs-redis-health@10.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@nestjs/terminus@10.1.1)(ioredis@5.3.2): + /@songkeys/nestjs-redis-health@10.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@nestjs/terminus@10.1.1)(ioredis@5.3.2): resolution: {integrity: sha512-FmVW+DnH2XXK1yhDM2GEtTy39TCJe4ch7T5kVU7FjxK4dbIjWf7xuFyzoIyNPl1XuH7vvkjy1O8aMNvNWhhmuA==} engines: {node: '>=16.0.0'} peerDependencies: @@ -5972,14 +6048,14 @@ packages: '@nestjs/terminus': ^10.0.0 ioredis: ^5.0.0 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/terminus': 10.1.1(@nestjs/axios@3.0.1)(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@prisma/client@5.6.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/terminus': 10.1.1(@nestjs/axios@3.0.1)(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@prisma/client@5.6.0)(reflect-metadata@0.1.13)(rxjs@7.8.1) ioredis: 5.3.2 tslib: 2.6.0 dev: false - /@songkeys/nestjs-redis@10.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(ioredis@5.3.2): + /@songkeys/nestjs-redis@10.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(ioredis@5.3.2): resolution: {integrity: sha512-s56+NECuJXzcaPLYzpvA2xjL0e/1Zy55UE0q6b1UqpbQSKI06TFPFCWCMUadJigiuB26O1hxi+lmDbzahKvcLg==} engines: {node: '>=16.0.0'} peerDependencies: @@ -5987,8 +6063,8 @@ packages: '@nestjs/core': ^10.0.0 ioredis: ^5.0.0 dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) ioredis: 5.3.2 tslib: 2.6.0 dev: false @@ -6082,14 +6158,14 @@ packages: '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.23.3) dev: true - /@svgr/core@8.1.0(typescript@5.2.2): + /@svgr/core@8.1.0(typescript@5.3.2): resolution: {integrity: sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA==} engines: {node: '>=14'} dependencies: '@babel/core': 7.23.3 '@svgr/babel-preset': 8.1.0(@babel/core@7.23.3) camelcase: 6.3.0 - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.3.2) snake-case: 3.0.4 transitivePeerDependencies: - supports-color @@ -6112,28 +6188,28 @@ packages: dependencies: '@babel/core': 7.23.3 '@svgr/babel-preset': 8.1.0(@babel/core@7.23.3) - '@svgr/core': 8.1.0(typescript@5.2.2) + '@svgr/core': 8.1.0(typescript@5.3.2) '@svgr/hast-util-to-babel-ast': 8.0.0 svg-parser: 2.0.4 transitivePeerDependencies: - supports-color dev: true - /@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0)(typescript@5.2.2): + /@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0)(typescript@5.3.2): resolution: {integrity: sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA==} engines: {node: '>=14'} peerDependencies: '@svgr/core': '*' dependencies: - '@svgr/core': 8.1.0(typescript@5.2.2) - cosmiconfig: 8.3.6(typescript@5.2.2) + '@svgr/core': 8.1.0(typescript@5.3.2) + cosmiconfig: 8.3.6(typescript@5.3.2) deepmerge: 4.3.1 svgo: 3.0.3 transitivePeerDependencies: - typescript dev: true - /@svgr/webpack@8.1.0(typescript@5.2.2): + /@svgr/webpack@8.1.0(typescript@5.3.2): resolution: {integrity: sha512-LnhVjMWyMQV9ZmeEy26maJk+8HTIbd59cH4F2MJ439k9DqejRisfFNGAPvRYlKETuh9LrImlS8aKsBgKjMA8WA==} engines: {node: '>=14'} dependencies: @@ -6142,37 +6218,37 @@ packages: '@babel/preset-env': 7.23.3(@babel/core@7.23.3) '@babel/preset-react': 7.23.3(@babel/core@7.23.3) '@babel/preset-typescript': 7.23.3(@babel/core@7.23.3) - '@svgr/core': 8.1.0(typescript@5.2.2) + '@svgr/core': 8.1.0(typescript@5.3.2) '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0) - '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0)(typescript@5.2.2) + '@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0)(typescript@5.3.2) transitivePeerDependencies: - supports-color - typescript dev: true - /@swc-node/core@1.10.6(@swc/core@1.3.96): + /@swc-node/core@1.10.6(@swc/core@1.3.99): resolution: {integrity: sha512-lDIi/rPosmKIknWzvs2/Fi9zWRtbkx8OJ9pQaevhsoGzJSal8Pd315k1W5AIrnknfdAB4HqRN12fk6AhqnrEEw==} engines: {node: '>= 10'} peerDependencies: '@swc/core': '>= 1.3' dependencies: - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) dev: true - /@swc-node/register@1.6.8(@swc/core@1.3.96)(typescript@5.2.2): + /@swc-node/register@1.6.8(@swc/core@1.3.99)(typescript@5.3.2): resolution: {integrity: sha512-74ijy7J9CWr1Z88yO+ykXphV29giCrSpANQPQRooE0bObpkTO1g4RzQovIfbIaniBiGDDVsYwDoQ3FIrCE8HcQ==} peerDependencies: '@swc/core': '>= 1.3' typescript: '>= 4.3' dependencies: - '@swc-node/core': 1.10.6(@swc/core@1.3.96) + '@swc-node/core': 1.10.6(@swc/core@1.3.99) '@swc-node/sourcemap-support': 0.3.0 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) colorette: 2.0.20 debug: 4.3.4 pirates: 4.0.6 tslib: 2.6.2 - typescript: 5.2.2 + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true @@ -6184,7 +6260,7 @@ packages: tslib: 2.6.2 dev: true - /@swc/cli@0.1.63(@swc/core@1.3.96): + /@swc/cli@0.1.63(@swc/core@1.3.99): resolution: {integrity: sha512-EM9oxxHzmmsprYRbGqsS2M4M/Gr5Gkcl0ROYYIdlUyTkhOiX822EQiRCpPCwdutdnzH2GyaTN7wc6i0Y+CKd3A==} engines: {node: '>= 12.13'} hasBin: true @@ -6196,7 +6272,7 @@ packages: optional: true dependencies: '@mole-inc/bin-wrapper': 8.0.1 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) commander: 7.2.0 fast-glob: 3.3.2 semver: 7.5.4 @@ -6204,8 +6280,8 @@ packages: source-map: 0.7.4 dev: true - /@swc/core-darwin-arm64@1.3.96: - resolution: {integrity: sha512-8hzgXYVd85hfPh6mJ9yrG26rhgzCmcLO0h1TIl8U31hwmTbfZLzRitFQ/kqMJNbIBCwmNH1RU2QcJnL3d7f69A==} + /@swc/core-darwin-arm64@1.3.99: + resolution: {integrity: sha512-Qj7Jct68q3ZKeuJrjPx7k8SxzWN6PqLh+VFxzA+KwLDpQDPzOlKRZwkIMzuFjLhITO4RHgSnXoDk/Syz0ZeN+Q==} engines: {node: '>=10'} cpu: [arm64] os: [darwin] @@ -6213,8 +6289,8 @@ packages: dev: true optional: true - /@swc/core-darwin-x64@1.3.96: - resolution: {integrity: sha512-mFp9GFfuPg+43vlAdQZl0WZpZSE8sEzqL7sr/7Reul5McUHP0BaLsEzwjvD035ESfkY8GBZdLpMinblIbFNljQ==} + /@swc/core-darwin-x64@1.3.99: + resolution: {integrity: sha512-wR7m9QVJjgiBu1PSOHy7s66uJPa45Kf9bZExXUL+JAa9OQxt5y+XVzr+n+F045VXQOwdGWplgPnWjgbUUHEVyw==} engines: {node: '>=10'} cpu: [x64] os: [darwin] @@ -6222,17 +6298,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm-gnueabihf@1.3.96: - resolution: {integrity: sha512-8UEKkYJP4c8YzYIY/LlbSo8z5Obj4hqcv/fUTHiEePiGsOddgGf7AWjh56u7IoN/0uEmEro59nc1ChFXqXSGyg==} - engines: {node: '>=10'} - cpu: [arm] - os: [linux] - requiresBuild: true - dev: true - optional: true - - /@swc/core-linux-arm64-gnu@1.3.96: - resolution: {integrity: sha512-c/IiJ0s1y3Ymm2BTpyC/xr6gOvoqAVETrivVXHq68xgNms95luSpbYQ28rqaZC8bQC8M5zdXpSc0T8DJu8RJGw==} + /@swc/core-linux-arm64-gnu@1.3.99: + resolution: {integrity: sha512-gcGv1l5t0DScEONmw5OhdVmEI/o49HCe9Ik38zzH0NtDkc+PDYaCcXU5rvfZP2qJFaAAr8cua8iJcOunOSLmnA==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -6240,8 +6307,8 @@ packages: dev: true optional: true - /@swc/core-linux-arm64-musl@1.3.96: - resolution: {integrity: sha512-i5/UTUwmJLri7zhtF6SAo/4QDQJDH2fhYJaBIUhrICmIkRO/ltURmpejqxsM/ye9Jqv5zG7VszMC0v/GYn/7BQ==} + /@swc/core-linux-arm64-musl@1.3.99: + resolution: {integrity: sha512-XL1/eUsTO8BiKsWq9i3iWh7H99iPO61+9HYiWVKhSavknfj4Plbn+XyajDpxsauln5o8t+BRGitymtnAWJM4UQ==} engines: {node: '>=10'} cpu: [arm64] os: [linux] @@ -6249,8 +6316,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-gnu@1.3.96: - resolution: {integrity: sha512-USdaZu8lTIkm4Yf9cogct/j5eqtdZqTgcTib4I+NloUW0E/hySou3eSyp3V2UAA1qyuC72ld1otXuyKBna0YKQ==} + /@swc/core-linux-x64-gnu@1.3.99: + resolution: {integrity: sha512-fGrXYE6DbTfGNIGQmBefYxSk3rp/1lgbD0nVg4rl4mfFRQPi7CgGhrrqSuqZ/ezXInUIgoCyvYGWFSwjLXt/Qg==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -6258,8 +6325,8 @@ packages: dev: true optional: true - /@swc/core-linux-x64-musl@1.3.96: - resolution: {integrity: sha512-QYErutd+G2SNaCinUVobfL7jWWjGTI0QEoQ6hqTp7PxCJS/dmKmj3C5ZkvxRYcq7XcZt7ovrYCTwPTHzt6lZBg==} + /@swc/core-linux-x64-musl@1.3.99: + resolution: {integrity: sha512-kvgZp/mqf3IJ806gUOL6gN6VU15+DfzM1Zv4Udn8GqgXiUAvbQehrtruid4Snn5pZTLj4PEpSCBbxgxK1jbssA==} engines: {node: '>=10'} cpu: [x64] os: [linux] @@ -6267,8 +6334,8 @@ packages: dev: true optional: true - /@swc/core-win32-arm64-msvc@1.3.96: - resolution: {integrity: sha512-hjGvvAduA3Un2cZ9iNP4xvTXOO4jL3G9iakhFsgVhpkU73SGmK7+LN8ZVBEu4oq2SUcHO6caWvnZ881cxGuSpg==} + /@swc/core-win32-arm64-msvc@1.3.99: + resolution: {integrity: sha512-yt8RtZ4W/QgFF+JUemOUQAkVW58cCST7mbfKFZ1v16w3pl3NcWd9OrtppFIXpbjU1rrUX2zp2R7HZZzZ2Zk/aQ==} engines: {node: '>=10'} cpu: [arm64] os: [win32] @@ -6276,8 +6343,8 @@ packages: dev: true optional: true - /@swc/core-win32-ia32-msvc@1.3.96: - resolution: {integrity: sha512-Far2hVFiwr+7VPCM2GxSmbh3ikTpM3pDombE+d69hkedvYHYZxtTF+2LTKl/sXtpbUnsoq7yV/32c9R/xaaWfw==} + /@swc/core-win32-ia32-msvc@1.3.99: + resolution: {integrity: sha512-62p5fWnOJR/rlbmbUIpQEVRconICy5KDScWVuJg1v3GPLBrmacjphyHiJC1mp6dYvvoEWCk/77c/jcQwlXrDXw==} engines: {node: '>=10'} cpu: [ia32] os: [win32] @@ -6285,8 +6352,8 @@ packages: dev: true optional: true - /@swc/core-win32-x64-msvc@1.3.96: - resolution: {integrity: sha512-4VbSAniIu0ikLf5mBX81FsljnfqjoVGleEkCQv4+zRlyZtO3FHoDPkeLVoy6WRlj7tyrRcfUJ4mDdPkbfTO14g==} + /@swc/core-win32-x64-msvc@1.3.99: + resolution: {integrity: sha512-PdppWhkoS45VGdMBxvClVgF1hVjqamtvYd82Gab1i4IV45OSym2KinoDCKE1b6j3LwBLOn2J9fvChGSgGfDCHQ==} engines: {node: '>=10'} cpu: [x64] os: [win32] @@ -6294,8 +6361,8 @@ packages: dev: true optional: true - /@swc/core@1.3.96(@swc/helpers@0.5.3): - resolution: {integrity: sha512-zwE3TLgoZwJfQygdv2SdCK9mRLYluwDOM53I+dT6Z5ZvrgVENmY3txvWDvduzkV+/8IuvrRbVezMpxcojadRdQ==} + /@swc/core@1.3.99(@swc/helpers@0.5.3): + resolution: {integrity: sha512-8O996RfuPC4ieb4zbYMfbyCU9k4gSOpyCNnr7qBQ+o7IEmh8JCV6B8wwu+fT/Om/6Lp34KJe1IpJ/24axKS6TQ==} engines: {node: '>=10'} requiresBuild: true peerDependencies: @@ -6308,16 +6375,15 @@ packages: '@swc/helpers': 0.5.3 '@swc/types': 0.1.5 optionalDependencies: - '@swc/core-darwin-arm64': 1.3.96 - '@swc/core-darwin-x64': 1.3.96 - '@swc/core-linux-arm-gnueabihf': 1.3.96 - '@swc/core-linux-arm64-gnu': 1.3.96 - '@swc/core-linux-arm64-musl': 1.3.96 - '@swc/core-linux-x64-gnu': 1.3.96 - '@swc/core-linux-x64-musl': 1.3.96 - '@swc/core-win32-arm64-msvc': 1.3.96 - '@swc/core-win32-ia32-msvc': 1.3.96 - '@swc/core-win32-x64-msvc': 1.3.96 + '@swc/core-darwin-arm64': 1.3.99 + '@swc/core-darwin-x64': 1.3.99 + '@swc/core-linux-arm64-gnu': 1.3.99 + '@swc/core-linux-arm64-musl': 1.3.99 + '@swc/core-linux-x64-gnu': 1.3.99 + '@swc/core-linux-x64-musl': 1.3.99 + '@swc/core-win32-arm64-msvc': 1.3.99 + '@swc/core-win32-ia32-msvc': 1.3.99 + '@swc/core-win32-x64-msvc': 1.3.99 dev: true /@swc/counter@0.1.2: @@ -6369,12 +6435,12 @@ packages: tailwindcss: 3.3.5(ts-node@10.9.1) dev: true - /@tanstack/eslint-plugin-query@5.8.4(eslint@8.54.0)(typescript@5.2.2): + /@tanstack/eslint-plugin-query@5.8.4(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-KVgcMc+Bn1qbwkxYVWQoiVSNEIN4IAiLj3cUH/SAHT8m8E59Y97o8ON1syp0Rcw094ItG8pEVZFyQuOaH6PDgQ==} peerDependencies: eslint: ^8.0.0 dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 transitivePeerDependencies: - supports-color @@ -6425,7 +6491,7 @@ packages: dependencies: '@babel/runtime': 7.23.2 '@testing-library/dom': 9.3.3 - '@types/react-dom': 18.2.15 + '@types/react-dom': 18.2.16 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) dev: true @@ -6812,12 +6878,12 @@ packages: resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==} dependencies: '@types/connect': 3.4.38 - '@types/node': 20.9.2 + '@types/node': 20.9.3 /@types/bonjour@3.5.13: resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/cacheable-request@6.0.3: @@ -6825,7 +6891,7 @@ packages: dependencies: '@types/http-cache-semantics': 4.0.4 '@types/keyv': 3.1.4 - '@types/node': 20.9.2 + '@types/node': 20.9.3 '@types/responselike': 1.0.3 dev: true @@ -6843,13 +6909,13 @@ packages: resolution: {integrity: sha512-6mfQ6iNvhSKCZJoY6sIG3m0pKkdUcweVNOLuBBKvoWGzl2yRxOJcYOTRyLKt3nxXvBLJWa6QkW//tgbIwJehmA==} dependencies: '@types/express-serve-static-core': 4.17.41 - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/connect@3.4.38: resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 /@types/cookie-parser@1.4.6: resolution: {integrity: sha512-KoooCrD56qlLskXPLGUiJxOMnv5l/8m7cQD2OxJ73NPMhuSz9PmvwRD6EpjDyKBVrdJDdQ4bQK7JFNHnNmax0w==} @@ -6883,7 +6949,7 @@ packages: /@types/express-serve-static-core@4.17.41: resolution: {integrity: sha512-OaJ7XLaelTgrvlZD8/aa0vvvxZdUmlCn6MtWeB7TkiKW70BQLc9XEPpDLPdbo52ZhXUCrznlWdCHWxJWtdyajA==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 '@types/qs': 6.9.10 '@types/range-parser': 1.2.7 '@types/send': 0.17.4 @@ -6903,7 +6969,7 @@ packages: /@types/graceful-fs@4.1.9: resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/http-cache-semantics@4.0.4: @@ -6916,7 +6982,7 @@ packages: /@types/http-proxy@1.17.14: resolution: {integrity: sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/istanbul-lib-coverage@2.0.6: @@ -6932,8 +6998,8 @@ packages: dependencies: '@types/istanbul-lib-report': 3.0.3 - /@types/jest@29.5.8: - resolution: {integrity: sha512-fXEFTxMV2Co8ZF5aYFJv+YeA08RTYJfhtN5c9JSv/mFEMe+xxjufCb+PHL+bJcMs/ebPUsBu+UNTEz+ydXrR6g==} + /@types/jest@29.5.9: + resolution: {integrity: sha512-zJeWhqBwVoPm83sP8h1/SVntwWTu5lZbKQGCvBjxQOyEWnKnsaomt2y7SlV4KfwlrHAHHAn00Sh4IAWaIsGOgQ==} dependencies: expect: 29.7.0 pretty-format: 29.7.0 @@ -6950,13 +7016,13 @@ packages: /@types/jsonwebtoken@9.0.5: resolution: {integrity: sha512-VRLSGzik+Unrup6BsouBeHsf4d1hOEgYWTm/7Nmw1sXoN1+tRly/Gy/po3yeahnP4jfnQWWAhQAqcNfH7ngOkA==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: false /@types/keyv@3.1.4: resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/lodash.debounce@4.0.9: @@ -6987,8 +7053,8 @@ packages: /@types/mime@3.0.4: resolution: {integrity: sha512-iJt33IQnVRkqeqC7PzBHPTC6fDlRNRW8vjrgqtScAhrmMwe8c4Eo7+fUGTa+XdWrpEgpyKWMYmi2dIwMAYRzPw==} - /@types/multer@1.4.10: - resolution: {integrity: sha512-6l9mYMhUe8wbnz/67YIjc7ZJyQNZoKq7fRXVf7nMdgWgalD0KyzJ2ywI7hoATUSXSbTu9q2HBiEwzy0tNN1v2w==} + /@types/multer@1.4.11: + resolution: {integrity: sha512-svK240gr6LVWvv3YGyhLlA+6LRRWA4mnGIU7RcNmgjBYFl6665wcXrRfxGp5tEPVHUNm5FMcmq7too9bxCwX/w==} dependencies: '@types/express': 4.17.21 dev: true @@ -6996,14 +7062,14 @@ packages: /@types/node-fetch@2.6.9: resolution: {integrity: sha512-bQVlnMLFJ2d35DkPNjEPmd9ueO/rh5EiaZt2bhqiSarPjZIuIV6bPQVqcrEyvNo+AfTrRGVazle1tl597w3gfA==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 form-data: 4.0.0 dev: false /@types/node-forge@1.3.9: resolution: {integrity: sha512-meK88cx/sTalPSLSoCzkiUB4VPIFHmxtXm5FaaqRDqBX2i/Sy8bJ4odsan0b20RBjPh06dAQ+OTTdnyQyhJZyQ==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/node@18.18.9: @@ -7012,21 +7078,21 @@ packages: undici-types: 5.26.5 dev: false - /@types/node@20.9.2: - resolution: {integrity: sha512-WHZXKFCEyIUJzAwh3NyyTHYSR35SevJ6mZ1nWwJafKtiQbqRTIKSRcw3Ma3acqgsent3RRDqeVwpHntMk+9irg==} + /@types/node@20.9.3: + resolution: {integrity: sha512-nk5wXLAXGBKfrhLB0cyHGbSqopS+nz0BUgZkUQqSHSSgdee0kssp1IAqlQOu333bW+gMNs2QREx7iynm19Abxw==} dependencies: undici-types: 5.26.5 /@types/nodemailer@6.4.14: resolution: {integrity: sha512-fUWthHO9k9DSdPCSPRqcu6TWhYyxTBg382vlNIttSe9M7XfsT06y0f24KHXtbnijPGGRIcVvdKHTNikOI6qiHA==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/oauth@0.9.4: resolution: {integrity: sha512-qk9orhti499fq5XxKCCEbd0OzdPZuancneyse3KtR+vgMiHRbh+mn8M4G6t64ob/Fg+GZGpa565MF/2dKWY32A==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/object.omit@3.0.3: @@ -7037,10 +7103,10 @@ packages: resolution: {integrity: sha512-5PjwB0uP2XDp3nt5u5NJAG2DORHIRClPzWT/TTZhJ2Ekwe8M5bA9tvPdi9NO/n2uvu2/ictat8kgqvLfcIE1SA==} dev: false - /@types/papaparse@5.3.11: - resolution: {integrity: sha512-ISil0lMkpRDrBTKRPnUgVb5IqxWwj19gWBrX/ROk3pbkkslBN3URa713r/BSfAUj+w9gTPg3S3f45aMToVfh1w==} + /@types/papaparse@5.3.12: + resolution: {integrity: sha512-b6tFvGgpY6zUjflrhhyFjNCN/okylDH/DKqAuYX2xqzK004H4CoEvnFyfT0ijiC/9h+dCUQYWS1Vl1mliLuMJA==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/parse-json@4.0.2: @@ -7050,7 +7116,7 @@ packages: resolution: {integrity: sha512-/nMfiPK2E6GKttwBzwj0Wjaot8eHrM57hnWxu52o6becr5/kXlH/4yE2v2rh234WGvSgEEzIII02Nc5oC5xEHA==} dependencies: '@types/express': 4.17.21 - '@types/passport': 1.0.15 + '@types/passport': 1.0.16 '@types/passport-oauth2': 1.4.15 dev: true @@ -7058,7 +7124,7 @@ packages: resolution: {integrity: sha512-ZaZpRUAeMl3vy298ulKO1wGLn9SQtj/CyIfZL/Px5xU9pybMiQU3mhXDCBiWSbg0EK9uXT4ZoWC3ktuWY+5fwQ==} dependencies: '@types/express': 4.17.21 - '@types/passport': 1.0.15 + '@types/passport': 1.0.16 '@types/passport-oauth2': 1.4.15 dev: true @@ -7074,7 +7140,7 @@ packages: resolution: {integrity: sha512-nsrW4A963lYE7lNTv9cr5WmiUD1ibYJvWrpE13oxApFsRt77b0RdtZvKbCdNIY4v/QZ6TRQWaDDEwV1kCTmcXg==} dependencies: '@types/express': 4.17.21 - '@types/passport': 1.0.15 + '@types/passport': 1.0.16 '@types/passport-strategy': 0.2.38 dev: true @@ -7083,17 +7149,17 @@ packages: dependencies: '@types/express': 4.17.21 '@types/oauth': 0.9.4 - '@types/passport': 1.0.15 + '@types/passport': 1.0.16 dev: true /@types/passport-strategy@0.2.38: resolution: {integrity: sha512-GC6eMqqojOooq993Tmnmp7AUTbbQSgilyvpCYQjT+H6JfG/g6RGc7nXEniZlp0zyKJ0WUdOiZWLBZft9Yug1uA==} dependencies: '@types/express': 4.17.21 - '@types/passport': 1.0.15 + '@types/passport': 1.0.16 - /@types/passport@1.0.15: - resolution: {integrity: sha512-oHOgzPBp5eLI1U/7421qYV/ZySQXMYCBSfRkDe1tQ0YrIbLY/M/76qIXE7Bs7lFyvw1x5QqiNQ9imvh0fQHe9Q==} + /@types/passport@1.0.16: + resolution: {integrity: sha512-FD0qD5hbPWQzaM0wHUnJ/T0BBCJBxCeemtnCwc/ThhTg3x9jfrAcRUmj5Dopza+MfFS9acTe3wk7rcVnRIp/0A==} dependencies: '@types/express': 4.17.21 @@ -7111,19 +7177,19 @@ packages: /@types/range-parser@1.2.7: resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==} - /@types/react-dom@18.2.15: - resolution: {integrity: sha512-HWMdW+7r7MR5+PZqJF6YFNSCtjz1T0dsvo/f1BV6HkV+6erD/nA7wd9NM00KVG83zf2nJ7uATPO9ttdIPvi3gg==} + /@types/react-dom@18.2.16: + resolution: {integrity: sha512-766c37araZ9vxtYs25gvY2wNdFWsT2ZiUvOd0zMhTaoGj6B911N8CKQWgXXJoPMLF3J82thpRqQA7Rf3rBwyJw==} dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 /@types/react-is@18.2.4: resolution: {integrity: sha512-wBc7HgmbCcrvw0fZjxbgz/xrrlZKzEqmABBMeSvpTvdm25u6KI6xdIi9pRE2G0C1Lw5ETFdcn4UbYZ4/rpqUYw==} dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 dev: true - /@types/react@18.2.37: - resolution: {integrity: sha512-RGAYMi2bhRgEXT3f4B92WTohopH6bIXw05FuGlmJEnv/omEn190+QYEIYxIAuIBdKgboYYdVved2p1AxZVQnaw==} + /@types/react@18.2.38: + resolution: {integrity: sha512-cBBXHzuPtQK6wNthuVMV6IjHAFkdl/FOPFIlkd81/Cd1+IqkHu/A+w4g43kaQQoYHik/ruaQBDL72HyCy1vuMw==} dependencies: '@types/prop-types': 15.7.10 '@types/scheduler': 0.16.6 @@ -7132,7 +7198,7 @@ packages: /@types/responselike@1.0.3: resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/retry@0.12.0: @@ -7154,7 +7220,7 @@ packages: resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==} dependencies: '@types/mime': 1.3.5 - '@types/node': 20.9.2 + '@types/node': 20.9.3 /@types/serve-index@1.9.4: resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==} @@ -7167,12 +7233,12 @@ packages: dependencies: '@types/http-errors': 2.0.4 '@types/mime': 3.0.4 - '@types/node': 20.9.2 + '@types/node': 20.9.3 /@types/sockjs@0.3.36: resolution: {integrity: sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/stack-utils@2.0.3: @@ -7183,14 +7249,14 @@ packages: resolution: {integrity: sha512-5eQEtSCoESnh2FsiLTxE121IiE60hnMqcb435fShf4bpLRjEu1Eoekht23y6zXS9Ts3l+Szu3TARnTsA0GkOkQ==} dev: false - /@types/webfontloader@1.6.37: - resolution: {integrity: sha512-/rX4xIG7E4pvkCcXfuZklgb3cwnD3WGLi5DUg0tfBvlklo5qfVom0XiDFonp1styeEGWoXuv1dMQHmEt0cZysA==} + /@types/webfontloader@1.6.38: + resolution: {integrity: sha512-kUaF72Fv202suFx6yBrwXqeVRMx7hGtJTesyESZgn9sEPCUeDXm2p0SiyS1MTqW74nQP4p7JyrOCwZ7pNFns4w==} dev: true /@types/ws@8.5.9: resolution: {integrity: sha512-jbdrY0a8lxfdTp/+r7Z4CkycbOFN8WX+IOchLJr3juT/xzbJ8URyTVSJ/hvNdadTgM1mnedb47n+Y31GsFnQlg==} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: true /@types/yargs-parser@21.0.3: @@ -7205,12 +7271,12 @@ packages: resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==} requiresBuild: true dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 dev: false optional: true - /@typescript-eslint/eslint-plugin@6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2): - resolution: {integrity: sha512-uXnpZDc4VRjY4iuypDBKzW1rz9T5YBBK0snMn8MaTSNd2kMlj50LnLBABELjJiOL5YHk7ZD8hbSpI9ubzqYI0w==} + /@typescript-eslint/eslint-plugin@6.12.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0)(typescript@5.3.2): + resolution: {integrity: sha512-XOpZ3IyJUIV1b15M7HVOpgQxPPF7lGXgsfcEIu3yDxFPaf/xZKt7s9QO/pbk7vpWQyVulpJbu4E5LwpZiQo4kA==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha @@ -7221,25 +7287,25 @@ packages: optional: true dependencies: '@eslint-community/regexpp': 4.10.0 - '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/scope-manager': 6.11.0 - '@typescript-eslint/type-utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.11.0 + '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/scope-manager': 6.12.0 + '@typescript-eslint/type-utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) + '@typescript-eslint/visitor-keys': 6.12.0 debug: 4.3.4 eslint: 8.54.0 graphemer: 1.4.0 ignore: 5.3.0 natural-compare: 1.4.0 semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 + ts-api-utils: 1.0.3(typescript@5.3.2) + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/parser@6.11.0(eslint@8.54.0)(typescript@5.2.2): - resolution: {integrity: sha512-+whEdjk+d5do5nxfxx73oanLL9ghKO3EwM9kBCkUtWMRwWuPaFv9ScuqlYfQ6pAD6ZiJhky7TZ2ZYhrMsfMxVQ==} + /@typescript-eslint/parser@6.12.0(eslint@8.54.0)(typescript@5.3.2): + resolution: {integrity: sha512-s8/jNFPKPNRmXEnNXfuo1gemBdVmpQsK1pcu+QIvuNJuhFzGrpD7WjOcvDc/+uEdfzSYpNu7U/+MmbScjoQ6vg==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -7248,13 +7314,13 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/scope-manager': 6.11.0 - '@typescript-eslint/types': 6.11.0 - '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2) - '@typescript-eslint/visitor-keys': 6.11.0 + '@typescript-eslint/scope-manager': 6.12.0 + '@typescript-eslint/types': 6.12.0 + '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2) + '@typescript-eslint/visitor-keys': 6.12.0 debug: 4.3.4 eslint: 8.54.0 - typescript: 5.2.2 + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true @@ -7267,16 +7333,16 @@ packages: '@typescript-eslint/visitor-keys': 5.62.0 dev: true - /@typescript-eslint/scope-manager@6.11.0: - resolution: {integrity: sha512-0A8KoVvIURG4uhxAdjSaxy8RdRE//HztaZdG8KiHLP8WOXSk0vlF7Pvogv+vlJA5Rnjj/wDcFENvDaHb+gKd1A==} + /@typescript-eslint/scope-manager@6.12.0: + resolution: {integrity: sha512-5gUvjg+XdSj8pcetdL9eXJzQNTl3RD7LgUiYTl8Aabdi8hFkaGSYnaS6BLc0BGNaDH+tVzVwmKtWvu0jLgWVbw==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.11.0 - '@typescript-eslint/visitor-keys': 6.11.0 + '@typescript-eslint/types': 6.12.0 + '@typescript-eslint/visitor-keys': 6.12.0 dev: true - /@typescript-eslint/type-utils@6.11.0(eslint@8.54.0)(typescript@5.2.2): - resolution: {integrity: sha512-nA4IOXwZtqBjIoYrJcYxLRO+F9ri+leVGoJcMW1uqr4r1Hq7vW5cyWrA43lFbpRvQ9XgNrnfLpIkO3i1emDBIA==} + /@typescript-eslint/type-utils@6.12.0(eslint@8.54.0)(typescript@5.3.2): + resolution: {integrity: sha512-WWmRXxhm1X8Wlquj+MhsAG4dU/Blvf1xDgGaYCzfvStP2NwPQh6KBvCDbiOEvaE0filhranjIlK/2fSTVwtBng==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -7285,12 +7351,12 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2) - '@typescript-eslint/utils': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2) + '@typescript-eslint/utils': 6.12.0(eslint@8.54.0)(typescript@5.3.2) debug: 4.3.4 eslint: 8.54.0 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 + ts-api-utils: 1.0.3(typescript@5.3.2) + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true @@ -7300,12 +7366,12 @@ packages: engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} dev: true - /@typescript-eslint/types@6.11.0: - resolution: {integrity: sha512-ZbEzuD4DwEJxwPqhv3QULlRj8KYTAnNsXxmfuUXFCxZmO6CF2gM/y+ugBSAQhrqaJL3M+oe4owdWunaHM6beqA==} + /@typescript-eslint/types@6.12.0: + resolution: {integrity: sha512-MA16p/+WxM5JG/F3RTpRIcuOghWO30//VEOvzubM8zuOOBYXsP+IfjoCXXiIfy2Ta8FRh9+IO9QLlaFQUU+10Q==} engines: {node: ^16.0.0 || >=18.0.0} dev: true - /@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2): + /@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.2): resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7320,14 +7386,14 @@ packages: globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - tsutils: 3.21.0(typescript@5.2.2) - typescript: 5.2.2 + tsutils: 3.21.0(typescript@5.3.2) + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/typescript-estree@6.11.0(typescript@5.2.2): - resolution: {integrity: sha512-Aezzv1o2tWJwvZhedzvD5Yv7+Lpu1by/U1LZ5gLc4tCx8jUmuSCMioPFRjliN/6SJIvY6HpTtJIWubKuYYYesQ==} + /@typescript-eslint/typescript-estree@6.12.0(typescript@5.3.2): + resolution: {integrity: sha512-vw9E2P9+3UUWzhgjyyVczLWxZ3GuQNT7QpnIY3o5OMeLO/c8oHljGc8ZpryBMIyympiAAaKgw9e5Hl9dCWFOYw==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: typescript: '*' @@ -7335,19 +7401,19 @@ packages: typescript: optional: true dependencies: - '@typescript-eslint/types': 6.11.0 - '@typescript-eslint/visitor-keys': 6.11.0 + '@typescript-eslint/types': 6.12.0 + '@typescript-eslint/visitor-keys': 6.12.0 debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 semver: 7.5.4 - ts-api-utils: 1.0.3(typescript@5.2.2) - typescript: 5.2.2 + ts-api-utils: 1.0.3(typescript@5.3.2) + typescript: 5.3.2 transitivePeerDependencies: - supports-color dev: true - /@typescript-eslint/utils@5.62.0(eslint@8.54.0)(typescript@5.2.2): + /@typescript-eslint/utils@5.62.0(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -7358,7 +7424,7 @@ packages: '@types/semver': 7.5.5 '@typescript-eslint/scope-manager': 5.62.0 '@typescript-eslint/types': 5.62.0 - '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) + '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2) eslint: 8.54.0 eslint-scope: 5.1.1 semver: 7.5.4 @@ -7367,8 +7433,8 @@ packages: - typescript dev: true - /@typescript-eslint/utils@6.11.0(eslint@8.54.0)(typescript@5.2.2): - resolution: {integrity: sha512-p23ibf68fxoZy605dc0dQAEoUsoiNoP3MD9WQGiHLDuTSOuqoTsa4oAy+h3KDkTcxbbfOtUjb9h3Ta0gT4ug2g==} + /@typescript-eslint/utils@6.12.0(eslint@8.54.0)(typescript@5.3.2): + resolution: {integrity: sha512-LywPm8h3tGEbgfyjYnu3dauZ0U7R60m+miXgKcZS8c7QALO9uWJdvNoP+duKTk2XMWc7/Q3d/QiCuLN9X6SWyQ==} engines: {node: ^16.0.0 || >=18.0.0} peerDependencies: eslint: ^7.0.0 || ^8.0.0 @@ -7376,9 +7442,9 @@ packages: '@eslint-community/eslint-utils': 4.4.0(eslint@8.54.0) '@types/json-schema': 7.0.15 '@types/semver': 7.5.5 - '@typescript-eslint/scope-manager': 6.11.0 - '@typescript-eslint/types': 6.11.0 - '@typescript-eslint/typescript-estree': 6.11.0(typescript@5.2.2) + '@typescript-eslint/scope-manager': 6.12.0 + '@typescript-eslint/types': 6.12.0 + '@typescript-eslint/typescript-estree': 6.12.0(typescript@5.3.2) eslint: 8.54.0 semver: 7.5.4 transitivePeerDependencies: @@ -7394,11 +7460,11 @@ packages: eslint-visitor-keys: 3.4.3 dev: true - /@typescript-eslint/visitor-keys@6.11.0: - resolution: {integrity: sha512-+SUN/W7WjBr05uRxPggJPSzyB8zUpaYo2hByKasWbqr3PM8AXfZt8UHdNpBS1v9SA62qnSSMF3380SwDqqprgQ==} + /@typescript-eslint/visitor-keys@6.12.0: + resolution: {integrity: sha512-rg3BizTZHF1k3ipn8gfrzDXXSFKyOEB5zxYXInQ6z0hUvmQlhaZQzK+YmHmNViMA9HzW5Q9+bPPt90bU6GQwyw==} engines: {node: ^16.0.0 || >=18.0.0} dependencies: - '@typescript-eslint/types': 6.11.0 + '@typescript-eslint/types': 6.12.0 eslint-visitor-keys: 3.4.3 dev: true @@ -7411,8 +7477,8 @@ packages: peerDependencies: vite: ^4 || ^5 dependencies: - '@swc/core': 1.3.96(@swc/helpers@0.5.3) - vite: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) + vite: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - '@swc/helpers' dev: true @@ -7428,7 +7494,7 @@ packages: '@babel/plugin-transform-react-jsx-source': 7.23.3(@babel/core@7.23.3) '@types/babel__core': 7.20.4 react-refresh: 0.14.0 - vite: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) + vite: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - supports-color dev: true @@ -7542,7 +7608,7 @@ packages: '@vue/shared': 3.3.8 dev: true - /@vue/language-core@1.8.22(typescript@5.2.2): + /@vue/language-core@1.8.22(typescript@5.3.2): resolution: {integrity: sha512-bsMoJzCrXZqGsxawtUea1cLjUT9dZnDsy5TuZ+l1fxRMzUGQUG9+Ypq4w//CqpWmrx7nIAJpw2JVF/t258miRw==} peerDependencies: typescript: '*' @@ -7557,7 +7623,7 @@ packages: computeds: 0.0.1 minimatch: 9.0.3 muggle-string: 0.3.1 - typescript: 5.2.2 + typescript: 5.3.2 vue-template-compiler: 2.7.15 dev: true @@ -8194,7 +8260,7 @@ packages: '@babel/core': 7.23.3 find-cache-dir: 4.0.0 schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /babel-plugin-const-enum@1.2.0(@babel/core@7.23.3): @@ -8563,7 +8629,7 @@ packages: /builtins@5.0.1: resolution: {integrity: sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==} dependencies: - semver: 7.5.3 + semver: 7.5.4 dev: true /bundle-name@3.0.0: @@ -8895,13 +8961,13 @@ packages: engines: {node: '>=0.10.0'} dev: false - /cmdk@0.2.0(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0): + /cmdk@0.2.0(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0): resolution: {integrity: sha512-JQpKvEOb86SnvMZbYaFKYhvzFntWBeSZdyii0rZPhKJj9uwJBxu4DaVYDrRN7r3mPop56oPhRw+JYWTKs66TYw==} peerDependencies: react: ^18.0.0 react-dom: ^18.0.0 dependencies: - '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.37)(react-dom@18.2.0)(react@18.2.0) + '@radix-ui/react-dialog': 1.0.0(@types/react@18.2.38)(react-dom@18.2.0)(react@18.2.0) command-score: 0.1.2 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -9153,7 +9219,7 @@ packages: normalize-path: 3.0.0 schema-utils: 4.2.0 serialize-javascript: 6.0.1 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /core-js-compat@3.33.2: @@ -9198,7 +9264,7 @@ packages: path-type: 4.0.0 yaml: 1.10.2 - /cosmiconfig@8.3.6(typescript@5.2.2): + /cosmiconfig@8.3.6(typescript@5.3.2): resolution: {integrity: sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==} engines: {node: '>=14'} peerDependencies: @@ -9211,9 +9277,9 @@ packages: js-yaml: 4.1.0 parse-json: 5.2.0 path-type: 4.0.0 - typescript: 5.2.2 + typescript: 5.3.2 - /create-jest@29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): + /create-jest@29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -9222,7 +9288,7 @@ packages: chalk: 4.1.2 exit: 0.1.2 graceful-fs: 4.2.11 - jest-config: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) jest-util: 29.7.0 prompts: 2.4.2 transitivePeerDependencies: @@ -9311,7 +9377,7 @@ packages: postcss-modules-values: 4.0.0(postcss@8.4.31) postcss-value-parser: 4.2.0 semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /css-minimizer-webpack-plugin@5.0.1(webpack@5.89.0): @@ -9345,7 +9411,7 @@ packages: postcss: 8.4.31 schema-utils: 4.2.0 serialize-javascript: 6.0.1 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /css-rules@1.1.0: @@ -10274,7 +10340,7 @@ packages: - supports-color dev: true - /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint@8.54.0): + /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint@8.54.0): resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} engines: {node: '>=4'} peerDependencies: @@ -10295,7 +10361,7 @@ packages: eslint-import-resolver-webpack: optional: true dependencies: - '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2) debug: 3.2.7 eslint: 8.54.0 eslint-import-resolver-node: 0.3.9 @@ -10303,7 +10369,7 @@ packages: - supports-color dev: true - /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0): + /eslint-plugin-import@2.29.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0): resolution: {integrity: sha512-QPOO5NO6Odv5lpoTkddtutccQjysJuFxoPS7fAHO+9m9udNHvTCPSAMW9zGAYj8lAIdr40I8yPCdUYrncXtrwg==} engines: {node: '>=4'} peerDependencies: @@ -10313,7 +10379,7 @@ packages: '@typescript-eslint/parser': optional: true dependencies: - '@typescript-eslint/parser': 6.11.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/parser': 6.12.0(eslint@8.54.0)(typescript@5.3.2) array-includes: 3.1.7 array.prototype.findlastindex: 1.2.3 array.prototype.flat: 1.3.2 @@ -10322,7 +10388,7 @@ packages: doctrine: 2.1.0 eslint: 8.54.0 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.11.0)(eslint-import-resolver-node@0.3.9)(eslint@8.54.0) + eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.12.0)(eslint-import-resolver-node@0.3.9)(eslint@8.54.0) hasown: 2.0.0 is-core-module: 2.13.1 is-glob: 4.0.3 @@ -10363,11 +10429,11 @@ packages: object.fromentries: 2.0.7 dev: true - /eslint-plugin-lingui@0.2.0(eslint@8.54.0)(typescript@5.2.2): + /eslint-plugin-lingui@0.2.0(eslint@8.54.0)(typescript@5.3.2): resolution: {integrity: sha512-o63ySrDZlsujAaa3ybiFAjhkE1LHaKw5Z5GztiKHu1R+40tVOShy1XKvM+Q+vBykRXV9UrxE1oR79pUOSrsLVA==} engines: {node: '>=16.0.0'} dependencies: - '@typescript-eslint/utils': 5.62.0(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/utils': 5.62.0(eslint@8.54.0)(typescript@5.3.2) transitivePeerDependencies: - eslint - supports-color @@ -10448,7 +10514,7 @@ packages: tailwindcss: 3.3.5(ts-node@10.9.1) dev: true - /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.11.0)(eslint@8.54.0): + /eslint-plugin-unused-imports@3.0.0(@typescript-eslint/eslint-plugin@6.12.0)(eslint@8.54.0): resolution: {integrity: sha512-sduiswLJfZHeeBJ+MQaG+xYzSWdRXoSw61DpU13mzWumCkR0ufD0HmO4kdNokjrkluMHpj/7PJeN35pgbhW3kw==} engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} peerDependencies: @@ -10458,7 +10524,7 @@ packages: '@typescript-eslint/eslint-plugin': optional: true dependencies: - '@typescript-eslint/eslint-plugin': 6.11.0(@typescript-eslint/parser@6.11.0)(eslint@8.54.0)(typescript@5.2.2) + '@typescript-eslint/eslint-plugin': 6.12.0(@typescript-eslint/parser@6.12.0)(eslint@8.54.0)(typescript@5.3.2) eslint: 8.54.0 eslint-rule-composer: 0.3.0 dev: true @@ -10886,7 +10952,7 @@ packages: dependencies: loader-utils: 2.0.4 schema-utils: 3.3.0 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /file-saver@2.0.5: @@ -11070,7 +11136,7 @@ packages: signal-exit: 4.1.0 dev: false - /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.2.2)(webpack@5.89.0): + /fork-ts-checker-webpack-plugin@7.2.13(typescript@5.3.2)(webpack@5.89.0): resolution: {integrity: sha512-fR3WRkOb4bQdWB/y7ssDUlVdrclvwtyCUIHCfivAoYxq9dF7XfrDKbMdZIfwJ7hxIAqkYSGeU7lLJE6xrxIBdg==} engines: {node: '>=12.13.0', yarn: '>=1.0.0'} peerDependencies: @@ -11093,8 +11159,8 @@ packages: schema-utils: 3.3.0 semver: 7.5.4 tapable: 2.2.1 - typescript: 5.2.2 - webpack: 5.89.0(@swc/core@1.3.96) + typescript: 5.3.2 + webpack: 5.89.0(@swc/core@1.3.99) dev: true /form-data-encoder@1.7.2: @@ -11357,7 +11423,7 @@ packages: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.0.5 + minimatch: 3.1.2 once: 1.4.0 path-is-absolute: 1.0.1 dev: true @@ -12394,7 +12460,7 @@ packages: '@jest/expect': 29.7.0 '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 chalk: 4.1.2 co: 4.6.0 dedent: 1.5.1(babel-plugin-macros@3.1.0) @@ -12415,7 +12481,7 @@ packages: - supports-color dev: true - /jest-cli@29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): + /jest-cli@29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -12429,10 +12495,10 @@ packages: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 chalk: 4.1.2 - create-jest: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + create-jest: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) exit: 0.1.2 import-local: 3.1.0 - jest-config: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + jest-config: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) jest-util: 29.7.0 jest-validate: 29.7.0 yargs: 17.7.2 @@ -12443,7 +12509,7 @@ packages: - ts-node dev: true - /jest-config@29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): + /jest-config@29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} peerDependencies: @@ -12458,7 +12524,7 @@ packages: '@babel/core': 7.23.3 '@jest/test-sequencer': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 babel-jest: 29.7.0(@babel/core@7.23.3) chalk: 4.1.2 ci-info: 3.9.0 @@ -12478,7 +12544,7 @@ packages: pretty-format: 29.7.0 slash: 3.0.0 strip-json-comments: 3.1.1 - ts-node: 10.9.1(@swc/core@1.3.96)(@types/node@20.9.2)(typescript@5.2.2) + ts-node: 10.9.1(@swc/core@1.3.99)(@types/node@20.9.3)(typescript@5.3.2) transitivePeerDependencies: - babel-plugin-macros - supports-color @@ -12519,7 +12585,7 @@ packages: '@jest/environment': 29.7.0 '@jest/fake-timers': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 jest-mock: 29.7.0 jest-util: 29.7.0 dev: true @@ -12534,7 +12600,7 @@ packages: dependencies: '@jest/types': 29.6.3 '@types/graceful-fs': 4.1.9 - '@types/node': 20.9.2 + '@types/node': 20.9.3 anymatch: 3.1.3 fb-watchman: 2.0.2 graceful-fs: 4.2.11 @@ -12585,7 +12651,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 jest-util: 29.7.0 dev: true @@ -12640,7 +12706,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 chalk: 4.1.2 emittery: 0.13.1 graceful-fs: 4.2.11 @@ -12671,7 +12737,7 @@ packages: '@jest/test-result': 29.7.0 '@jest/transform': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 chalk: 4.1.2 cjs-module-lexer: 1.2.3 collect-v8-coverage: 1.0.2 @@ -12723,7 +12789,7 @@ packages: engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 chalk: 4.1.2 ci-info: 3.9.0 graceful-fs: 4.2.11 @@ -12747,7 +12813,7 @@ packages: dependencies: '@jest/test-result': 29.7.0 '@jest/types': 29.6.3 - '@types/node': 20.9.2 + '@types/node': 20.9.3 ansi-escapes: 4.3.2 chalk: 4.1.2 emittery: 0.13.1 @@ -12759,7 +12825,7 @@ packages: resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==} engines: {node: '>= 10.13.0'} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true @@ -12768,13 +12834,13 @@ packages: resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 jest-util: 29.7.0 merge-stream: 2.0.0 supports-color: 8.1.1 dev: true - /jest@29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): + /jest@29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1): resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -12787,7 +12853,7 @@ packages: '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(ts-node@10.9.1) '@jest/types': 29.6.3 import-local: 3.1.0 - jest-cli: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + jest-cli: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) transitivePeerDependencies: - '@types/node' - babel-plugin-macros @@ -12925,7 +12991,7 @@ packages: acorn: 8.11.2 eslint-visitor-keys: 3.4.3 espree: 9.6.1 - semver: 7.5.3 + semver: 7.5.4 dev: true /jsonc-parser@3.0.0: @@ -13096,7 +13162,7 @@ packages: dependencies: klona: 2.0.6 less: 4.1.3 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /less@4.1.3: @@ -13175,7 +13241,7 @@ packages: webpack-sources: optional: true dependencies: - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) webpack-sources: 3.2.3 dev: true @@ -13371,7 +13437,7 @@ packages: resolution: {integrity: sha512-Yj9mA8fPiVgOUpByoTZO5pNrcl5Yk37FcSHsUINpAsaBIEZIuqcCclDZJCVxqQShDsmYX8QG63svJiTbOATZwg==} engines: {node: 14 || >=16.14} dependencies: - semver: 7.5.3 + semver: 7.5.4 /lru-cache@4.1.5: resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} @@ -13612,7 +13678,7 @@ packages: webpack: ^5.0.0 dependencies: schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /mini-svg-data-uri@1.4.4: @@ -14164,18 +14230,18 @@ packages: /neo-async@2.6.2: resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==} - /nest-raven@10.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@sentry/node@7.80.1)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1): + /nest-raven@10.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@sentry/node@7.81.0)(graphql@16.8.1)(reflect-metadata@0.1.13)(rxjs@7.8.1): resolution: {integrity: sha512-MnemxfEjYU1+JFt16epeUx1DwibxhhRinzgfJXNhPPeV7AzlZXHrFlrjpxA1hUkha6tWkFxa444S1wC2j5PpKQ==} peerDependencies: '@nestjs/common': ^10.0.0 '@sentry/node': '*' rxjs: '*' dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@sentry/node': 7.80.1 + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@sentry/node': 7.81.0 rxjs: 7.8.1 optionalDependencies: - '@nestjs/graphql': 12.0.11(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(graphql@16.8.1)(reflect-metadata@0.1.13) + '@nestjs/graphql': 12.0.11(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(graphql@16.8.1)(reflect-metadata@0.1.13) transitivePeerDependencies: - '@apollo/subgraph' - '@nestjs/core' @@ -14188,20 +14254,20 @@ packages: - utf-8-validate dev: false - /nestjs-minio-client@2.2.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9): + /nestjs-minio-client@2.2.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10): resolution: {integrity: sha512-mz1vfJq/7YfSyVCIeZwOCfIfBz+msI9QynHS2QGO9GB+tVNnQOYta8PxFsH9tMxN7gNrjrf5jXsEIpgBB1oTeA==} peerDependencies: '@nestjs/common': '>=9.0.0' '@nestjs/core': '>=9.0.0' dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) minio: 7.1.3 reflect-metadata: 0.1.13 rxjs: 7.8.1 dev: false - /nestjs-prisma@0.22.0(@nestjs/common@10.2.9)(@prisma/client@5.6.0)(prisma@5.6.0): + /nestjs-prisma@0.22.0(@nestjs/common@10.2.10)(@prisma/client@5.6.0)(prisma@5.6.0): resolution: {integrity: sha512-vseCukdWYijWxQBIdtC1XVSwMNZLZMjJen0ostsaRWaQ7yF8ny2Xruu0mA1d/t16uPOMUVUkSZro6JikOEkcuw==} peerDependencies: '@nestjs/common': ^7.0.0 || ^8.0.0 || ^9.0.0 || ^10.0.0 @@ -14210,7 +14276,7 @@ packages: dependencies: '@angular-devkit/core': 13.3.11 '@angular-devkit/schematics': 13.3.11 - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) '@prisma/client': 5.6.0(prisma@5.6.0) '@schematics/angular': 13.3.11 prisma: 5.6.0 @@ -14218,7 +14284,7 @@ packages: - chokidar dev: false - /nestjs-zod@3.0.0(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(@nestjs/swagger@7.1.16)(zod@3.22.4): + /nestjs-zod@3.0.0(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(@nestjs/swagger@7.1.16)(zod@3.22.4): resolution: {integrity: sha512-vL9CHShCVj6TmjCVPOd4my46D8d7FdoB4nQvvh+lmVTuzvnwuD+slSxjT4EDdPDWDFtjhfpvQnnkr55/80KHEQ==} peerDependencies: '@nestjs/common': '>= 8.0.0' @@ -14233,9 +14299,9 @@ packages: '@nestjs/swagger': optional: true dependencies: - '@nestjs/common': 10.2.9(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/core': 10.2.9(@nestjs/common@10.2.9)(@nestjs/platform-express@10.2.9)(reflect-metadata@0.1.13)(rxjs@7.8.1) - '@nestjs/swagger': 7.1.16(@nestjs/common@10.2.9)(@nestjs/core@10.2.9)(reflect-metadata@0.1.13) + '@nestjs/common': 10.2.10(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/core': 10.2.10(@nestjs/common@10.2.10)(@nestjs/platform-express@10.2.10)(reflect-metadata@0.1.13)(rxjs@7.8.1) + '@nestjs/swagger': 7.1.16(@nestjs/common@10.2.10)(@nestjs/core@10.2.10)(reflect-metadata@0.1.13) merge-deep: 3.0.3 zod: 3.22.4 dev: false @@ -14347,7 +14413,7 @@ packages: dependencies: hosted-git-info: 7.0.1 proc-log: 3.0.0 - semver: 7.5.3 + semver: 7.5.4 validate-npm-package-name: 5.0.0 dev: true @@ -14380,8 +14446,8 @@ packages: resolution: {integrity: sha512-ub5E4+FBPKwAZx0UwIQOjYWGHTEq5sPqHQNRN8Z9e4A7u3Tj1weLJsL59yH9vmvqEtBHaOmT6cYQKIZOxp35FQ==} dev: true - /nx@17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96): - resolution: {integrity: sha512-pf94ri36cAiSzbYcPTJwQzttgAsHSjCLEni0Ilw6aVdjpoV2l6cggYxwddX7pgtCWuokVp/6KhAxVkbzvH65wg==} + /nx@17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99): + resolution: {integrity: sha512-6LYoTt01nS1d/dvvYtRs+pEAMQmUVsd2fr/a8+X1cDjWrb8wsf1O3DwlBTqKOXOazpS3eOr0Ukc9N1svbu7uXA==} hasBin: true requiresBuild: true peerDependencies: @@ -14393,9 +14459,9 @@ packages: '@swc/core': optional: true dependencies: - '@nrwl/tao': 17.1.2(@swc-node/register@1.6.8)(@swc/core@1.3.96) - '@swc-node/register': 1.6.8(@swc/core@1.3.96)(typescript@5.2.2) - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@nrwl/tao': 17.1.3(@swc-node/register@1.6.8)(@swc/core@1.3.99) + '@swc-node/register': 1.6.8(@swc/core@1.3.99)(typescript@5.3.2) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) '@yarnpkg/lockfile': 1.1.0 '@yarnpkg/parsers': 3.0.0-rc.46 '@zkochan/js-yaml': 0.0.6 @@ -14431,16 +14497,16 @@ packages: yargs: 17.7.2 yargs-parser: 21.1.1 optionalDependencies: - '@nx/nx-darwin-arm64': 17.1.2 - '@nx/nx-darwin-x64': 17.1.2 - '@nx/nx-freebsd-x64': 17.1.2 - '@nx/nx-linux-arm-gnueabihf': 17.1.2 - '@nx/nx-linux-arm64-gnu': 17.1.2 - '@nx/nx-linux-arm64-musl': 17.1.2 - '@nx/nx-linux-x64-gnu': 17.1.2 - '@nx/nx-linux-x64-musl': 17.1.2 - '@nx/nx-win32-arm64-msvc': 17.1.2 - '@nx/nx-win32-x64-msvc': 17.1.2 + '@nx/nx-darwin-arm64': 17.1.3 + '@nx/nx-darwin-x64': 17.1.3 + '@nx/nx-freebsd-x64': 17.1.3 + '@nx/nx-linux-arm-gnueabihf': 17.1.3 + '@nx/nx-linux-arm64-gnu': 17.1.3 + '@nx/nx-linux-arm64-musl': 17.1.3 + '@nx/nx-linux-x64-gnu': 17.1.3 + '@nx/nx-linux-x64-musl': 17.1.3 + '@nx/nx-win32-arm64-msvc': 17.1.3 + '@nx/nx-win32-x64-msvc': 17.1.3 transitivePeerDependencies: - debug dev: true @@ -14601,8 +14667,8 @@ packages: is-wsl: 2.2.0 dev: true - /openai@4.19.0: - resolution: {integrity: sha512-cJbl0noZyAaXVKBTMMq6X5BAvP1pm2rWYDBnZes99NL+Zh5/4NmlAwyuhTZEru5SqGGZIoiYKeMPXy4bm9DI0w==} + /openai@4.19.1: + resolution: {integrity: sha512-9TddzuZBn2xxhghGGTHLZ4EeNBGTLs3xVzh266NiSJvtUsCsZQ5yVV6H5NhnhyAkKK8uUiZOUUlUAk3HdV+4xg==} hasBin: true dependencies: '@types/node': 18.18.9 @@ -15241,7 +15307,7 @@ packages: dependencies: lilconfig: 2.1.0 postcss: 8.4.31 - ts-node: 10.9.1(@swc/core@1.3.96)(@types/node@20.9.2)(typescript@5.2.2) + ts-node: 10.9.1(@swc/core@1.3.99)(@types/node@20.9.3)(typescript@5.3.2) yaml: 2.3.4 dev: true @@ -15256,7 +15322,7 @@ packages: klona: 2.0.6 postcss: 8.4.31 semver: 7.5.4 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /postcss-merge-longhand@6.0.0(postcss@8.4.31): @@ -15669,6 +15735,7 @@ packages: loose-envify: 1.4.0 object-assign: 4.1.1 react-is: 16.13.1 + dev: true /prosemirror-changeset@2.2.1: resolution: {integrity: sha512-J7msc6wbxB4ekDFj+n9gTW/jav/p53kdlivvuppHsrZXCaQdVgRghoZbSS3kwrRyAstRVQ4/+u5k7YfLgkkQvQ==} @@ -16009,13 +16076,13 @@ packages: - utf-8-validate dev: false - /puppeteer@21.5.2(typescript@5.2.2): + /puppeteer@21.5.2(typescript@5.3.2): resolution: {integrity: sha512-BaAGJOq8Fl6/cck6obmwaNLksuY0Bg/lIahCLhJPGXBFUD2mCffypa4A592MaWnDcye7eaHmSK9yot0pxctY8A==} engines: {node: '>=16.13.2'} requiresBuild: true dependencies: '@puppeteer/browsers': 1.8.0 - cosmiconfig: 8.3.6(typescript@5.2.2) + cosmiconfig: 8.3.6(typescript@5.3.2) puppeteer-core: 21.5.2 transitivePeerDependencies: - bufferutil @@ -16139,15 +16206,13 @@ packages: resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==} dev: false - /react-helmet-async@1.3.0(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-9jZ57/dAn9t3q6hneQS0wukqC2ENOBgMNVEhb/ZG9ZSxUetzVIw4iAmEU38IaVg3QGYauQPhSeUTuIUtFglWpg==} + /react-helmet-async@2.0.0(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-pYYyVtyNkPuCENuHZkIy8CWmlINWO3oeh8HCBAw80CY4+rOc/pJwGgay5EUMSGBy5ii123Q8rncKvi+Jpt1scw==} peerDependencies: react: ^16.6.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.6.0 || ^17.0.0 || ^18.0.0 dependencies: - '@babel/runtime': 7.23.2 invariant: 2.2.4 - prop-types: 15.8.1 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) react-fast-compare: 3.2.2 @@ -16165,6 +16230,7 @@ packages: /react-is@16.13.1: resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==} + dev: true /react-is@17.0.2: resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} @@ -16188,7 +16254,7 @@ packages: engines: {node: '>=0.10.0'} dev: true - /react-remove-scroll-bar@2.3.4(@types/react@18.2.37)(react@18.2.0): + /react-remove-scroll-bar@2.3.4(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-63C4YQBUt0m6ALadE9XV56hV8BgJWDmmTPY758iIJjfQKt2nYwoUrPk0LXRXcB/yIj82T1/Ixfdpdk68LwIB0A==} engines: {node: '>=10'} peerDependencies: @@ -16198,13 +16264,13 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 - react-style-singleton: 2.2.1(@types/react@18.2.37)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.38)(react@18.2.0) tslib: 2.6.2 dev: false - /react-remove-scroll@2.5.4(@types/react@18.2.37)(react@18.2.0): + /react-remove-scroll@2.5.4(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-xGVKJJr0SJGQVirVFAUZ2k1QLyO6m+2fy0l8Qawbp5Jgrv3DeLalrfMNBFSlmz5kriGGzsVBtGVnf4pTKIhhWA==} engines: {node: '>=10'} peerDependencies: @@ -16214,16 +16280,16 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.37)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.37)(react@18.2.0) + react-remove-scroll-bar: 2.3.4(@types/react@18.2.38)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.38)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.2.37)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.37)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.2.38)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.38)(react@18.2.0) dev: false - /react-remove-scroll@2.5.5(@types/react@18.2.37)(react@18.2.0): + /react-remove-scroll@2.5.5(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==} engines: {node: '>=10'} peerDependencies: @@ -16233,17 +16299,17 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 - react-remove-scroll-bar: 2.3.4(@types/react@18.2.37)(react@18.2.0) - react-style-singleton: 2.2.1(@types/react@18.2.37)(react@18.2.0) + react-remove-scroll-bar: 2.3.4(@types/react@18.2.38)(react@18.2.0) + react-style-singleton: 2.2.1(@types/react@18.2.38)(react@18.2.0) tslib: 2.6.2 - use-callback-ref: 1.3.0(@types/react@18.2.37)(react@18.2.0) - use-sidecar: 1.1.2(@types/react@18.2.37)(react@18.2.0) + use-callback-ref: 1.3.0(@types/react@18.2.38)(react@18.2.0) + use-sidecar: 1.1.2(@types/react@18.2.38)(react@18.2.0) dev: false - /react-resizable-panels@0.0.59(react-dom@18.2.0)(react@18.2.0): - resolution: {integrity: sha512-WMEjUMjW8Q0Cmp7CbzyMO2YkVDjmVZ4Ch9vJqTQRVf8jLG0H5/DQes8fUZLZIGWitrMMxNJ2N6bGqJI4JvhfZQ==} + /react-resizable-panels@0.0.61(react-dom@18.2.0)(react@18.2.0): + resolution: {integrity: sha512-Vk2a4LEHWkI6hGPnPmXxa/2twLYMAMMUTyA2PtR1ijvH2Nkg/AhGqrPsIi/eI85uVWtYCFNZKEsbR3uGuJl/yg==} peerDependencies: react: ^16.14.0 || ^17.0.0 || ^18.0.0 react-dom: ^16.14.0 || ^17.0.0 || ^18.0.0 @@ -16275,7 +16341,7 @@ packages: react: 18.2.0 dev: false - /react-style-singleton@2.2.1(@types/react@18.2.37)(react@18.2.0): + /react-style-singleton@2.2.1(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==} engines: {node: '>=10'} peerDependencies: @@ -16285,7 +16351,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 get-nonce: 1.0.1 invariant: 2.2.4 react: 18.2.0 @@ -16662,7 +16728,7 @@ packages: klona: 2.0.6 neo-async: 2.6.2 sass: 1.69.5 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /sass@1.69.5: @@ -16761,6 +16827,7 @@ packages: hasBin: true dependencies: lru-cache: 6.0.0 + dev: true /semver@7.5.4: resolution: {integrity: sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==} @@ -17045,7 +17112,7 @@ packages: abab: 2.0.6 iconv-lite: 0.6.3 source-map-js: 1.0.2 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /source-map-support@0.5.13: @@ -17362,7 +17429,7 @@ packages: peerDependencies: webpack: ^5.0.0 dependencies: - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /stylehacks@6.0.0(postcss@8.4.31): @@ -17386,7 +17453,7 @@ packages: fast-glob: 3.3.2 normalize-path: 3.0.0 stylus: 0.59.0 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /stylus@0.59.0: @@ -17614,7 +17681,7 @@ packages: streamx: 2.15.5 dev: false - /terser-webpack-plugin@5.3.9(@swc/core@1.3.96)(webpack@5.89.0): + /terser-webpack-plugin@5.3.9(@swc/core@1.3.99)(webpack@5.89.0): resolution: {integrity: sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==} engines: {node: '>= 10.13.0'} peerDependencies: @@ -17631,12 +17698,12 @@ packages: optional: true dependencies: '@jridgewell/trace-mapping': 0.3.20 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) jest-worker: 27.5.1 schema-utils: 3.3.0 serialize-javascript: 6.0.1 terser: 5.24.0 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /terser@5.24.0: @@ -17810,20 +17877,20 @@ packages: escape-string-regexp: 5.0.0 dev: true - /ts-api-utils@1.0.3(typescript@5.2.2): + /ts-api-utils@1.0.3(typescript@5.3.2): resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==} engines: {node: '>=16.13.0'} peerDependencies: typescript: '>=4.2.0' dependencies: - typescript: 5.2.2 + typescript: 5.3.2 dev: true /ts-interface-checker@0.1.13: resolution: {integrity: sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==} dev: true - /ts-jest@29.1.1(@babel/core@7.23.3)(jest@29.7.0)(typescript@5.2.2): + /ts-jest@29.1.1(@babel/core@7.23.3)(jest@29.7.0)(typescript@5.3.2): resolution: {integrity: sha512-D6xjnnbP17cC85nliwGiL+tpoKN0StpgE0TeOjXQTU6MVCfsB4v7aW05CgQ/1OywGb0x/oy9hHFnN+sczTiRaA==} engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} hasBin: true @@ -17847,17 +17914,17 @@ packages: '@babel/core': 7.23.3 bs-logger: 0.2.6 fast-json-stable-stringify: 2.1.0 - jest: 29.7.0(@types/node@20.9.2)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) + jest: 29.7.0(@types/node@20.9.3)(babel-plugin-macros@3.1.0)(ts-node@10.9.1) jest-util: 29.7.0 json5: 2.2.3 lodash.memoize: 4.1.2 make-error: 1.3.6 semver: 7.5.4 - typescript: 5.2.2 + typescript: 5.3.2 yargs-parser: 21.1.1 dev: true - /ts-loader@9.5.1(typescript@5.2.2)(webpack@5.89.0): + /ts-loader@9.5.1(typescript@5.3.2)(webpack@5.89.0): resolution: {integrity: sha512-rNH3sK9kGZcH9dYzC7CewQm4NtxJTjSEVRJ2DyBZR7f8/wcta+iV44UPCXc5+nzDzivKtlzV6c9P4e+oFhDLYg==} engines: {node: '>=12.0.0'} peerDependencies: @@ -17869,11 +17936,11 @@ packages: micromatch: 4.0.5 semver: 7.5.4 source-map: 0.7.4 - typescript: 5.2.2 - webpack: 5.89.0(@swc/core@1.3.96) + typescript: 5.3.2 + webpack: 5.89.0(@swc/core@1.3.99) dev: true - /ts-node@10.9.1(@swc/core@1.3.96)(@types/node@20.9.2)(typescript@5.2.2): + /ts-node@10.9.1(@swc/core@1.3.99)(@types/node@20.9.3)(typescript@5.2.2): resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} hasBin: true peerDependencies: @@ -17888,12 +17955,12 @@ packages: optional: true dependencies: '@cspotcode/source-map-support': 0.8.1 - '@swc/core': 1.3.96(@swc/helpers@0.5.3) + '@swc/core': 1.3.99(@swc/helpers@0.5.3) '@tsconfig/node10': 1.0.9 '@tsconfig/node12': 1.0.11 '@tsconfig/node14': 1.0.3 '@tsconfig/node16': 1.0.4 - '@types/node': 20.9.2 + '@types/node': 20.9.3 acorn: 8.11.2 acorn-walk: 8.3.0 arg: 4.1.3 @@ -17905,6 +17972,38 @@ packages: yn: 3.1.1 dev: true + /ts-node@10.9.1(@swc/core@1.3.99)(@types/node@20.9.3)(typescript@5.3.2): + resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} + hasBin: true + peerDependencies: + '@swc/core': '>=1.2.50' + '@swc/wasm': '>=1.2.50' + '@types/node': '*' + typescript: '>=2.7' + peerDependenciesMeta: + '@swc/core': + optional: true + '@swc/wasm': + optional: true + dependencies: + '@cspotcode/source-map-support': 0.8.1 + '@swc/core': 1.3.99(@swc/helpers@0.5.3) + '@tsconfig/node10': 1.0.9 + '@tsconfig/node12': 1.0.11 + '@tsconfig/node14': 1.0.3 + '@tsconfig/node16': 1.0.4 + '@types/node': 20.9.3 + acorn: 8.11.2 + acorn-walk: 8.3.0 + arg: 4.1.3 + create-require: 1.1.1 + diff: 4.0.2 + make-error: 1.3.6 + typescript: 5.3.2 + v8-compile-cache-lib: 3.0.1 + yn: 3.1.1 + dev: true + /tsconfig-paths-webpack-plugin@4.0.0: resolution: {integrity: sha512-fw/7265mIWukrSHd0i+wSwx64kYUSAKPfxRDksjKIYTxSAp9W9/xcZVBF4Kl0eqQd5eBpAQ/oQrc5RyM/0c1GQ==} engines: {node: '>=10.13.0'} @@ -17942,14 +18041,14 @@ packages: /tslib@2.6.2: resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==} - /tsutils@3.21.0(typescript@5.2.2): + /tsutils@3.21.0(typescript@5.3.2): resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} engines: {node: '>= 6'} peerDependencies: typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' dependencies: tslib: 1.14.1 - typescript: 5.2.2 + typescript: 5.3.2 dev: true /tunnel-agent@0.6.0: @@ -18052,6 +18151,12 @@ packages: resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} engines: {node: '>=14.17'} hasBin: true + dev: true + + /typescript@5.3.2: + resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==} + engines: {node: '>=14.17'} + hasBin: true /uc.micro@1.0.6: resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==} @@ -18201,7 +18306,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /use-callback-ref@1.3.0(@types/react@18.2.37)(react@18.2.0): + /use-callback-ref@1.3.0(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-3FT9PRuRdbB9HfXhEq35u4oZkvpJ5kuYbpqhCfmiZyReuRgpnhDlbr2ZEnnuS0RrJAPn6l23xjFg9kpDM+Ms7w==} engines: {node: '>=10'} peerDependencies: @@ -18211,7 +18316,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 react: 18.2.0 tslib: 2.6.2 dev: false @@ -18226,7 +18331,7 @@ packages: react-dom: 18.2.0(react@18.2.0) dev: false - /use-sidecar@1.1.2(@types/react@18.2.37)(react@18.2.0): + /use-sidecar@1.1.2(@types/react@18.2.38)(react@18.2.0): resolution: {integrity: sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==} engines: {node: '>=10'} peerDependencies: @@ -18236,7 +18341,7 @@ packages: '@types/react': optional: true dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 detect-node-es: 1.1.0 react: 18.2.0 tslib: 2.6.2 @@ -18338,7 +18443,7 @@ packages: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} engines: {node: '>= 0.8'} - /vite-node@0.34.6(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0): + /vite-node@0.34.6(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0): resolution: {integrity: sha512-nlBMJ9x6n7/Amaz6F3zJ97EBwR2FkzhBRxF5e+jE6LA3yi6Wtc2lyTij1OnDMIr34v5g/tVQtsVAzhT0jc5ygA==} engines: {node: '>=v14.18.0'} hasBin: true @@ -18348,7 +18453,7 @@ packages: mlly: 1.4.2 pathe: 1.1.1 picocolors: 1.0.0 - vite: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) + vite: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) transitivePeerDependencies: - '@types/node' - less @@ -18360,7 +18465,7 @@ packages: - terser dev: true - /vite-plugin-dts@3.6.3(@types/node@20.9.2)(typescript@5.2.2)(vite@5.0.0): + /vite-plugin-dts@3.6.3(@types/node@20.9.3)(typescript@5.3.2)(vite@5.0.0): resolution: {integrity: sha512-NyRvgobl15rYj65coi/gH7UAEH+CpSjh539DbGb40DfOTZSvDLNYTzc8CK4460W+LqXuMK7+U3JAxRB3ksrNPw==} engines: {node: ^14.18.0 || >=16.0.0} peerDependencies: @@ -18370,21 +18475,21 @@ packages: vite: optional: true dependencies: - '@microsoft/api-extractor': 7.38.3(@types/node@20.9.2) + '@microsoft/api-extractor': 7.38.3(@types/node@20.9.3) '@rollup/pluginutils': 5.0.5 - '@vue/language-core': 1.8.22(typescript@5.2.2) + '@vue/language-core': 1.8.22(typescript@5.3.2) debug: 4.3.4 kolorist: 1.8.0 - typescript: 5.2.2 - vite: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) - vue-tsc: 1.8.22(typescript@5.2.2) + typescript: 5.3.2 + vite: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) + vue-tsc: 1.8.22(typescript@5.3.2) transitivePeerDependencies: - '@types/node' - rollup - supports-color dev: true - /vite@5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0): + /vite@5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0): resolution: {integrity: sha512-ESJVM59mdyGpsiNAeHQOR/0fqNoOyWPYesFto8FFZugfmhdHx8Fzd8sF3Q/xkVhZsyOxHfdM7ieiVAorI9RjFw==} engines: {node: ^18.0.0 || >=20.0.0} hasBin: true @@ -18412,7 +18517,7 @@ packages: terser: optional: true dependencies: - '@types/node': 20.9.2 + '@types/node': 20.9.3 esbuild: 0.19.5 less: 4.1.3 postcss: 8.4.31 @@ -18455,7 +18560,7 @@ packages: dependencies: '@types/chai': 4.3.10 '@types/chai-subset': 1.3.5 - '@types/node': 20.9.2 + '@types/node': 20.9.3 '@vitest/expect': 0.34.6 '@vitest/runner': 0.34.6 '@vitest/snapshot': 0.34.6 @@ -18476,8 +18581,8 @@ packages: strip-literal: 1.3.0 tinybench: 2.5.1 tinypool: 0.7.0 - vite: 5.0.0(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) - vite-node: 0.34.6(@types/node@20.9.2)(less@4.1.3)(stylus@0.59.0) + vite: 5.0.0(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) + vite-node: 0.34.6(@types/node@20.9.3)(less@4.1.3)(stylus@0.59.0) why-is-node-running: 2.2.2 transitivePeerDependencies: - less @@ -18512,16 +18617,16 @@ packages: he: 1.2.0 dev: true - /vue-tsc@1.8.22(typescript@5.2.2): + /vue-tsc@1.8.22(typescript@5.3.2): resolution: {integrity: sha512-j9P4kHtW6eEE08aS5McFZE/ivmipXy0JzrnTgbomfABMaVKx37kNBw//irL3+LlE3kOo63XpnRigyPC3w7+z+A==} hasBin: true peerDependencies: typescript: '*' dependencies: '@volar/typescript': 1.10.10 - '@vue/language-core': 1.8.22(typescript@5.2.2) + '@vue/language-core': 1.8.22(typescript@5.3.2) semver: 7.5.4 - typescript: 5.2.2 + typescript: 5.3.2 dev: true /w3c-keyname@2.2.8: @@ -18618,7 +18723,7 @@ packages: mime-types: 2.1.35 range-parser: 1.2.1 schema-utils: 4.2.0 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true /webpack-dev-server@4.15.1(webpack@5.89.0): @@ -18662,7 +18767,7 @@ packages: serve-index: 1.9.1 sockjs: 0.3.24 spdy: 4.0.2 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) webpack-dev-middleware: 5.3.3(webpack@5.89.0) ws: 8.14.2 transitivePeerDependencies: @@ -18693,10 +18798,10 @@ packages: optional: true dependencies: typed-assert: 1.0.9 - webpack: 5.89.0(@swc/core@1.3.96) + webpack: 5.89.0(@swc/core@1.3.99) dev: true - /webpack@5.89.0(@swc/core@1.3.96): + /webpack@5.89.0(@swc/core@1.3.99): resolution: {integrity: sha512-qyfIC10pOr70V+jkmud8tMfajraGCZMBWJtrmuBymQKCrLTRejBI8STDp1MCyZu/QTdZSeacCQYpYNQVOzX5kw==} engines: {node: '>=10.13.0'} hasBin: true @@ -18727,7 +18832,7 @@ packages: neo-async: 2.6.2 schema-utils: 3.3.0 tapable: 2.2.1 - terser-webpack-plugin: 5.3.9(@swc/core@1.3.96)(webpack@5.89.0) + terser-webpack-plugin: 5.3.9(@swc/core@1.3.99)(webpack@5.89.0) watchpack: 2.4.0 webpack-sources: 3.2.3 transitivePeerDependencies: @@ -19078,10 +19183,10 @@ packages: peerDependencies: zustand: ^4.3.0 dependencies: - zustand: 4.4.6(@types/react@18.2.37)(immer@10.0.3)(react@18.2.0) + zustand: 4.4.6(@types/react@18.2.38)(immer@10.0.3)(react@18.2.0) dev: false - /zustand@4.4.6(@types/react@18.2.37)(immer@10.0.3)(react@18.2.0): + /zustand@4.4.6(@types/react@18.2.38)(immer@10.0.3)(react@18.2.0): resolution: {integrity: sha512-Rb16eW55gqL4W2XZpJh0fnrATxYEG3Apl2gfHTyDSE965x/zxslTikpNch0JgNjJA9zK6gEFW8Fl6d1rTZaqgg==} engines: {node: '>=12.7.0'} peerDependencies: @@ -19096,7 +19201,7 @@ packages: react: optional: true dependencies: - '@types/react': 18.2.37 + '@types/react': 18.2.38 immer: 10.0.3 react: 18.2.0 use-sync-external-store: 1.2.0(react@18.2.0) diff --git a/tools/compose/nginx-proxy-manager.yml b/tools/compose/nginx-proxy-manager.yml index 91eaa1eb..ad87eb28 100644 --- a/tools/compose/nginx-proxy-manager.yml +++ b/tools/compose/nginx-proxy-manager.yml @@ -101,7 +101,10 @@ services: # -- Crowdin (Optional) -- # CROWDIN_PROJECT_ID: - # CROWDIN_ACCESS_TOKEN: + # CROWDIN_PERSONAL_TOKEN: + + # -- Email -- + # DISABLE_EMAIL_AUTH: true # -- GitHub -- GITHUB_CLIENT_ID: github_client_id diff --git a/tools/compose/simple.yml b/tools/compose/simple.yml index ca5194f2..f74fa18d 100644 --- a/tools/compose/simple.yml +++ b/tools/compose/simple.yml @@ -98,7 +98,10 @@ services: # -- Crowdin (Optional) -- # CROWDIN_PROJECT_ID: - # CROWDIN_ACCESS_TOKEN: + # CROWDIN_PERSONAL_TOKEN: + + # -- Email -- + # DISABLE_EMAIL_AUTH: true # -- GitHub -- GITHUB_CLIENT_ID: github_client_id diff --git a/tools/compose/traefik-secure.yml b/tools/compose/traefik-secure.yml index 31e67150..a4bbd0ec 100644 --- a/tools/compose/traefik-secure.yml +++ b/tools/compose/traefik-secure.yml @@ -109,7 +109,10 @@ services: # -- Crowdin (Optional) -- # CROWDIN_PROJECT_ID: - # CROWDIN_ACCESS_TOKEN: + # CROWDIN_PERSONAL_TOKEN: + + # -- Email -- + # DISABLE_EMAIL_AUTH: true # -- GitHub -- GITHUB_CLIENT_ID: github_client_id diff --git a/tools/compose/traefik.yml b/tools/compose/traefik.yml index 913adfb3..70b1d19f 100644 --- a/tools/compose/traefik.yml +++ b/tools/compose/traefik.yml @@ -103,7 +103,10 @@ services: # -- Crowdin (Optional) -- # CROWDIN_PROJECT_ID: - # CROWDIN_ACCESS_TOKEN: + # CROWDIN_PERSONAL_TOKEN: + + # -- Email -- + # DISABLE_EMAIL_AUTH: true # -- GitHub -- GITHUB_CLIENT_ID: github_client_id