@tripsam/onboarding 1.0.23 → 1.0.24
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 +4 -4
- package/dist/index.d.cts +12 -12
- package/dist/index.d.ts +12 -12
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -22,9 +22,9 @@ var index_exports = {};
|
|
|
22
22
|
__export(index_exports, {
|
|
23
23
|
BasicDetails: () => basic_details_exports,
|
|
24
24
|
Location: () => location_exports,
|
|
25
|
+
OperationalDays: () => operational_days_exports,
|
|
25
26
|
Slot: () => slot_exports,
|
|
26
|
-
VerifyEmail: () => verify_email_exports
|
|
27
|
-
operationalDays: () => operational_days_exports
|
|
27
|
+
VerifyEmail: () => verify_email_exports
|
|
28
28
|
});
|
|
29
29
|
module.exports = __toCommonJS(index_exports);
|
|
30
30
|
|
|
@@ -195,7 +195,7 @@ var me4 = import_zod5.z.object({
|
|
|
195
195
|
0 && (module.exports = {
|
|
196
196
|
BasicDetails,
|
|
197
197
|
Location,
|
|
198
|
+
OperationalDays,
|
|
198
199
|
Slot,
|
|
199
|
-
VerifyEmail
|
|
200
|
-
operationalDays
|
|
200
|
+
VerifyEmail
|
|
201
201
|
});
|
package/dist/index.d.cts
CHANGED
|
@@ -38,11 +38,11 @@ declare const update$1: z.ZodObject<{
|
|
|
38
38
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
39
39
|
phoneNumber: z.ZodString;
|
|
40
40
|
}, z.core.$strip>;
|
|
41
|
-
type SafeMe$
|
|
41
|
+
type SafeMe$3 = z.infer<typeof me$3>;
|
|
42
42
|
type SafeUpdate$1 = z.output<typeof update$1>;
|
|
43
43
|
|
|
44
44
|
declare namespace basicDetails {
|
|
45
|
-
export { type SafeMe$
|
|
45
|
+
export { type SafeMe$3 as SafeMe, type SafeUpdate$1 as SafeUpdate, me$3 as me, update$1 as update };
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
declare const suggest: z.ZodObject<{
|
|
@@ -143,11 +143,12 @@ type SafeMinimum = z.output<typeof minimum>;
|
|
|
143
143
|
type SafeMinimumList = z.output<typeof minimum>;
|
|
144
144
|
type SafeSuggest = z.output<typeof suggest>;
|
|
145
145
|
type SafeSave = z.output<typeof save>;
|
|
146
|
-
type SafeMe$
|
|
147
|
-
type SafePickupLandmark
|
|
146
|
+
type SafeMe$2 = z.output<typeof me$2>;
|
|
147
|
+
type SafePickupLandmark = z.output<typeof pickupLandmark>;
|
|
148
148
|
|
|
149
149
|
type location_SafeMinimum = SafeMinimum;
|
|
150
150
|
type location_SafeMinimumList = SafeMinimumList;
|
|
151
|
+
type location_SafePickupLandmark = SafePickupLandmark;
|
|
151
152
|
type location_SafeSave = SafeSave;
|
|
152
153
|
type location_SafeSuggest = SafeSuggest;
|
|
153
154
|
declare const location_minimum: typeof minimum;
|
|
@@ -156,7 +157,7 @@ declare const location_pickupLandmark: typeof pickupLandmark;
|
|
|
156
157
|
declare const location_save: typeof save;
|
|
157
158
|
declare const location_suggest: typeof suggest;
|
|
158
159
|
declare namespace location {
|
|
159
|
-
export { type SafeMe$
|
|
160
|
+
export { type SafeMe$2 as SafeMe, type location_SafeMinimum as SafeMinimum, type location_SafeMinimumList as SafeMinimumList, type location_SafePickupLandmark as SafePickupLandmark, type location_SafeSave as SafeSave, type location_SafeSuggest as SafeSuggest, me$2 as me, location_minimum as minimum, location_minimumList as minimumList, location_pickupLandmark as pickupLandmark, location_save as save, location_suggest as suggest };
|
|
160
161
|
}
|
|
161
162
|
|
|
162
163
|
declare const time12h: z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>;
|
|
@@ -191,21 +192,20 @@ declare const meList: z.ZodArray<z.ZodObject<{
|
|
|
191
192
|
endTime: z.ZodCoercedNumber<unknown>;
|
|
192
193
|
minHour: z.ZodCoercedNumber<unknown>;
|
|
193
194
|
}, z.core.$strip>>;
|
|
194
|
-
type SafeMe = z.output<typeof me$1>;
|
|
195
|
+
type SafeMe$1 = z.output<typeof me$1>;
|
|
195
196
|
type SafeList = z.output<typeof meList>;
|
|
196
197
|
type SafeCreate = z.output<typeof create>;
|
|
197
198
|
type SafeUpdate = z.output<typeof update>;
|
|
198
199
|
|
|
199
200
|
type slot_SafeCreate = SafeCreate;
|
|
200
201
|
type slot_SafeList = SafeList;
|
|
201
|
-
type slot_SafeMe = SafeMe;
|
|
202
202
|
type slot_SafeUpdate = SafeUpdate;
|
|
203
203
|
declare const slot_create: typeof create;
|
|
204
204
|
declare const slot_meList: typeof meList;
|
|
205
205
|
declare const slot_time12h: typeof time12h;
|
|
206
206
|
declare const slot_update: typeof update;
|
|
207
207
|
declare namespace slot {
|
|
208
|
-
export { type slot_SafeCreate as SafeCreate, type slot_SafeList as SafeList, type
|
|
208
|
+
export { type slot_SafeCreate as SafeCreate, type slot_SafeList as SafeList, type SafeMe$1 as SafeMe, type slot_SafeUpdate as SafeUpdate, slot_create as create, me$1 as me, slot_meList as meList, slot_time12h as time12h, slot_update as update };
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
declare const Weekday: z.ZodEnum<{
|
|
@@ -228,15 +228,15 @@ declare const me: z.ZodObject<{
|
|
|
228
228
|
saturday: "saturday";
|
|
229
229
|
}>>, z.ZodTransform<("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[], ("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[]>>;
|
|
230
230
|
}, z.core.$strip>;
|
|
231
|
-
type
|
|
231
|
+
type SafeMe = z.output<typeof me>;
|
|
232
232
|
type SafeWeekdays = z.output<typeof Weekday>;
|
|
233
233
|
|
|
234
|
-
type
|
|
234
|
+
type operationalDays_SafeMe = SafeMe;
|
|
235
235
|
type operationalDays_SafeWeekdays = SafeWeekdays;
|
|
236
236
|
declare const operationalDays_Weekday: typeof Weekday;
|
|
237
237
|
declare const operationalDays_me: typeof me;
|
|
238
238
|
declare namespace operationalDays {
|
|
239
|
-
export { type
|
|
239
|
+
export { type operationalDays_SafeMe as SafeMe, type operationalDays_SafeWeekdays as SafeWeekdays, operationalDays_Weekday as Weekday, operationalDays_me as me };
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
export { basicDetails as BasicDetails, location as Location, slot as Slot, verifyEmail as VerifyEmail
|
|
242
|
+
export { basicDetails as BasicDetails, location as Location, operationalDays as OperationalDays, slot as Slot, verifyEmail as VerifyEmail };
|
package/dist/index.d.ts
CHANGED
|
@@ -38,11 +38,11 @@ declare const update$1: z.ZodObject<{
|
|
|
38
38
|
countryCode: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
39
39
|
phoneNumber: z.ZodString;
|
|
40
40
|
}, z.core.$strip>;
|
|
41
|
-
type SafeMe$
|
|
41
|
+
type SafeMe$3 = z.infer<typeof me$3>;
|
|
42
42
|
type SafeUpdate$1 = z.output<typeof update$1>;
|
|
43
43
|
|
|
44
44
|
declare namespace basicDetails {
|
|
45
|
-
export { type SafeMe$
|
|
45
|
+
export { type SafeMe$3 as SafeMe, type SafeUpdate$1 as SafeUpdate, me$3 as me, update$1 as update };
|
|
46
46
|
}
|
|
47
47
|
|
|
48
48
|
declare const suggest: z.ZodObject<{
|
|
@@ -143,11 +143,12 @@ type SafeMinimum = z.output<typeof minimum>;
|
|
|
143
143
|
type SafeMinimumList = z.output<typeof minimum>;
|
|
144
144
|
type SafeSuggest = z.output<typeof suggest>;
|
|
145
145
|
type SafeSave = z.output<typeof save>;
|
|
146
|
-
type SafeMe$
|
|
147
|
-
type SafePickupLandmark
|
|
146
|
+
type SafeMe$2 = z.output<typeof me$2>;
|
|
147
|
+
type SafePickupLandmark = z.output<typeof pickupLandmark>;
|
|
148
148
|
|
|
149
149
|
type location_SafeMinimum = SafeMinimum;
|
|
150
150
|
type location_SafeMinimumList = SafeMinimumList;
|
|
151
|
+
type location_SafePickupLandmark = SafePickupLandmark;
|
|
151
152
|
type location_SafeSave = SafeSave;
|
|
152
153
|
type location_SafeSuggest = SafeSuggest;
|
|
153
154
|
declare const location_minimum: typeof minimum;
|
|
@@ -156,7 +157,7 @@ declare const location_pickupLandmark: typeof pickupLandmark;
|
|
|
156
157
|
declare const location_save: typeof save;
|
|
157
158
|
declare const location_suggest: typeof suggest;
|
|
158
159
|
declare namespace location {
|
|
159
|
-
export { type SafeMe$
|
|
160
|
+
export { type SafeMe$2 as SafeMe, type location_SafeMinimum as SafeMinimum, type location_SafeMinimumList as SafeMinimumList, type location_SafePickupLandmark as SafePickupLandmark, type location_SafeSave as SafeSave, type location_SafeSuggest as SafeSuggest, me$2 as me, location_minimum as minimum, location_minimumList as minimumList, location_pickupLandmark as pickupLandmark, location_save as save, location_suggest as suggest };
|
|
160
161
|
}
|
|
161
162
|
|
|
162
163
|
declare const time12h: z.ZodPipe<z.ZodString, z.ZodTransform<number, string>>;
|
|
@@ -191,21 +192,20 @@ declare const meList: z.ZodArray<z.ZodObject<{
|
|
|
191
192
|
endTime: z.ZodCoercedNumber<unknown>;
|
|
192
193
|
minHour: z.ZodCoercedNumber<unknown>;
|
|
193
194
|
}, z.core.$strip>>;
|
|
194
|
-
type SafeMe = z.output<typeof me$1>;
|
|
195
|
+
type SafeMe$1 = z.output<typeof me$1>;
|
|
195
196
|
type SafeList = z.output<typeof meList>;
|
|
196
197
|
type SafeCreate = z.output<typeof create>;
|
|
197
198
|
type SafeUpdate = z.output<typeof update>;
|
|
198
199
|
|
|
199
200
|
type slot_SafeCreate = SafeCreate;
|
|
200
201
|
type slot_SafeList = SafeList;
|
|
201
|
-
type slot_SafeMe = SafeMe;
|
|
202
202
|
type slot_SafeUpdate = SafeUpdate;
|
|
203
203
|
declare const slot_create: typeof create;
|
|
204
204
|
declare const slot_meList: typeof meList;
|
|
205
205
|
declare const slot_time12h: typeof time12h;
|
|
206
206
|
declare const slot_update: typeof update;
|
|
207
207
|
declare namespace slot {
|
|
208
|
-
export { type slot_SafeCreate as SafeCreate, type slot_SafeList as SafeList, type
|
|
208
|
+
export { type slot_SafeCreate as SafeCreate, type slot_SafeList as SafeList, type SafeMe$1 as SafeMe, type slot_SafeUpdate as SafeUpdate, slot_create as create, me$1 as me, slot_meList as meList, slot_time12h as time12h, slot_update as update };
|
|
209
209
|
}
|
|
210
210
|
|
|
211
211
|
declare const Weekday: z.ZodEnum<{
|
|
@@ -228,15 +228,15 @@ declare const me: z.ZodObject<{
|
|
|
228
228
|
saturday: "saturday";
|
|
229
229
|
}>>, z.ZodTransform<("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[], ("sunday" | "monday" | "tuesday" | "wednesday" | "thursday" | "friday" | "saturday")[]>>;
|
|
230
230
|
}, z.core.$strip>;
|
|
231
|
-
type
|
|
231
|
+
type SafeMe = z.output<typeof me>;
|
|
232
232
|
type SafeWeekdays = z.output<typeof Weekday>;
|
|
233
233
|
|
|
234
|
-
type
|
|
234
|
+
type operationalDays_SafeMe = SafeMe;
|
|
235
235
|
type operationalDays_SafeWeekdays = SafeWeekdays;
|
|
236
236
|
declare const operationalDays_Weekday: typeof Weekday;
|
|
237
237
|
declare const operationalDays_me: typeof me;
|
|
238
238
|
declare namespace operationalDays {
|
|
239
|
-
export { type
|
|
239
|
+
export { type operationalDays_SafeMe as SafeMe, type operationalDays_SafeWeekdays as SafeWeekdays, operationalDays_Weekday as Weekday, operationalDays_me as me };
|
|
240
240
|
}
|
|
241
241
|
|
|
242
|
-
export { basicDetails as BasicDetails, location as Location, slot as Slot, verifyEmail as VerifyEmail
|
|
242
|
+
export { basicDetails as BasicDetails, location as Location, operationalDays as OperationalDays, slot as Slot, verifyEmail as VerifyEmail };
|
package/dist/index.js
CHANGED
|
@@ -170,7 +170,7 @@ var me4 = z5.object({
|
|
|
170
170
|
export {
|
|
171
171
|
basic_details_exports as BasicDetails,
|
|
172
172
|
location_exports as Location,
|
|
173
|
+
operational_days_exports as OperationalDays,
|
|
173
174
|
slot_exports as Slot,
|
|
174
|
-
verify_email_exports as VerifyEmail
|
|
175
|
-
operational_days_exports as operationalDays
|
|
175
|
+
verify_email_exports as VerifyEmail
|
|
176
176
|
};
|