@tripsam/main 2.0.17 → 2.0.18
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 +1 -1
- package/dist/index.d.cts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -217,7 +217,7 @@ var location2 = import_zod6.default.object({
|
|
|
217
217
|
startLng: decimalish,
|
|
218
218
|
endLat: decimalish,
|
|
219
219
|
endLng: decimalish,
|
|
220
|
-
landmark
|
|
220
|
+
landmark: import_zod6.default.array(landmark)
|
|
221
221
|
});
|
|
222
222
|
var pickupPoint = import_zod6.default.object({
|
|
223
223
|
id: import_zod6.default.string(),
|
package/dist/index.d.cts
CHANGED
|
@@ -198,10 +198,10 @@ declare const location: z$1.ZodObject<{
|
|
|
198
198
|
}, {
|
|
199
199
|
toString(): string;
|
|
200
200
|
}>]>;
|
|
201
|
-
landmark: z$1.ZodObject<{
|
|
201
|
+
landmark: z$1.ZodArray<z$1.ZodObject<{
|
|
202
202
|
name: z$1.ZodString;
|
|
203
203
|
type: z$1.ZodString;
|
|
204
|
-
}, z$1.core.$strip
|
|
204
|
+
}, z$1.core.$strip>>;
|
|
205
205
|
}, z$1.core.$strip>;
|
|
206
206
|
declare const pickupPoint: z$1.ZodObject<{
|
|
207
207
|
id: z$1.ZodString;
|
|
@@ -264,10 +264,10 @@ declare const safariDetails: z$1.ZodObject<{
|
|
|
264
264
|
}, {
|
|
265
265
|
toString(): string;
|
|
266
266
|
}>]>;
|
|
267
|
-
landmark: z$1.ZodObject<{
|
|
267
|
+
landmark: z$1.ZodArray<z$1.ZodObject<{
|
|
268
268
|
name: z$1.ZodString;
|
|
269
269
|
type: z$1.ZodString;
|
|
270
|
-
}, z$1.core.$strip
|
|
270
|
+
}, z$1.core.$strip>>;
|
|
271
271
|
}, z$1.core.$strip>;
|
|
272
272
|
pickupLocation: z$1.ZodString;
|
|
273
273
|
safariLocation: z$1.ZodString;
|
package/dist/index.d.ts
CHANGED
|
@@ -198,10 +198,10 @@ declare const location: z$1.ZodObject<{
|
|
|
198
198
|
}, {
|
|
199
199
|
toString(): string;
|
|
200
200
|
}>]>;
|
|
201
|
-
landmark: z$1.ZodObject<{
|
|
201
|
+
landmark: z$1.ZodArray<z$1.ZodObject<{
|
|
202
202
|
name: z$1.ZodString;
|
|
203
203
|
type: z$1.ZodString;
|
|
204
|
-
}, z$1.core.$strip
|
|
204
|
+
}, z$1.core.$strip>>;
|
|
205
205
|
}, z$1.core.$strip>;
|
|
206
206
|
declare const pickupPoint: z$1.ZodObject<{
|
|
207
207
|
id: z$1.ZodString;
|
|
@@ -264,10 +264,10 @@ declare const safariDetails: z$1.ZodObject<{
|
|
|
264
264
|
}, {
|
|
265
265
|
toString(): string;
|
|
266
266
|
}>]>;
|
|
267
|
-
landmark: z$1.ZodObject<{
|
|
267
|
+
landmark: z$1.ZodArray<z$1.ZodObject<{
|
|
268
268
|
name: z$1.ZodString;
|
|
269
269
|
type: z$1.ZodString;
|
|
270
|
-
}, z$1.core.$strip
|
|
270
|
+
}, z$1.core.$strip>>;
|
|
271
271
|
}, z$1.core.$strip>;
|
|
272
272
|
pickupLocation: z$1.ZodString;
|
|
273
273
|
safariLocation: z$1.ZodString;
|
package/dist/index.js
CHANGED