@tripsam/onboarding 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.
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -40,7 +40,7 @@ var verifyOtp = import_zod.z.object({
|
|
|
40
40
|
email: import_zod.z.string().optional()
|
|
41
41
|
});
|
|
42
42
|
var verifyOtpResponse = import_zod.z.object({
|
|
43
|
-
id: import_zod.z.
|
|
43
|
+
id: import_zod.z.string()
|
|
44
44
|
});
|
|
45
45
|
// Annotate the CommonJS export names for ESM import in node:
|
|
46
46
|
0 && (module.exports = {
|
package/dist/index.d.cts
CHANGED
|
@@ -8,7 +8,7 @@ declare const verifyOtp: z.ZodObject<{
|
|
|
8
8
|
email: z.ZodOptional<z.ZodString>;
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const verifyOtpResponse: z.ZodObject<{
|
|
11
|
-
id: z.
|
|
11
|
+
id: z.ZodString;
|
|
12
12
|
}, z.core.$strip>;
|
|
13
13
|
type SafeSendOtp = z.output<typeof sendOtp>;
|
|
14
14
|
type SafeVerifyOtp = z.output<typeof verifyOtp>;
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ declare const verifyOtp: z.ZodObject<{
|
|
|
8
8
|
email: z.ZodOptional<z.ZodString>;
|
|
9
9
|
}, z.core.$strip>;
|
|
10
10
|
declare const verifyOtpResponse: z.ZodObject<{
|
|
11
|
-
id: z.
|
|
11
|
+
id: z.ZodString;
|
|
12
12
|
}, z.core.$strip>;
|
|
13
13
|
type SafeSendOtp = z.output<typeof sendOtp>;
|
|
14
14
|
type SafeVerifyOtp = z.output<typeof verifyOtp>;
|
package/dist/index.js
CHANGED