@xube/kit-aws-auth 0.0.88 → 0.0.90

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,10 +10,7 @@ export declare const LoginRequestSchema: z.ZodObject<{
10
10
  password: string;
11
11
  }>;
12
12
  export type LoginRequest = z.infer<typeof LoginRequestSchema>;
13
- export declare const isLoginRequest: (object: unknown) => object is {
14
- email: string;
15
- password: string;
16
- };
13
+ export declare const isLoginRequest: (object: unknown) => object is LoginRequest;
17
14
  export declare const LoginResponseSchema: z.ZodObject<{
18
15
  token: z.ZodString;
19
16
  accessToken: z.ZodString;
@@ -10,10 +10,7 @@ export declare const SignupRequestSchema: z.ZodObject<{
10
10
  password: string;
11
11
  }>;
12
12
  export type SignupRequest = z.infer<typeof SignupRequestSchema>;
13
- export declare const isSignupRequest: (object: unknown) => object is {
14
- email: string;
15
- password: string;
16
- };
13
+ export declare const isSignupRequest: (object: unknown) => object is SignupRequest;
17
14
  export declare const SignupResponseSchema: z.ZodObject<{
18
15
  token: z.ZodString;
19
16
  accessToken: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xube/kit-aws-auth",
3
- "version": "0.0.88",
3
+ "version": "0.0.90",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -17,15 +17,15 @@
17
17
  },
18
18
  "homepage": "https://github.com/XubeLtd/dev-kit#readme",
19
19
  "devDependencies": {
20
- "@xube/kit-build": "^0.0.88"
20
+ "@xube/kit-build": "^0.0.90"
21
21
  },
22
22
  "dependencies": {
23
- "@xube/kit-aws": "^0.0.88",
24
- "@xube/kit-aws-schema": "^0.0.88",
25
- "@xube/kit-constants": "^0.0.88",
26
- "@xube/kit-log": "^0.0.88",
27
- "@xube/kit-request": "^0.0.88",
28
- "@xube/kit-schema": "^0.0.88",
23
+ "@xube/kit-aws": "^0.0.90",
24
+ "@xube/kit-aws-schema": "^0.0.90",
25
+ "@xube/kit-constants": "^0.0.90",
26
+ "@xube/kit-log": "^0.0.90",
27
+ "@xube/kit-request": "^0.0.90",
28
+ "@xube/kit-schema": "^0.0.90",
29
29
  "zod": "^3.22.4"
30
30
  }
31
31
  }