@tripsam/onboarding 1.0.1 → 1.0.3

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 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.uuid("invalid")
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.ZodUUID;
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.ZodUUID;
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
@@ -20,7 +20,7 @@ var verifyOtp = z.object({
20
20
  email: z.string().optional()
21
21
  });
22
22
  var verifyOtpResponse = z.object({
23
- id: z.uuid("invalid")
23
+ id: z.string()
24
24
  });
25
25
  export {
26
26
  verify_email_exports as VerifyEmail
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripsam/onboarding",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",