Skip to content

Commit

Permalink
chore: bump libs
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielmaialva33 committed Dec 26, 2023
1 parent 868b087 commit b2bb2e4
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 62 deletions.
2 changes: 1 addition & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ MAIL_SERVER=smtp
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_HOST=
MAIL_PORT=
MAIL_PORT=1025
MAIL_PREVIEW_EMAIL=true
MAIL_BCC_LIST=
MAIL_TEMPLATE_DIR=
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,8 +117,8 @@
"@types/passport-local": "^1.0.38",
"@types/preview-email": "^3.0.4",
"@types/supertest": "^6.0.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.2",
Expand Down
86 changes: 44 additions & 42 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

34 changes: 17 additions & 17 deletions src/resources/generated/i18n/i18n.types.ts
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
/* DO NOT EDIT, file generated by nestjs-i18n */

import { Path } from 'nestjs-i18n';
import { Path } from "nestjs-i18n";
export type I18nTranslations = {
exception: {
model_not_found: string;
model_not_active: string;
invalid_credentials: string;
field_already_exists: string;
invalid_token: string;
expired_token: string;
};
model: {
user: {
label: string;
field: {
email: string;
username: string;
};
"exception": {
"model_not_found": string;
"model_not_active": string;
"invalid_credentials": string;
"field_already_exists": string;
"invalid_token": string;
"expired_token": string;
};
"model": {
"user": {
"label": string;
"field": {
"email": string;
"username": string;
};
};
};
};
};
export type I18nPath = Path<I18nTranslations>;

0 comments on commit b2bb2e4

Please sign in to comment.