@arenarium/maps 1.0.64 → 1.0.66
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 +17 -54
- package/dist/index.js +23 -23
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -434,46 +434,19 @@ declare const mapPopupSchema: z.ZodObject<{
|
|
|
434
434
|
z.ZodNumber
|
|
435
435
|
], null>, "many">
|
|
436
436
|
], null>;
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
], z.ZodUnknown>, z.ZodPromise<z.ZodAny>>>;
|
|
445
|
-
}, "strip", z.ZodTypeAny, {
|
|
446
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
447
|
-
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
448
|
-
}, {
|
|
449
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
450
|
-
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
451
|
-
}>;
|
|
452
|
-
pin: z.ZodOptional<z.ZodObject<{
|
|
453
|
-
content: z.ZodFunction<z.ZodTuple<[
|
|
454
|
-
z.ZodString
|
|
455
|
-
], z.ZodUnknown>, z.ZodPromise<z.ZodAny>>;
|
|
456
|
-
}, "strip", z.ZodTypeAny, {
|
|
457
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
458
|
-
}, {
|
|
459
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
460
|
-
}>>;
|
|
437
|
+
content: z.ZodObject<{
|
|
438
|
+
bodyCallback: z.ZodFunction<z.ZodTuple<[
|
|
439
|
+
z.ZodString
|
|
440
|
+
], z.ZodUnknown>, z.ZodPromise<z.ZodAny>>;
|
|
441
|
+
pinCallback: z.ZodOptional<z.ZodFunction<z.ZodTuple<[
|
|
442
|
+
z.ZodString
|
|
443
|
+
], z.ZodUnknown>, z.ZodPromise<z.ZodAny>>>;
|
|
461
444
|
}, "strip", z.ZodTypeAny, {
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
465
|
-
};
|
|
466
|
-
pin?: {
|
|
467
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
468
|
-
} | undefined;
|
|
445
|
+
bodyCallback: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
446
|
+
pinCallback?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
469
447
|
}, {
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
473
|
-
};
|
|
474
|
-
pin?: {
|
|
475
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
476
|
-
} | undefined;
|
|
448
|
+
bodyCallback: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
449
|
+
pinCallback?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
477
450
|
}>;
|
|
478
451
|
}, "strip", z.ZodTypeAny, {
|
|
479
452
|
data: {
|
|
@@ -491,14 +464,9 @@ declare const mapPopupSchema: z.ZodObject<{
|
|
|
491
464
|
number
|
|
492
465
|
][]
|
|
493
466
|
];
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
498
|
-
};
|
|
499
|
-
pin?: {
|
|
500
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
501
|
-
} | undefined;
|
|
467
|
+
content: {
|
|
468
|
+
bodyCallback: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
469
|
+
pinCallback?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
502
470
|
};
|
|
503
471
|
}, {
|
|
504
472
|
data: {
|
|
@@ -516,14 +484,9 @@ declare const mapPopupSchema: z.ZodObject<{
|
|
|
516
484
|
number
|
|
517
485
|
][]
|
|
518
486
|
];
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
523
|
-
};
|
|
524
|
-
pin?: {
|
|
525
|
-
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
526
|
-
} | undefined;
|
|
487
|
+
content: {
|
|
488
|
+
bodyCallback: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
489
|
+
pinCallback?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
527
490
|
};
|
|
528
491
|
}>;
|
|
529
492
|
declare const mapPopupStatesRequestSchema: z.ZodObject<{
|