@arenarium/maps 1.0.63 → 1.0.64
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 +21 -7
- package/dist/index.js +5 -5
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -449,21 +449,31 @@ declare const mapPopupSchema: z.ZodObject<{
|
|
|
449
449
|
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
450
450
|
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
451
451
|
}>;
|
|
452
|
-
pin: z.ZodOptional<z.
|
|
453
|
-
z.
|
|
454
|
-
|
|
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
|
+
}>>;
|
|
455
461
|
}, "strip", z.ZodTypeAny, {
|
|
456
462
|
body: {
|
|
457
463
|
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
458
464
|
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
459
465
|
};
|
|
460
|
-
pin?:
|
|
466
|
+
pin?: {
|
|
467
|
+
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
468
|
+
} | undefined;
|
|
461
469
|
}, {
|
|
462
470
|
body: {
|
|
463
471
|
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
464
472
|
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
465
473
|
};
|
|
466
|
-
pin?:
|
|
474
|
+
pin?: {
|
|
475
|
+
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
476
|
+
} | undefined;
|
|
467
477
|
}>;
|
|
468
478
|
}, "strip", z.ZodTypeAny, {
|
|
469
479
|
data: {
|
|
@@ -486,7 +496,9 @@ declare const mapPopupSchema: z.ZodObject<{
|
|
|
486
496
|
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
487
497
|
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
488
498
|
};
|
|
489
|
-
pin?:
|
|
499
|
+
pin?: {
|
|
500
|
+
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
501
|
+
} | undefined;
|
|
490
502
|
};
|
|
491
503
|
}, {
|
|
492
504
|
data: {
|
|
@@ -509,7 +521,9 @@ declare const mapPopupSchema: z.ZodObject<{
|
|
|
509
521
|
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
510
522
|
placeholder?: ((args_0: string, ...args: unknown[]) => Promise<any>) | undefined;
|
|
511
523
|
};
|
|
512
|
-
pin?:
|
|
524
|
+
pin?: {
|
|
525
|
+
content: (args_0: string, ...args: unknown[]) => Promise<any>;
|
|
526
|
+
} | undefined;
|
|
513
527
|
};
|
|
514
528
|
}>;
|
|
515
529
|
declare const mapPopupStatesRequestSchema: z.ZodObject<{
|