@tripsam/onboarding 1.0.56 → 1.0.57
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.
|
@@ -49,8 +49,8 @@ declare const update$3: z.ZodObject<{
|
|
|
49
49
|
type: z.ZodString;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
51
|
type SafeGet$3 = z.infer<typeof get$3>;
|
|
52
|
-
type SafeUpdate$
|
|
53
|
-
type SafeCreate$
|
|
52
|
+
type SafeUpdate$3 = z.output<typeof update$3>;
|
|
53
|
+
type SafeCreate$5 = z.output<typeof create$5>;
|
|
54
54
|
declare const defaultBasicDetails: SafeGet$3;
|
|
55
55
|
|
|
56
56
|
type basicDetails_SafariType = SafariType;
|
|
@@ -58,7 +58,7 @@ declare const basicDetails_defaultBasicDetails: typeof defaultBasicDetails;
|
|
|
58
58
|
declare const basicDetails_safariTypes: typeof safariTypes;
|
|
59
59
|
declare const basicDetails_safeSas: typeof safeSas;
|
|
60
60
|
declare namespace basicDetails {
|
|
61
|
-
export { type basicDetails_SafariType as SafariType, type SafeCreate$
|
|
61
|
+
export { type basicDetails_SafariType as SafariType, type SafeCreate$5 as SafeCreate, type SafeGet$3 as SafeGet, type SafeUpdate$3 as SafeUpdate, create$5 as create, basicDetails_defaultBasicDetails as defaultBasicDetails, get$3 as get, basicDetails_safariTypes as safariTypes, basicDetails_safeSas as safeSas, update$3 as update };
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
declare const pickupLandmark: z.ZodObject<{
|
|
@@ -122,8 +122,8 @@ declare const update$2: z.ZodObject<{
|
|
|
122
122
|
}, z.core.$strip>>;
|
|
123
123
|
}, z.core.$strip>;
|
|
124
124
|
type SafeGet$2 = z.output<typeof get$2>;
|
|
125
|
-
type SafeCreate$
|
|
126
|
-
type SafeUpdate$
|
|
125
|
+
type SafeCreate$4 = z.output<typeof create$4>;
|
|
126
|
+
type SafeUpdate$2 = z.output<typeof update$2>;
|
|
127
127
|
type SafePickupLandmark = z.output<typeof pickupLandmark>;
|
|
128
128
|
declare const defaultLocation: SafeGet$2;
|
|
129
129
|
|
|
@@ -131,7 +131,7 @@ type location_SafePickupLandmark = SafePickupLandmark;
|
|
|
131
131
|
declare const location_defaultLocation: typeof defaultLocation;
|
|
132
132
|
declare const location_pickupLandmark: typeof pickupLandmark;
|
|
133
133
|
declare namespace location {
|
|
134
|
-
export { type SafeCreate$
|
|
134
|
+
export { type SafeCreate$4 as SafeCreate, type SafeGet$2 as SafeGet, type location_SafePickupLandmark as SafePickupLandmark, type SafeUpdate$2 as SafeUpdate, create$4 as create, location_defaultLocation as defaultLocation, get$2 as get, location_pickupLandmark as pickupLandmark, update$2 as update };
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
declare const time12h: z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>;
|
|
@@ -171,17 +171,16 @@ declare const list: z.ZodArray<z.ZodObject<{
|
|
|
171
171
|
}, z.core.$strip>>;
|
|
172
172
|
type SafeGet$1 = z.output<typeof get$1>;
|
|
173
173
|
type SafeList$1 = z.output<typeof list>;
|
|
174
|
-
type SafeCreate$
|
|
175
|
-
type SafeUpdate = z.output<typeof update$1>;
|
|
174
|
+
type SafeCreate$3 = z.output<typeof create$3>;
|
|
175
|
+
type SafeUpdate$1 = z.output<typeof update$1>;
|
|
176
176
|
type SafeRemove = z.output<typeof remove>;
|
|
177
177
|
|
|
178
178
|
type slot_SafeRemove = SafeRemove;
|
|
179
|
-
type slot_SafeUpdate = SafeUpdate;
|
|
180
179
|
declare const slot_list: typeof list;
|
|
181
180
|
declare const slot_remove: typeof remove;
|
|
182
181
|
declare const slot_time12h: typeof time12h;
|
|
183
182
|
declare namespace slot {
|
|
184
|
-
export { type SafeCreate$
|
|
183
|
+
export { type SafeCreate$3 as SafeCreate, type SafeGet$1 as SafeGet, type SafeList$1 as SafeList, type slot_SafeRemove as SafeRemove, type SafeUpdate$1 as SafeUpdate, create$3 as create, get$1 as get, slot_list as list, slot_remove as remove, slot_time12h as time12h, update$1 as update };
|
|
185
184
|
}
|
|
186
185
|
|
|
187
186
|
declare const Weekday: z.ZodEnum<{
|
|
@@ -230,14 +229,17 @@ declare const update: z.ZodObject<{
|
|
|
230
229
|
}, z.core.$strip>;
|
|
231
230
|
type SafeGet = z.output<typeof get>;
|
|
232
231
|
type SafeWeekdays = z.output<typeof Weekday>;
|
|
232
|
+
type SafeCreate$2 = z.output<typeof create$2>;
|
|
233
|
+
type SafeUpdate = z.output<typeof update>;
|
|
233
234
|
|
|
234
235
|
type operationalDays_SafeGet = SafeGet;
|
|
236
|
+
type operationalDays_SafeUpdate = SafeUpdate;
|
|
235
237
|
type operationalDays_SafeWeekdays = SafeWeekdays;
|
|
236
238
|
declare const operationalDays_Weekday: typeof Weekday;
|
|
237
239
|
declare const operationalDays_get: typeof get;
|
|
238
240
|
declare const operationalDays_update: typeof update;
|
|
239
241
|
declare namespace operationalDays {
|
|
240
|
-
export { type operationalDays_SafeGet as SafeGet, type operationalDays_SafeWeekdays as SafeWeekdays, operationalDays_Weekday as Weekday, create$2 as create, operationalDays_get as get, operationalDays_update as update };
|
|
242
|
+
export { type SafeCreate$2 as SafeCreate, type operationalDays_SafeGet as SafeGet, type operationalDays_SafeUpdate as SafeUpdate, type operationalDays_SafeWeekdays as SafeWeekdays, operationalDays_Weekday as Weekday, create$2 as create, operationalDays_get as get, operationalDays_update as update };
|
|
241
243
|
}
|
|
242
244
|
|
|
243
245
|
declare const me$4: z.ZodObject<{
|
|
@@ -49,8 +49,8 @@ declare const update$3: z.ZodObject<{
|
|
|
49
49
|
type: z.ZodString;
|
|
50
50
|
}, z.core.$strip>;
|
|
51
51
|
type SafeGet$3 = z.infer<typeof get$3>;
|
|
52
|
-
type SafeUpdate$
|
|
53
|
-
type SafeCreate$
|
|
52
|
+
type SafeUpdate$3 = z.output<typeof update$3>;
|
|
53
|
+
type SafeCreate$5 = z.output<typeof create$5>;
|
|
54
54
|
declare const defaultBasicDetails: SafeGet$3;
|
|
55
55
|
|
|
56
56
|
type basicDetails_SafariType = SafariType;
|
|
@@ -58,7 +58,7 @@ declare const basicDetails_defaultBasicDetails: typeof defaultBasicDetails;
|
|
|
58
58
|
declare const basicDetails_safariTypes: typeof safariTypes;
|
|
59
59
|
declare const basicDetails_safeSas: typeof safeSas;
|
|
60
60
|
declare namespace basicDetails {
|
|
61
|
-
export { type basicDetails_SafariType as SafariType, type SafeCreate$
|
|
61
|
+
export { type basicDetails_SafariType as SafariType, type SafeCreate$5 as SafeCreate, type SafeGet$3 as SafeGet, type SafeUpdate$3 as SafeUpdate, create$5 as create, basicDetails_defaultBasicDetails as defaultBasicDetails, get$3 as get, basicDetails_safariTypes as safariTypes, basicDetails_safeSas as safeSas, update$3 as update };
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
declare const pickupLandmark: z.ZodObject<{
|
|
@@ -122,8 +122,8 @@ declare const update$2: z.ZodObject<{
|
|
|
122
122
|
}, z.core.$strip>>;
|
|
123
123
|
}, z.core.$strip>;
|
|
124
124
|
type SafeGet$2 = z.output<typeof get$2>;
|
|
125
|
-
type SafeCreate$
|
|
126
|
-
type SafeUpdate$
|
|
125
|
+
type SafeCreate$4 = z.output<typeof create$4>;
|
|
126
|
+
type SafeUpdate$2 = z.output<typeof update$2>;
|
|
127
127
|
type SafePickupLandmark = z.output<typeof pickupLandmark>;
|
|
128
128
|
declare const defaultLocation: SafeGet$2;
|
|
129
129
|
|
|
@@ -131,7 +131,7 @@ type location_SafePickupLandmark = SafePickupLandmark;
|
|
|
131
131
|
declare const location_defaultLocation: typeof defaultLocation;
|
|
132
132
|
declare const location_pickupLandmark: typeof pickupLandmark;
|
|
133
133
|
declare namespace location {
|
|
134
|
-
export { type SafeCreate$
|
|
134
|
+
export { type SafeCreate$4 as SafeCreate, type SafeGet$2 as SafeGet, type location_SafePickupLandmark as SafePickupLandmark, type SafeUpdate$2 as SafeUpdate, create$4 as create, location_defaultLocation as defaultLocation, get$2 as get, location_pickupLandmark as pickupLandmark, update$2 as update };
|
|
135
135
|
}
|
|
136
136
|
|
|
137
137
|
declare const time12h: z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>;
|
|
@@ -171,17 +171,16 @@ declare const list: z.ZodArray<z.ZodObject<{
|
|
|
171
171
|
}, z.core.$strip>>;
|
|
172
172
|
type SafeGet$1 = z.output<typeof get$1>;
|
|
173
173
|
type SafeList$1 = z.output<typeof list>;
|
|
174
|
-
type SafeCreate$
|
|
175
|
-
type SafeUpdate = z.output<typeof update$1>;
|
|
174
|
+
type SafeCreate$3 = z.output<typeof create$3>;
|
|
175
|
+
type SafeUpdate$1 = z.output<typeof update$1>;
|
|
176
176
|
type SafeRemove = z.output<typeof remove>;
|
|
177
177
|
|
|
178
178
|
type slot_SafeRemove = SafeRemove;
|
|
179
|
-
type slot_SafeUpdate = SafeUpdate;
|
|
180
179
|
declare const slot_list: typeof list;
|
|
181
180
|
declare const slot_remove: typeof remove;
|
|
182
181
|
declare const slot_time12h: typeof time12h;
|
|
183
182
|
declare namespace slot {
|
|
184
|
-
export { type SafeCreate$
|
|
183
|
+
export { type SafeCreate$3 as SafeCreate, type SafeGet$1 as SafeGet, type SafeList$1 as SafeList, type slot_SafeRemove as SafeRemove, type SafeUpdate$1 as SafeUpdate, create$3 as create, get$1 as get, slot_list as list, slot_remove as remove, slot_time12h as time12h, update$1 as update };
|
|
185
184
|
}
|
|
186
185
|
|
|
187
186
|
declare const Weekday: z.ZodEnum<{
|
|
@@ -230,14 +229,17 @@ declare const update: z.ZodObject<{
|
|
|
230
229
|
}, z.core.$strip>;
|
|
231
230
|
type SafeGet = z.output<typeof get>;
|
|
232
231
|
type SafeWeekdays = z.output<typeof Weekday>;
|
|
232
|
+
type SafeCreate$2 = z.output<typeof create$2>;
|
|
233
|
+
type SafeUpdate = z.output<typeof update>;
|
|
233
234
|
|
|
234
235
|
type operationalDays_SafeGet = SafeGet;
|
|
236
|
+
type operationalDays_SafeUpdate = SafeUpdate;
|
|
235
237
|
type operationalDays_SafeWeekdays = SafeWeekdays;
|
|
236
238
|
declare const operationalDays_Weekday: typeof Weekday;
|
|
237
239
|
declare const operationalDays_get: typeof get;
|
|
238
240
|
declare const operationalDays_update: typeof update;
|
|
239
241
|
declare namespace operationalDays {
|
|
240
|
-
export { type operationalDays_SafeGet as SafeGet, type operationalDays_SafeWeekdays as SafeWeekdays, operationalDays_Weekday as Weekday, create$2 as create, operationalDays_get as get, operationalDays_update as update };
|
|
242
|
+
export { type SafeCreate$2 as SafeCreate, type operationalDays_SafeGet as SafeGet, type operationalDays_SafeUpdate as SafeUpdate, type operationalDays_SafeWeekdays as SafeWeekdays, operationalDays_Weekday as Weekday, create$2 as create, operationalDays_get as get, operationalDays_update as update };
|
|
241
243
|
}
|
|
242
244
|
|
|
243
245
|
declare const me$4: z.ZodObject<{
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/safari/index.d.cts
CHANGED
|
@@ -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-
|
|
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-mfbil-IP.cjs';
|
|
2
2
|
import 'zod';
|
package/dist/safari/index.d.ts
CHANGED
|
@@ -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-
|
|
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-mfbil-IP.js';
|
|
2
2
|
import 'zod';
|