@arenarium/maps 1.0.65 → 1.0.68

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.d.ts CHANGED
@@ -513,11 +513,9 @@ declare const mapPopupStatesRequestSchema: z.ZodObject<{
513
513
  width: number;
514
514
  height: number;
515
515
  }>, "many">;
516
- minZoom: z.ZodNumber;
517
- maxZoom: z.ZodNumber;
516
+ minZoom: z.ZodOptional<z.ZodNumber>;
517
+ maxZoom: z.ZodOptional<z.ZodNumber>;
518
518
  }, "strip", z.ZodTypeAny, {
519
- minZoom: number;
520
- maxZoom: number;
521
519
  data: {
522
520
  lat: number;
523
521
  lng: number;
@@ -527,9 +525,9 @@ declare const mapPopupStatesRequestSchema: z.ZodObject<{
527
525
  height: number;
528
526
  }[];
529
527
  apiKey: string;
528
+ minZoom?: number | undefined;
529
+ maxZoom?: number | undefined;
530
530
  }, {
531
- minZoom: number;
532
- maxZoom: number;
533
531
  data: {
534
532
  lat: number;
535
533
  lng: number;
@@ -539,6 +537,8 @@ declare const mapPopupStatesRequestSchema: z.ZodObject<{
539
537
  height: number;
540
538
  }[];
541
539
  apiKey: string;
540
+ minZoom?: number | undefined;
541
+ maxZoom?: number | undefined;
542
542
  }>;
543
543
  export type MapPopupData = z.infer<typeof mapPopupDataSchema>;
544
544
  export type MapPopupState = z.infer<typeof mapPopupStateSchema>;