@tripsam/onboarding 1.0.71 → 1.0.72

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
@@ -384,8 +384,8 @@ var create6 = import_zod10.z.object({
384
384
  });
385
385
  var update6 = import_zod10.z.object({
386
386
  id: import_zod10.z.string().optional().default(""),
387
- baseRate: import_zod10.z.coerce.number().default(0),
388
- discount: import_zod10.z.coerce.number().default(0)
387
+ baseRate: import_zod10.z.coerce.number().min(0, "min").default(0),
388
+ discount: import_zod10.z.coerce.number().min(0, "min").max(90, "max").default(0)
389
389
  });
390
390
 
391
391
  // src/safari/step.ts
package/dist/index.js CHANGED
@@ -353,8 +353,8 @@ var create6 = z10.object({
353
353
  });
354
354
  var update6 = z10.object({
355
355
  id: z10.string().optional().default(""),
356
- baseRate: z10.coerce.number().default(0),
357
- discount: z10.coerce.number().default(0)
356
+ baseRate: z10.coerce.number().min(0, "min").default(0),
357
+ discount: z10.coerce.number().min(0, "min").max(90, "max").default(0)
358
358
  });
359
359
 
360
360
  // src/safari/step.ts
@@ -371,8 +371,8 @@ var create6 = import_zod10.z.object({
371
371
  });
372
372
  var update6 = import_zod10.z.object({
373
373
  id: import_zod10.z.string().optional().default(""),
374
- baseRate: import_zod10.z.coerce.number().default(0),
375
- discount: import_zod10.z.coerce.number().default(0)
374
+ baseRate: import_zod10.z.coerce.number().min(0, "min").default(0),
375
+ discount: import_zod10.z.coerce.number().min(0, "min").max(90, "max").default(0)
376
376
  });
377
377
 
378
378
  // src/safari/step.ts
@@ -332,8 +332,8 @@ var create6 = z10.object({
332
332
  });
333
333
  var update6 = z10.object({
334
334
  id: z10.string().optional().default(""),
335
- baseRate: z10.coerce.number().default(0),
336
- discount: z10.coerce.number().default(0)
335
+ baseRate: z10.coerce.number().min(0, "min").default(0),
336
+ discount: z10.coerce.number().min(0, "min").max(90, "max").default(0)
337
337
  });
338
338
 
339
339
  // src/safari/step.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripsam/onboarding",
3
- "version": "1.0.71",
3
+ "version": "1.0.72",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",