@tripsam/main 2.0.19 → 2.0.20
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 +0 -8
- package/dist/index.d.cts +1 -22
- package/dist/index.d.ts +1 -22
- package/dist/index.js +0 -8
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -173,7 +173,6 @@ var safari_exports = {};
|
|
|
173
173
|
__export(safari_exports, {
|
|
174
174
|
landmark: () => landmark,
|
|
175
175
|
location: () => location2,
|
|
176
|
-
pickupPoint: () => pickupPoint,
|
|
177
176
|
safariDetails: () => safariDetails,
|
|
178
177
|
safariSearchSchema: () => safariSearchSchema,
|
|
179
178
|
safariSlot: () => safariSlot,
|
|
@@ -219,12 +218,6 @@ var location2 = import_zod6.default.object({
|
|
|
219
218
|
endLng: decimalish,
|
|
220
219
|
landmark: import_zod6.default.array(landmark)
|
|
221
220
|
});
|
|
222
|
-
var pickupPoint = import_zod6.default.object({
|
|
223
|
-
id: import_zod6.default.string(),
|
|
224
|
-
label: import_zod6.default.string(),
|
|
225
|
-
type: import_zod6.default.string(),
|
|
226
|
-
distanceKm: decimalish
|
|
227
|
-
});
|
|
228
221
|
var safariDetails = import_zod6.default.object({
|
|
229
222
|
id: import_zod6.default.string(),
|
|
230
223
|
safariCode: import_zod6.default.string(),
|
|
@@ -238,7 +231,6 @@ var safariDetails = import_zod6.default.object({
|
|
|
238
231
|
location: location2,
|
|
239
232
|
pickupLocation: import_zod6.default.string(),
|
|
240
233
|
safariLocation: import_zod6.default.string(),
|
|
241
|
-
pickupPoints: import_zod6.default.array(pickupPoint),
|
|
242
234
|
safariType: import_zod6.default.array(import_zod6.default.string()),
|
|
243
235
|
reviews: import_zod6.default.array(import_zod6.default.object({
|
|
244
236
|
id: import_zod6.default.string(),
|
package/dist/index.d.cts
CHANGED
|
@@ -203,16 +203,6 @@ declare const location: z$1.ZodObject<{
|
|
|
203
203
|
type: z$1.ZodString;
|
|
204
204
|
}, z$1.core.$strip>>;
|
|
205
205
|
}, z$1.core.$strip>;
|
|
206
|
-
declare const pickupPoint: z$1.ZodObject<{
|
|
207
|
-
id: z$1.ZodString;
|
|
208
|
-
label: z$1.ZodString;
|
|
209
|
-
type: z$1.ZodString;
|
|
210
|
-
distanceKm: z$1.ZodUnion<readonly [z$1.ZodNumber, z$1.ZodString, z$1.ZodCustom<{
|
|
211
|
-
toString(): string;
|
|
212
|
-
}, {
|
|
213
|
-
toString(): string;
|
|
214
|
-
}>]>;
|
|
215
|
-
}, z$1.core.$strip>;
|
|
216
206
|
declare const safariDetails: z$1.ZodObject<{
|
|
217
207
|
id: z$1.ZodString;
|
|
218
208
|
safariCode: z$1.ZodString;
|
|
@@ -273,16 +263,6 @@ declare const safariDetails: z$1.ZodObject<{
|
|
|
273
263
|
}, z$1.core.$strip>;
|
|
274
264
|
pickupLocation: z$1.ZodString;
|
|
275
265
|
safariLocation: z$1.ZodString;
|
|
276
|
-
pickupPoints: z$1.ZodArray<z$1.ZodObject<{
|
|
277
|
-
id: z$1.ZodString;
|
|
278
|
-
label: z$1.ZodString;
|
|
279
|
-
type: z$1.ZodString;
|
|
280
|
-
distanceKm: z$1.ZodUnion<readonly [z$1.ZodNumber, z$1.ZodString, z$1.ZodCustom<{
|
|
281
|
-
toString(): string;
|
|
282
|
-
}, {
|
|
283
|
-
toString(): string;
|
|
284
|
-
}>]>;
|
|
285
|
-
}, z$1.core.$strip>>;
|
|
286
266
|
safariType: z$1.ZodArray<z$1.ZodString>;
|
|
287
267
|
reviews: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
288
268
|
id: z$1.ZodString;
|
|
@@ -300,13 +280,12 @@ type safari_SafariDetails = SafariDetails;
|
|
|
300
280
|
type safari_SafariSearch = SafariSearch;
|
|
301
281
|
declare const safari_landmark: typeof landmark;
|
|
302
282
|
declare const safari_location: typeof location;
|
|
303
|
-
declare const safari_pickupPoint: typeof pickupPoint;
|
|
304
283
|
declare const safari_safariDetails: typeof safariDetails;
|
|
305
284
|
declare const safari_safariSearchSchema: typeof safariSearchSchema;
|
|
306
285
|
declare const safari_safariSlot: typeof safariSlot;
|
|
307
286
|
declare const safari_safariVehicle: typeof safariVehicle;
|
|
308
287
|
declare namespace safari {
|
|
309
|
-
export { type safari_SafariDetails as SafariDetails, type safari_SafariSearch as SafariSearch, safari_landmark as landmark, safari_location as location,
|
|
288
|
+
export { type safari_SafariDetails as SafariDetails, type safari_SafariSearch as SafariSearch, safari_landmark as landmark, safari_location as location, safari_safariDetails as safariDetails, safari_safariSearchSchema as safariSearchSchema, safari_safariSlot as safariSlot, safari_safariVehicle as safariVehicle };
|
|
310
289
|
}
|
|
311
290
|
|
|
312
291
|
declare const safariType: z$1.ZodEnum<{
|
package/dist/index.d.ts
CHANGED
|
@@ -203,16 +203,6 @@ declare const location: z$1.ZodObject<{
|
|
|
203
203
|
type: z$1.ZodString;
|
|
204
204
|
}, z$1.core.$strip>>;
|
|
205
205
|
}, z$1.core.$strip>;
|
|
206
|
-
declare const pickupPoint: z$1.ZodObject<{
|
|
207
|
-
id: z$1.ZodString;
|
|
208
|
-
label: z$1.ZodString;
|
|
209
|
-
type: z$1.ZodString;
|
|
210
|
-
distanceKm: z$1.ZodUnion<readonly [z$1.ZodNumber, z$1.ZodString, z$1.ZodCustom<{
|
|
211
|
-
toString(): string;
|
|
212
|
-
}, {
|
|
213
|
-
toString(): string;
|
|
214
|
-
}>]>;
|
|
215
|
-
}, z$1.core.$strip>;
|
|
216
206
|
declare const safariDetails: z$1.ZodObject<{
|
|
217
207
|
id: z$1.ZodString;
|
|
218
208
|
safariCode: z$1.ZodString;
|
|
@@ -273,16 +263,6 @@ declare const safariDetails: z$1.ZodObject<{
|
|
|
273
263
|
}, z$1.core.$strip>;
|
|
274
264
|
pickupLocation: z$1.ZodString;
|
|
275
265
|
safariLocation: z$1.ZodString;
|
|
276
|
-
pickupPoints: z$1.ZodArray<z$1.ZodObject<{
|
|
277
|
-
id: z$1.ZodString;
|
|
278
|
-
label: z$1.ZodString;
|
|
279
|
-
type: z$1.ZodString;
|
|
280
|
-
distanceKm: z$1.ZodUnion<readonly [z$1.ZodNumber, z$1.ZodString, z$1.ZodCustom<{
|
|
281
|
-
toString(): string;
|
|
282
|
-
}, {
|
|
283
|
-
toString(): string;
|
|
284
|
-
}>]>;
|
|
285
|
-
}, z$1.core.$strip>>;
|
|
286
266
|
safariType: z$1.ZodArray<z$1.ZodString>;
|
|
287
267
|
reviews: z$1.ZodDefault<z$1.ZodArray<z$1.ZodObject<{
|
|
288
268
|
id: z$1.ZodString;
|
|
@@ -300,13 +280,12 @@ type safari_SafariDetails = SafariDetails;
|
|
|
300
280
|
type safari_SafariSearch = SafariSearch;
|
|
301
281
|
declare const safari_landmark: typeof landmark;
|
|
302
282
|
declare const safari_location: typeof location;
|
|
303
|
-
declare const safari_pickupPoint: typeof pickupPoint;
|
|
304
283
|
declare const safari_safariDetails: typeof safariDetails;
|
|
305
284
|
declare const safari_safariSearchSchema: typeof safariSearchSchema;
|
|
306
285
|
declare const safari_safariSlot: typeof safariSlot;
|
|
307
286
|
declare const safari_safariVehicle: typeof safariVehicle;
|
|
308
287
|
declare namespace safari {
|
|
309
|
-
export { type safari_SafariDetails as SafariDetails, type safari_SafariSearch as SafariSearch, safari_landmark as landmark, safari_location as location,
|
|
288
|
+
export { type safari_SafariDetails as SafariDetails, type safari_SafariSearch as SafariSearch, safari_landmark as landmark, safari_location as location, safari_safariDetails as safariDetails, safari_safariSearchSchema as safariSearchSchema, safari_safariSlot as safariSlot, safari_safariVehicle as safariVehicle };
|
|
310
289
|
}
|
|
311
290
|
|
|
312
291
|
declare const safariType: z$1.ZodEnum<{
|
package/dist/index.js
CHANGED
|
@@ -137,7 +137,6 @@ var safari_exports = {};
|
|
|
137
137
|
__export(safari_exports, {
|
|
138
138
|
landmark: () => landmark,
|
|
139
139
|
location: () => location2,
|
|
140
|
-
pickupPoint: () => pickupPoint,
|
|
141
140
|
safariDetails: () => safariDetails,
|
|
142
141
|
safariSearchSchema: () => safariSearchSchema,
|
|
143
142
|
safariSlot: () => safariSlot,
|
|
@@ -183,12 +182,6 @@ var location2 = z6.object({
|
|
|
183
182
|
endLng: decimalish,
|
|
184
183
|
landmark: z6.array(landmark)
|
|
185
184
|
});
|
|
186
|
-
var pickupPoint = z6.object({
|
|
187
|
-
id: z6.string(),
|
|
188
|
-
label: z6.string(),
|
|
189
|
-
type: z6.string(),
|
|
190
|
-
distanceKm: decimalish
|
|
191
|
-
});
|
|
192
185
|
var safariDetails = z6.object({
|
|
193
186
|
id: z6.string(),
|
|
194
187
|
safariCode: z6.string(),
|
|
@@ -202,7 +195,6 @@ var safariDetails = z6.object({
|
|
|
202
195
|
location: location2,
|
|
203
196
|
pickupLocation: z6.string(),
|
|
204
197
|
safariLocation: z6.string(),
|
|
205
|
-
pickupPoints: z6.array(pickupPoint),
|
|
206
198
|
safariType: z6.array(z6.string()),
|
|
207
199
|
reviews: z6.array(z6.object({
|
|
208
200
|
id: z6.string(),
|