@tripsam/onboarding 1.0.58 → 1.0.59

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.
@@ -216,7 +216,7 @@ declare const create$2: z.ZodObject<{
216
216
  }>>, z.ZodTransform<("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[], ("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[]>>;
217
217
  }, z.core.$strip>;
218
218
  declare const update: z.ZodObject<{
219
- id: z.ZodString;
219
+ id: z.ZodOptional<z.ZodString>;
220
220
  operationalDays: z.ZodPipe<z.ZodArray<z.ZodEnum<{
221
221
  sunday: "sunday";
222
222
  monday: "monday";
@@ -216,7 +216,7 @@ declare const create$2: z.ZodObject<{
216
216
  }>>, z.ZodTransform<("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[], ("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[]>>;
217
217
  }, z.core.$strip>;
218
218
  declare const update: z.ZodObject<{
219
- id: z.ZodString;
219
+ id: z.ZodOptional<z.ZodString>;
220
220
  operationalDays: z.ZodPipe<z.ZodArray<z.ZodEnum<{
221
221
  sunday: "sunday";
222
222
  monday: "monday";
package/dist/index.cjs CHANGED
@@ -257,7 +257,7 @@ var create4 = import_zod5.z.object({
257
257
  operationalDays: import_zod5.z.array(Weekday).transform((arr) => Array.from(new Set(arr)))
258
258
  });
259
259
  var update4 = import_zod5.z.object({
260
- id: import_zod5.z.string(),
260
+ id: import_zod5.z.string().optional(),
261
261
  operationalDays: import_zod5.z.array(Weekday).transform((arr) => Array.from(new Set(arr)))
262
262
  });
263
263
 
package/dist/index.d.cts CHANGED
@@ -1,3 +1,3 @@
1
- export { i as SafariOnboarding } from './index-uU-S5K4k.cjs';
1
+ export { i as SafariOnboarding } from './index-D9n8kAom.cjs';
2
2
  export { i as CommonOnboarding } from './index-DNcx8rxs.cjs';
3
3
  import 'zod';
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { i as SafariOnboarding } from './index-uU-S5K4k.js';
1
+ export { i as SafariOnboarding } from './index-D9n8kAom.js';
2
2
  export { i as CommonOnboarding } from './index-DNcx8rxs.js';
3
3
  import 'zod';
package/dist/index.js CHANGED
@@ -226,7 +226,7 @@ var create4 = z5.object({
226
226
  operationalDays: z5.array(Weekday).transform((arr) => Array.from(new Set(arr)))
227
227
  });
228
228
  var update4 = z5.object({
229
- id: z5.string(),
229
+ id: z5.string().optional(),
230
230
  operationalDays: z5.array(Weekday).transform((arr) => Array.from(new Set(arr)))
231
231
  });
232
232
 
@@ -244,7 +244,7 @@ var create4 = import_zod5.z.object({
244
244
  operationalDays: import_zod5.z.array(Weekday).transform((arr) => Array.from(new Set(arr)))
245
245
  });
246
246
  var update4 = import_zod5.z.object({
247
- id: import_zod5.z.string(),
247
+ id: import_zod5.z.string().optional(),
248
248
  operationalDays: import_zod5.z.array(Weekday).transform((arr) => Array.from(new Set(arr)))
249
249
  });
250
250
 
@@ -1,2 +1,2 @@
1
- export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-uU-S5K4k.cjs';
1
+ export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-D9n8kAom.cjs';
2
2
  import 'zod';
@@ -1,2 +1,2 @@
1
- export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-uU-S5K4k.js';
1
+ export { b as BasicDetails, a as BusinessDetails, d as DriverDetails, l as Location, o as OperationalDays, p as PersonalDetails, s as Slot, c as Step, v as VehicleDetails } from '../index-D9n8kAom.js';
2
2
  import 'zod';
@@ -206,7 +206,7 @@ var create4 = z5.object({
206
206
  operationalDays: z5.array(Weekday).transform((arr) => Array.from(new Set(arr)))
207
207
  });
208
208
  var update4 = z5.object({
209
- id: z5.string(),
209
+ id: z5.string().optional(),
210
210
  operationalDays: z5.array(Weekday).transform((arr) => Array.from(new Set(arr)))
211
211
  });
212
212
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripsam/onboarding",
3
- "version": "1.0.58",
3
+ "version": "1.0.59",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",