RubyGems
npm
Organizations
Log in
Sign up
npm
expo-backend-types
Versions diffs
0.0.37 → 0.0.39
expo-backend-types 0.0.37 → 0.0.39
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (4)
hide
show
package/package.json
+1
-1
package/src/auth/dto/login.dto.ts
+1
-1
package/src/auth/dto/register.dto.ts
+1
-1
package/tsconfig.json
+4
-1
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "expo-backend-types",
3
-
"version": "0.0.
37
",
3
+
"version": "0.0.
39
",
4
4
"description": "",
5
5
"author": "Expo",
6
6
"private": false,
package/src/auth/dto/login.dto.ts
CHANGED
Viewed
@@ -1,5 +1,5 @@
1
1
import { createZodDto } from '@anatine/zod-nestjs';
2
-
import { cuentaSchema } from '
src/
cuenta/dto/cuenta.dto';
2
+
import { cuentaSchema } from '
@/
cuenta/dto/cuenta.dto';
3
3
import z from 'zod';
4
4
5
5
export const loginSchema = cuentaSchema.pick({
package/src/auth/dto/register.dto.ts
CHANGED
Viewed
@@ -1,5 +1,5 @@
1
1
import { createZodDto } from '@anatine/zod-nestjs';
2
-
import { cuentaSchema } from '
src/
cuenta/dto/cuenta.dto';
2
+
import { cuentaSchema } from '
@/
cuenta/dto/cuenta.dto';
3
3
4
4
export const registerSchema = cuentaSchema.pick({
5
5
username: true,
package/tsconfig.json
CHANGED
Viewed
@@ -19,6 +19,9 @@
19
19
"forceConsistentCasingInFileNames": true,
20
20
"noUncheckedIndexedAccess": true,
21
21
"noFallthroughCasesInSwitch": true,
22
-
"esModuleInterop": true
22
+
"esModuleInterop": true
,
23
+
"paths": {
24
+
"@/*": ["./src/*"]
25
+
}
23
26
}
24
27
}