@kuruin/common 1.0.1 → 1.0.2

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.
@@ -0,0 +1,8 @@
1
+ import { z } from 'zod';
2
+ declare const signupInput: z.ZodObject<{
3
+ username: z.ZodString;
4
+ password: z.ZodString;
5
+ }, z.core.$strip>;
6
+ export type signupSchemaType = z.infer<typeof signupInput>;
7
+ export {};
8
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,QAAA,MAAM,WAAW;;;iBAGf,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAI,CAAC,CAAC,KAAK,CAAC,OAAO,WAAW,CAAC,CAAC"}
package/dist/index.js CHANGED
@@ -5,3 +5,4 @@ const signupInput = zod_1.z.object({
5
5
  username: zod_1.z.string(),
6
6
  password: zod_1.z.string()
7
7
  });
8
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;AAAA,6BAAuB;AAEvB,MAAM,WAAW,GAAG,OAAC,CAAC,MAAM,CAAC;IAC3B,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;IACpB,QAAQ,EAAE,OAAC,CAAC,MAAM,EAAE;CACrB,CAAC,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kuruin/common",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "main": "dist/index.js",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"
package/tsconfig.json CHANGED
@@ -16,9 +16,9 @@
16
16
  // and npm install -D @types/node
17
17
 
18
18
  // Other Outputs
19
- "sourceMap": false,
20
- "declaration": false,
21
- "declarationMap": false,
19
+ "sourceMap": true,
20
+ "declaration": true,
21
+ "declarationMap": true,
22
22
 
23
23
  // Stricter Typechecking Options
24
24
  "noUncheckedIndexedAccess": true,