@arenarium/maps 1.0.103 → 1.0.105

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
@@ -565,7 +565,7 @@ export interface EventPayloadMap {
565
565
  }
566
566
  export type EventId = keyof EventHandlerMap;
567
567
  export type EventHandler<E extends EventId> = (payload: EventPayloadMap[E]) => void;
568
- declare const mapPopupDataSchema: z.ZodObject<{
568
+ declare const mapPopupDataSchema: z.ZodEffects<z.ZodObject<{
569
569
  id: z.ZodString;
570
570
  rank: z.ZodNumber;
571
571
  lat: z.ZodNumber;
@@ -586,6 +586,20 @@ declare const mapPopupDataSchema: z.ZodObject<{
586
586
  rank: number;
587
587
  width: number;
588
588
  height: number;
589
+ }>, {
590
+ lat: number;
591
+ lng: number;
592
+ id: string;
593
+ rank: number;
594
+ width: number;
595
+ height: number;
596
+ }, {
597
+ lat: number;
598
+ lng: number;
599
+ id: string;
600
+ rank: number;
601
+ width: number;
602
+ height: number;
589
603
  }>;
590
604
  declare const mapPopupStateSchema: z.ZodTuple<[
591
605
  z.ZodNumber,
@@ -598,7 +612,7 @@ declare const mapPopupContentCallbackSchema: z.ZodFunction<z.ZodTuple<[
598
612
  z.ZodString
599
613
  ], z.ZodUnknown>, z.ZodPromise<z.ZodAny>>;
600
614
  declare const mapPopupSchema: z.ZodObject<{
601
- data: z.ZodObject<{
615
+ data: z.ZodEffects<z.ZodObject<{
602
616
  id: z.ZodString;
603
617
  rank: z.ZodNumber;
604
618
  lat: z.ZodNumber;
@@ -619,6 +633,20 @@ declare const mapPopupSchema: z.ZodObject<{
619
633
  rank: number;
620
634
  width: number;
621
635
  height: number;
636
+ }>, {
637
+ lat: number;
638
+ lng: number;
639
+ id: string;
640
+ rank: number;
641
+ width: number;
642
+ height: number;
643
+ }, {
644
+ lat: number;
645
+ lng: number;
646
+ id: string;
647
+ rank: number;
648
+ width: number;
649
+ height: number;
622
650
  }>;
623
651
  state: z.ZodTuple<[
624
652
  z.ZodNumber,
@@ -684,7 +712,7 @@ declare const mapPopupSchema: z.ZodObject<{
684
712
  }>;
685
713
  declare const mapPopupStatesRequestSchema: z.ZodObject<{
686
714
  key: z.ZodString;
687
- data: z.ZodArray<z.ZodObject<{
715
+ data: z.ZodArray<z.ZodEffects<z.ZodObject<{
688
716
  id: z.ZodString;
689
717
  rank: z.ZodNumber;
690
718
  lat: z.ZodNumber;
@@ -705,6 +733,20 @@ declare const mapPopupStatesRequestSchema: z.ZodObject<{
705
733
  rank: number;
706
734
  width: number;
707
735
  height: number;
736
+ }>, {
737
+ lat: number;
738
+ lng: number;
739
+ id: string;
740
+ rank: number;
741
+ width: number;
742
+ height: number;
743
+ }, {
744
+ lat: number;
745
+ lng: number;
746
+ id: string;
747
+ rank: number;
748
+ width: number;
749
+ height: number;
708
750
  }>, "many">;
709
751
  }, "strip", z.ZodTypeAny, {
710
752
  data: {