@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 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
@@ -181,7 +181,7 @@ var location2 = z6.object({
181
181
  startLng: decimalish,
182
182
  endLat: decimalish,
183
183
  endLng: decimalish,
184
- landmark
184
+ landmark: z6.array(landmark)
185
185
  });
186
186
  var pickupPoint = z6.object({
187
187
  id: z6.string(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tripsam/main",
3
- "version": "2.0.17",
3
+ "version": "2.0.18",
4
4
  "type": "module",
5
5
  "main": "./dist/index.cjs",
6
6
  "module": "./dist/index.js",