@prismicio/types-internal 4.4.0 → 4.5.0-pr.21.8cf651a
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/content/codec/richText.js +24 -20
- package/dist/content/codec/richText.js.map +1 -1
- package/dist/content/legacy/richText.d.ts.map +1 -1
- package/dist/content/legacy/richText.js.map +1 -1
- package/dist/helpers/repository.js.map +1 -1
- package/dist/helpers/traverseContent.d.ts.map +1 -1
- package/dist/helpers/traverseContent.js +2 -0
- package/dist/helpers/traverseContent.js.map +1 -1
- package/dist/helpers/traverseContentWithModel.d.ts.map +1 -1
- package/dist/helpers/traverseContentWithModel.js +1 -0
- package/dist/helpers/traverseContentWithModel.js.map +1 -1
- package/dist/io-ts.d.ts +802 -0
- package/dist/io-ts.d.ts.map +1 -1
- package/dist/model/customType.d.ts +28 -4
- package/dist/model/customType.d.ts.map +1 -1
- package/dist/model/customType.js +37 -29
- package/dist/model/customType.js.map +1 -1
- package/dist/model/image.js +1 -1
- package/dist/model/image.js.map +1 -1
- package/dist/model/slice.d.ts +577 -2
- package/dist/model/slice.d.ts.map +1 -1
- package/dist/model/slice.js +8 -2
- package/dist/model/slice.js.map +1 -1
- package/dist/zod4.d.ts +619 -8
- package/dist/zod4.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/content/codec/richText.ts +29 -27
- package/src/content/legacy/richText.ts +2 -0
- package/src/helpers/repository.ts +1 -3
- package/src/helpers/traverseContent.ts +12 -0
- package/src/helpers/traverseContentWithModel.ts +6 -0
- package/src/model/customType.ts +19 -8
- package/src/model/image.ts +1 -1
- package/src/model/slice.ts +20 -7
package/dist/zod4.d.ts
CHANGED
|
@@ -1889,7 +1889,7 @@ declare const SeparatorModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
1889
1889
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
1890
1890
|
}, _$zod_v4_core0.$strip>>;
|
|
1891
1891
|
}, _$zod_v4_core0.$strip>;
|
|
1892
|
-
declare const SharedSliceModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
1892
|
+
declare const SharedSliceModelSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
1893
1893
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
1894
1894
|
type: _$zod_mini0.ZodMiniLiteral<"SharedSlice">;
|
|
1895
1895
|
name: _$zod_mini0.ZodMiniString<string>;
|
|
@@ -2462,7 +2462,582 @@ declare const SharedSliceModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
2462
2462
|
}, _$zod_v4_core0.$strip>>;
|
|
2463
2463
|
description: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2464
2464
|
legacyPaths: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniString<string>>>;
|
|
2465
|
-
|
|
2465
|
+
schema: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUndefined>;
|
|
2466
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2467
|
+
schema: _$zod_mini0.ZodMiniLiteral<"@prismicio/types-internal@4.5.0">;
|
|
2468
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2469
|
+
type: _$zod_mini0.ZodMiniLiteral<"SharedSlice">;
|
|
2470
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
2471
|
+
variations: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
2472
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2473
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
2474
|
+
description: _$zod_mini0.ZodMiniString<string>;
|
|
2475
|
+
imageUrl: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniString<string>>;
|
|
2476
|
+
docURL: _$zod_mini0.ZodMiniString<string>;
|
|
2477
|
+
version: _$zod_mini0.ZodMiniString<string>;
|
|
2478
|
+
display: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2479
|
+
primary: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<NestableModel | {
|
|
2480
|
+
type: "Group";
|
|
2481
|
+
fieldset?: string | null | undefined;
|
|
2482
|
+
icon?: string | undefined;
|
|
2483
|
+
description?: string | undefined;
|
|
2484
|
+
config?: {
|
|
2485
|
+
label?: string | null | undefined;
|
|
2486
|
+
repeat?: boolean | undefined;
|
|
2487
|
+
fields?: Record<string, NestableModel | {
|
|
2488
|
+
type: "Group";
|
|
2489
|
+
fieldset?: string | null | undefined;
|
|
2490
|
+
icon?: string | undefined;
|
|
2491
|
+
description?: string | undefined;
|
|
2492
|
+
config?: {
|
|
2493
|
+
label?: string | null | undefined;
|
|
2494
|
+
repeat?: boolean | undefined;
|
|
2495
|
+
fields?: Record<string, {
|
|
2496
|
+
type: "Boolean";
|
|
2497
|
+
config?: {
|
|
2498
|
+
label?: string | null | undefined;
|
|
2499
|
+
default_value?: boolean | undefined;
|
|
2500
|
+
placeholder_true?: string | undefined;
|
|
2501
|
+
placeholder_false?: string | undefined;
|
|
2502
|
+
} | undefined;
|
|
2503
|
+
} | {
|
|
2504
|
+
type: "Color";
|
|
2505
|
+
fieldset?: string | null | undefined;
|
|
2506
|
+
config?: {
|
|
2507
|
+
label?: string | null | undefined;
|
|
2508
|
+
placeholder?: string | undefined;
|
|
2509
|
+
} | undefined;
|
|
2510
|
+
} | {
|
|
2511
|
+
type: "Date";
|
|
2512
|
+
fieldset?: string | null | undefined;
|
|
2513
|
+
config?: {
|
|
2514
|
+
label?: string | null | undefined;
|
|
2515
|
+
placeholder?: string | undefined;
|
|
2516
|
+
default?: string | undefined;
|
|
2517
|
+
} | undefined;
|
|
2518
|
+
} | {
|
|
2519
|
+
type: "Embed";
|
|
2520
|
+
fieldset?: string | null | undefined;
|
|
2521
|
+
config?: {
|
|
2522
|
+
label?: string | null | undefined;
|
|
2523
|
+
placeholder?: string | undefined;
|
|
2524
|
+
useAsTitle?: boolean | undefined;
|
|
2525
|
+
} | undefined;
|
|
2526
|
+
} | {
|
|
2527
|
+
type: "GeoPoint";
|
|
2528
|
+
fieldset?: string | null | undefined;
|
|
2529
|
+
config?: {
|
|
2530
|
+
label?: string | null | undefined;
|
|
2531
|
+
} | undefined;
|
|
2532
|
+
} | {
|
|
2533
|
+
type: "Image";
|
|
2534
|
+
fieldset?: string | null | undefined;
|
|
2535
|
+
config?: {
|
|
2536
|
+
label?: string | null | undefined;
|
|
2537
|
+
placeholder?: string | undefined;
|
|
2538
|
+
constraint?: {
|
|
2539
|
+
width?: number | null | undefined;
|
|
2540
|
+
height?: number | null | undefined;
|
|
2541
|
+
} | undefined;
|
|
2542
|
+
thumbnails?: {
|
|
2543
|
+
name: string;
|
|
2544
|
+
width?: number | null | undefined;
|
|
2545
|
+
height?: number | null | undefined;
|
|
2546
|
+
}[] | undefined;
|
|
2547
|
+
} | undefined;
|
|
2548
|
+
} | {
|
|
2549
|
+
type: "IntegrationFields";
|
|
2550
|
+
fieldset?: string | null | undefined;
|
|
2551
|
+
config?: {
|
|
2552
|
+
label?: string | null | undefined;
|
|
2553
|
+
placeholder?: string | undefined;
|
|
2554
|
+
catalog?: string | undefined;
|
|
2555
|
+
} | undefined;
|
|
2556
|
+
} | {
|
|
2557
|
+
type: "Link";
|
|
2558
|
+
fieldset?: string | null | undefined;
|
|
2559
|
+
config?: {
|
|
2560
|
+
label?: string | null | undefined;
|
|
2561
|
+
useAsTitle?: boolean | undefined;
|
|
2562
|
+
placeholder?: string | undefined;
|
|
2563
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
2564
|
+
customtypes?: (string | {
|
|
2565
|
+
id: string;
|
|
2566
|
+
fields: (string | {
|
|
2567
|
+
id: string;
|
|
2568
|
+
customtypes: (string | {
|
|
2569
|
+
id: string;
|
|
2570
|
+
fields: (string | {
|
|
2571
|
+
id: string;
|
|
2572
|
+
fields: string[];
|
|
2573
|
+
})[];
|
|
2574
|
+
})[];
|
|
2575
|
+
} | {
|
|
2576
|
+
id: string;
|
|
2577
|
+
fields: (string | {
|
|
2578
|
+
id: string;
|
|
2579
|
+
customtypes: (string | {
|
|
2580
|
+
id: string;
|
|
2581
|
+
fields: (string | {
|
|
2582
|
+
id: string;
|
|
2583
|
+
fields: string[];
|
|
2584
|
+
})[];
|
|
2585
|
+
})[];
|
|
2586
|
+
})[];
|
|
2587
|
+
})[];
|
|
2588
|
+
})[] | undefined;
|
|
2589
|
+
masks?: string[] | undefined;
|
|
2590
|
+
tags?: string[] | undefined;
|
|
2591
|
+
allowTargetBlank?: boolean | undefined;
|
|
2592
|
+
allowText?: boolean | undefined;
|
|
2593
|
+
repeat?: boolean | undefined;
|
|
2594
|
+
variants?: string[] | undefined;
|
|
2595
|
+
} | undefined;
|
|
2596
|
+
} | {
|
|
2597
|
+
type: "Number";
|
|
2598
|
+
fieldset?: string | null | undefined;
|
|
2599
|
+
config?: {
|
|
2600
|
+
label?: string | null | undefined;
|
|
2601
|
+
placeholder?: string | undefined;
|
|
2602
|
+
min?: number | undefined;
|
|
2603
|
+
max?: number | undefined;
|
|
2604
|
+
step?: number | undefined;
|
|
2605
|
+
} | undefined;
|
|
2606
|
+
} | {
|
|
2607
|
+
type: "Range";
|
|
2608
|
+
fieldset?: string | null | undefined;
|
|
2609
|
+
config?: {
|
|
2610
|
+
label?: string | null | undefined;
|
|
2611
|
+
placeholder?: string | undefined;
|
|
2612
|
+
min?: number | undefined;
|
|
2613
|
+
max?: number | undefined;
|
|
2614
|
+
step?: number | undefined;
|
|
2615
|
+
} | undefined;
|
|
2616
|
+
} | {
|
|
2617
|
+
type: "StructuredText";
|
|
2618
|
+
fieldset?: string | null | undefined;
|
|
2619
|
+
config?: {
|
|
2620
|
+
label?: string | null | undefined;
|
|
2621
|
+
placeholder?: string | undefined;
|
|
2622
|
+
useAsTitle?: boolean | undefined;
|
|
2623
|
+
single?: string | undefined;
|
|
2624
|
+
multi?: string | undefined;
|
|
2625
|
+
imageConstraint?: {
|
|
2626
|
+
width?: number | null | undefined;
|
|
2627
|
+
height?: number | null | undefined;
|
|
2628
|
+
} | undefined;
|
|
2629
|
+
labels?: string[] | undefined;
|
|
2630
|
+
allowTargetBlank?: boolean | undefined;
|
|
2631
|
+
} | undefined;
|
|
2632
|
+
} | {
|
|
2633
|
+
type: "Select";
|
|
2634
|
+
fieldset?: string | null | undefined;
|
|
2635
|
+
config?: {
|
|
2636
|
+
label?: string | null | undefined;
|
|
2637
|
+
placeholder?: string | undefined;
|
|
2638
|
+
default_value?: string | undefined;
|
|
2639
|
+
options?: string[] | undefined;
|
|
2640
|
+
} | undefined;
|
|
2641
|
+
} | {
|
|
2642
|
+
type: "Separator";
|
|
2643
|
+
config?: {
|
|
2644
|
+
label?: string | null | undefined;
|
|
2645
|
+
} | undefined;
|
|
2646
|
+
} | {
|
|
2647
|
+
type: "Table";
|
|
2648
|
+
config?: {
|
|
2649
|
+
label?: string | null | undefined;
|
|
2650
|
+
} | undefined;
|
|
2651
|
+
} | {
|
|
2652
|
+
type: "Text";
|
|
2653
|
+
fieldset?: string | null | undefined;
|
|
2654
|
+
config?: {
|
|
2655
|
+
label?: string | null | undefined;
|
|
2656
|
+
useAsTitle?: boolean | undefined;
|
|
2657
|
+
placeholder?: string | undefined;
|
|
2658
|
+
} | undefined;
|
|
2659
|
+
} | {
|
|
2660
|
+
type: "Timestamp";
|
|
2661
|
+
fieldset?: string | null | undefined;
|
|
2662
|
+
config?: {
|
|
2663
|
+
label?: string | null | undefined;
|
|
2664
|
+
placeholder?: string | undefined;
|
|
2665
|
+
default?: string | undefined;
|
|
2666
|
+
} | undefined;
|
|
2667
|
+
}> | undefined;
|
|
2668
|
+
} | undefined;
|
|
2669
|
+
}> | undefined;
|
|
2670
|
+
} | undefined;
|
|
2671
|
+
}, unknown, _$zod_v4_core0.$ZodTypeInternals<NestableModel | {
|
|
2672
|
+
type: "Group";
|
|
2673
|
+
fieldset?: string | null | undefined;
|
|
2674
|
+
icon?: string | undefined;
|
|
2675
|
+
description?: string | undefined;
|
|
2676
|
+
config?: {
|
|
2677
|
+
label?: string | null | undefined;
|
|
2678
|
+
repeat?: boolean | undefined;
|
|
2679
|
+
fields?: Record<string, NestableModel | {
|
|
2680
|
+
type: "Group";
|
|
2681
|
+
fieldset?: string | null | undefined;
|
|
2682
|
+
icon?: string | undefined;
|
|
2683
|
+
description?: string | undefined;
|
|
2684
|
+
config?: {
|
|
2685
|
+
label?: string | null | undefined;
|
|
2686
|
+
repeat?: boolean | undefined;
|
|
2687
|
+
fields?: Record<string, {
|
|
2688
|
+
type: "Boolean";
|
|
2689
|
+
config?: {
|
|
2690
|
+
label?: string | null | undefined;
|
|
2691
|
+
default_value?: boolean | undefined;
|
|
2692
|
+
placeholder_true?: string | undefined;
|
|
2693
|
+
placeholder_false?: string | undefined;
|
|
2694
|
+
} | undefined;
|
|
2695
|
+
} | {
|
|
2696
|
+
type: "Color";
|
|
2697
|
+
fieldset?: string | null | undefined;
|
|
2698
|
+
config?: {
|
|
2699
|
+
label?: string | null | undefined;
|
|
2700
|
+
placeholder?: string | undefined;
|
|
2701
|
+
} | undefined;
|
|
2702
|
+
} | {
|
|
2703
|
+
type: "Date";
|
|
2704
|
+
fieldset?: string | null | undefined;
|
|
2705
|
+
config?: {
|
|
2706
|
+
label?: string | null | undefined;
|
|
2707
|
+
placeholder?: string | undefined;
|
|
2708
|
+
default?: string | undefined;
|
|
2709
|
+
} | undefined;
|
|
2710
|
+
} | {
|
|
2711
|
+
type: "Embed";
|
|
2712
|
+
fieldset?: string | null | undefined;
|
|
2713
|
+
config?: {
|
|
2714
|
+
label?: string | null | undefined;
|
|
2715
|
+
placeholder?: string | undefined;
|
|
2716
|
+
useAsTitle?: boolean | undefined;
|
|
2717
|
+
} | undefined;
|
|
2718
|
+
} | {
|
|
2719
|
+
type: "GeoPoint";
|
|
2720
|
+
fieldset?: string | null | undefined;
|
|
2721
|
+
config?: {
|
|
2722
|
+
label?: string | null | undefined;
|
|
2723
|
+
} | undefined;
|
|
2724
|
+
} | {
|
|
2725
|
+
type: "Image";
|
|
2726
|
+
fieldset?: string | null | undefined;
|
|
2727
|
+
config?: {
|
|
2728
|
+
label?: string | null | undefined;
|
|
2729
|
+
placeholder?: string | undefined;
|
|
2730
|
+
constraint?: {
|
|
2731
|
+
width?: number | null | undefined;
|
|
2732
|
+
height?: number | null | undefined;
|
|
2733
|
+
} | undefined;
|
|
2734
|
+
thumbnails?: {
|
|
2735
|
+
name: string;
|
|
2736
|
+
width?: number | null | undefined;
|
|
2737
|
+
height?: number | null | undefined;
|
|
2738
|
+
}[] | undefined;
|
|
2739
|
+
} | undefined;
|
|
2740
|
+
} | {
|
|
2741
|
+
type: "IntegrationFields";
|
|
2742
|
+
fieldset?: string | null | undefined;
|
|
2743
|
+
config?: {
|
|
2744
|
+
label?: string | null | undefined;
|
|
2745
|
+
placeholder?: string | undefined;
|
|
2746
|
+
catalog?: string | undefined;
|
|
2747
|
+
} | undefined;
|
|
2748
|
+
} | {
|
|
2749
|
+
type: "Link";
|
|
2750
|
+
fieldset?: string | null | undefined;
|
|
2751
|
+
config?: {
|
|
2752
|
+
label?: string | null | undefined;
|
|
2753
|
+
useAsTitle?: boolean | undefined;
|
|
2754
|
+
placeholder?: string | undefined;
|
|
2755
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
2756
|
+
customtypes?: (string | {
|
|
2757
|
+
id: string;
|
|
2758
|
+
fields: (string | {
|
|
2759
|
+
id: string;
|
|
2760
|
+
customtypes: (string | {
|
|
2761
|
+
id: string;
|
|
2762
|
+
fields: (string | {
|
|
2763
|
+
id: string;
|
|
2764
|
+
fields: string[];
|
|
2765
|
+
})[];
|
|
2766
|
+
})[];
|
|
2767
|
+
} | {
|
|
2768
|
+
id: string;
|
|
2769
|
+
fields: (string | {
|
|
2770
|
+
id: string;
|
|
2771
|
+
customtypes: (string | {
|
|
2772
|
+
id: string;
|
|
2773
|
+
fields: (string | {
|
|
2774
|
+
id: string;
|
|
2775
|
+
fields: string[];
|
|
2776
|
+
})[];
|
|
2777
|
+
})[];
|
|
2778
|
+
})[];
|
|
2779
|
+
})[];
|
|
2780
|
+
})[] | undefined;
|
|
2781
|
+
masks?: string[] | undefined;
|
|
2782
|
+
tags?: string[] | undefined;
|
|
2783
|
+
allowTargetBlank?: boolean | undefined;
|
|
2784
|
+
allowText?: boolean | undefined;
|
|
2785
|
+
repeat?: boolean | undefined;
|
|
2786
|
+
variants?: string[] | undefined;
|
|
2787
|
+
} | undefined;
|
|
2788
|
+
} | {
|
|
2789
|
+
type: "Number";
|
|
2790
|
+
fieldset?: string | null | undefined;
|
|
2791
|
+
config?: {
|
|
2792
|
+
label?: string | null | undefined;
|
|
2793
|
+
placeholder?: string | undefined;
|
|
2794
|
+
min?: number | undefined;
|
|
2795
|
+
max?: number | undefined;
|
|
2796
|
+
step?: number | undefined;
|
|
2797
|
+
} | undefined;
|
|
2798
|
+
} | {
|
|
2799
|
+
type: "Range";
|
|
2800
|
+
fieldset?: string | null | undefined;
|
|
2801
|
+
config?: {
|
|
2802
|
+
label?: string | null | undefined;
|
|
2803
|
+
placeholder?: string | undefined;
|
|
2804
|
+
min?: number | undefined;
|
|
2805
|
+
max?: number | undefined;
|
|
2806
|
+
step?: number | undefined;
|
|
2807
|
+
} | undefined;
|
|
2808
|
+
} | {
|
|
2809
|
+
type: "StructuredText";
|
|
2810
|
+
fieldset?: string | null | undefined;
|
|
2811
|
+
config?: {
|
|
2812
|
+
label?: string | null | undefined;
|
|
2813
|
+
placeholder?: string | undefined;
|
|
2814
|
+
useAsTitle?: boolean | undefined;
|
|
2815
|
+
single?: string | undefined;
|
|
2816
|
+
multi?: string | undefined;
|
|
2817
|
+
imageConstraint?: {
|
|
2818
|
+
width?: number | null | undefined;
|
|
2819
|
+
height?: number | null | undefined;
|
|
2820
|
+
} | undefined;
|
|
2821
|
+
labels?: string[] | undefined;
|
|
2822
|
+
allowTargetBlank?: boolean | undefined;
|
|
2823
|
+
} | undefined;
|
|
2824
|
+
} | {
|
|
2825
|
+
type: "Select";
|
|
2826
|
+
fieldset?: string | null | undefined;
|
|
2827
|
+
config?: {
|
|
2828
|
+
label?: string | null | undefined;
|
|
2829
|
+
placeholder?: string | undefined;
|
|
2830
|
+
default_value?: string | undefined;
|
|
2831
|
+
options?: string[] | undefined;
|
|
2832
|
+
} | undefined;
|
|
2833
|
+
} | {
|
|
2834
|
+
type: "Separator";
|
|
2835
|
+
config?: {
|
|
2836
|
+
label?: string | null | undefined;
|
|
2837
|
+
} | undefined;
|
|
2838
|
+
} | {
|
|
2839
|
+
type: "Table";
|
|
2840
|
+
config?: {
|
|
2841
|
+
label?: string | null | undefined;
|
|
2842
|
+
} | undefined;
|
|
2843
|
+
} | {
|
|
2844
|
+
type: "Text";
|
|
2845
|
+
fieldset?: string | null | undefined;
|
|
2846
|
+
config?: {
|
|
2847
|
+
label?: string | null | undefined;
|
|
2848
|
+
useAsTitle?: boolean | undefined;
|
|
2849
|
+
placeholder?: string | undefined;
|
|
2850
|
+
} | undefined;
|
|
2851
|
+
} | {
|
|
2852
|
+
type: "Timestamp";
|
|
2853
|
+
fieldset?: string | null | undefined;
|
|
2854
|
+
config?: {
|
|
2855
|
+
label?: string | null | undefined;
|
|
2856
|
+
placeholder?: string | undefined;
|
|
2857
|
+
default?: string | undefined;
|
|
2858
|
+
} | undefined;
|
|
2859
|
+
}> | undefined;
|
|
2860
|
+
} | undefined;
|
|
2861
|
+
}> | undefined;
|
|
2862
|
+
} | undefined;
|
|
2863
|
+
}, unknown>>>>;
|
|
2864
|
+
items: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
2865
|
+
type: _$zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
2866
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2867
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2868
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2869
|
+
placeholder_true: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2870
|
+
placeholder_false: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2871
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2872
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2873
|
+
type: _$zod_mini0.ZodMiniLiteral<"Color">;
|
|
2874
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2875
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2876
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2877
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2878
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2879
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2880
|
+
type: _$zod_mini0.ZodMiniLiteral<"Date">;
|
|
2881
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2882
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2883
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2884
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2885
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2886
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2887
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2888
|
+
type: _$zod_mini0.ZodMiniLiteral<"Embed">;
|
|
2889
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2890
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2891
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2892
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2893
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2894
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2895
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2896
|
+
type: _$zod_mini0.ZodMiniLiteral<"GeoPoint">;
|
|
2897
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2898
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2899
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2900
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2901
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2902
|
+
type: _$zod_mini0.ZodMiniLiteral<"Image">;
|
|
2903
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2904
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2905
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2906
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2907
|
+
constraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2908
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2909
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2910
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2911
|
+
thumbnails: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniObject<{
|
|
2912
|
+
name: _$zod_mini0.ZodMiniString<string>;
|
|
2913
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2914
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2915
|
+
}, _$zod_v4_core0.$strip>>>;
|
|
2916
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2917
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2918
|
+
type: _$zod_mini0.ZodMiniLiteral<"IntegrationFields">;
|
|
2919
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2920
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2921
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2922
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2923
|
+
catalog: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2924
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2925
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2926
|
+
type: _$zod_mini0.ZodMiniLiteral<"Link">;
|
|
2927
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2928
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2929
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2930
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2931
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2932
|
+
select: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnknown, _$zod_mini0.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
|
|
2933
|
+
customtypes: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
2934
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2935
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
2936
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2937
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
2938
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2939
|
+
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
2940
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2941
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
2942
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2943
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>;
|
|
2944
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2945
|
+
}, _$zod_v4_core0.$strip>]>>;
|
|
2946
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2947
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2948
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2949
|
+
customtypes: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniObject<{
|
|
2950
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2951
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniObject<{
|
|
2952
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
2953
|
+
fields: _$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>;
|
|
2954
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2955
|
+
}, _$zod_v4_core0.$strip>]>>;
|
|
2956
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniString<string>]>>;
|
|
2957
|
+
}, _$zod_v4_core0.$strip>]>>>;
|
|
2958
|
+
masks: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
2959
|
+
tags: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>, _$zod_mini0.ZodMiniString<string>]>, _$zod_mini0.ZodMiniTransform<string[], string | string[]>>>;
|
|
2960
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2961
|
+
allowText: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2962
|
+
repeat: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2963
|
+
variants: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniString<string>>>;
|
|
2964
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2965
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2966
|
+
type: _$zod_mini0.ZodMiniLiteral<"Number">;
|
|
2967
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2968
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2969
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2970
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2971
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2972
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2973
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2974
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2975
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2976
|
+
type: _$zod_mini0.ZodMiniLiteral<"Range">;
|
|
2977
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2978
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2979
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2980
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2981
|
+
min: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2982
|
+
max: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2983
|
+
step: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniNumber<number>, _$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2984
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2985
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
2986
|
+
type: _$zod_mini0.ZodMiniLiteral<"StructuredText">;
|
|
2987
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2988
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2989
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
2990
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
2991
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2992
|
+
single: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
2993
|
+
multi: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniPipe<_$zod_mini0.ZodMiniUnion<readonly [_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniNull]>, _$zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
2994
|
+
imageConstraint: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
2995
|
+
width: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2996
|
+
height: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<number | null, unknown, _$zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2997
|
+
}, _$zod_v4_core0.$strip>>;
|
|
2998
|
+
labels: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniType<string[], unknown, _$zod_v4_core0.$ZodTypeInternals<string[], unknown>>>;
|
|
2999
|
+
allowTargetBlank: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3000
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3001
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3002
|
+
type: _$zod_mini0.ZodMiniLiteral<"Select">;
|
|
3003
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3004
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3005
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3006
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3007
|
+
default_value: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3008
|
+
options: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniArray<_$zod_mini0.ZodMiniType<string, unknown, _$zod_v4_core0.$ZodTypeInternals<string, unknown>>>>;
|
|
3009
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3010
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3011
|
+
type: _$zod_mini0.ZodMiniLiteral<"Separator">;
|
|
3012
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3013
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3014
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3015
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3016
|
+
type: _$zod_mini0.ZodMiniLiteral<"Table">;
|
|
3017
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3018
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3019
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3020
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3021
|
+
type: _$zod_mini0.ZodMiniLiteral<"Text">;
|
|
3022
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3023
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3024
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3025
|
+
useAsTitle: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
3026
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3027
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3028
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
3029
|
+
type: _$zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
3030
|
+
fieldset: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3031
|
+
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
3032
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
3033
|
+
placeholder: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3034
|
+
default: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3035
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3036
|
+
}, _$zod_v4_core0.$strip>], "type">>>;
|
|
3037
|
+
}, _$zod_v4_core0.$strip>>;
|
|
3038
|
+
description: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniString<string>>;
|
|
3039
|
+
legacyPaths: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniString<string>>>;
|
|
3040
|
+
}, _$zod_v4_core0.$strip>], "schema">;
|
|
2466
3041
|
declare const TableModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
2467
3042
|
type: _$zod_mini0.ZodMiniLiteral<"Table">;
|
|
2468
3043
|
config: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniObject<{
|
|
@@ -4366,7 +4941,7 @@ declare const StaticWidgetModelSchema: _$zod_mini0.ZodMiniType<StaticWidgetModel
|
|
|
4366
4941
|
declare const DynamicWidgetModelSchema: _$zod_mini0.ZodMiniType<DynamicWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicWidgetModel, unknown>>;
|
|
4367
4942
|
declare const StaticCustomTypeModelTabSchema: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<StaticWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<StaticWidgetModel, unknown>>>;
|
|
4368
4943
|
declare const DynamicCustomTypeModelTabSchema: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<DynamicWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicWidgetModel, unknown>>>;
|
|
4369
|
-
declare const StaticCustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
4944
|
+
declare const StaticCustomTypeModelSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
4370
4945
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
4371
4946
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4372
4947
|
repeatable: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
@@ -4376,8 +4951,20 @@ declare const StaticCustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
4376
4951
|
custom: "custom";
|
|
4377
4952
|
page: "page";
|
|
4378
4953
|
}>>;
|
|
4379
|
-
|
|
4380
|
-
|
|
4954
|
+
schema: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUndefined>;
|
|
4955
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4956
|
+
schema: _$zod_mini0.ZodMiniLiteral<"@prismicio/types-internal@4.5.0">;
|
|
4957
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4958
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4959
|
+
repeatable: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4960
|
+
json: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<StaticWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<StaticWidgetModel, unknown>>>>;
|
|
4961
|
+
status: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4962
|
+
format: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniEnum<{
|
|
4963
|
+
custom: "custom";
|
|
4964
|
+
page: "page";
|
|
4965
|
+
}>>;
|
|
4966
|
+
}, _$zod_v4_core0.$strip>], "schema">;
|
|
4967
|
+
declare const DynamicCustomTypeModelSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
4381
4968
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
4382
4969
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4383
4970
|
repeatable: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
@@ -4387,9 +4974,21 @@ declare const DynamicCustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
4387
4974
|
custom: "custom";
|
|
4388
4975
|
page: "page";
|
|
4389
4976
|
}>>;
|
|
4390
|
-
|
|
4977
|
+
schema: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUndefined>;
|
|
4978
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
4979
|
+
schema: _$zod_mini0.ZodMiniLiteral<"@prismicio/types-internal@4.5.0">;
|
|
4980
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
4981
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4982
|
+
repeatable: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4983
|
+
json: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<DynamicWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicWidgetModel, unknown>>>>;
|
|
4984
|
+
status: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
4985
|
+
format: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniEnum<{
|
|
4986
|
+
custom: "custom";
|
|
4987
|
+
page: "page";
|
|
4988
|
+
}>>;
|
|
4989
|
+
}, _$zod_v4_core0.$strip>], "schema">;
|
|
4391
4990
|
/** @deprecated Use DynamicCustomTypeModelSchema instead */
|
|
4392
|
-
declare const CustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
4991
|
+
declare const CustomTypeModelSchema: _$zod_mini0.ZodMiniDiscriminatedUnion<[_$zod_mini0.ZodMiniObject<{
|
|
4393
4992
|
id: _$zod_mini0.ZodMiniString<string>;
|
|
4394
4993
|
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
4395
4994
|
repeatable: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
@@ -4399,7 +4998,19 @@ declare const CustomTypeModelSchema: _$zod_mini0.ZodMiniObject<{
|
|
|
4399
4998
|
custom: "custom";
|
|
4400
4999
|
page: "page";
|
|
4401
5000
|
}>>;
|
|
4402
|
-
|
|
5001
|
+
schema: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniUndefined>;
|
|
5002
|
+
}, _$zod_v4_core0.$strip>, _$zod_mini0.ZodMiniObject<{
|
|
5003
|
+
schema: _$zod_mini0.ZodMiniLiteral<"@prismicio/types-internal@4.5.0">;
|
|
5004
|
+
id: _$zod_mini0.ZodMiniString<string>;
|
|
5005
|
+
label: _$zod_mini0.ZodMiniOptional<_$zod_mini0.ZodMiniNullable<_$zod_mini0.ZodMiniString<string>>>;
|
|
5006
|
+
repeatable: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
5007
|
+
json: _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniRecord<_$zod_mini0.ZodMiniString<string>, _$zod_mini0.ZodMiniType<DynamicWidgetModel, unknown, _$zod_v4_core0.$ZodTypeInternals<DynamicWidgetModel, unknown>>>>;
|
|
5008
|
+
status: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniBoolean<boolean>>;
|
|
5009
|
+
format: _$zod_mini0.ZodMiniDefault<_$zod_mini0.ZodMiniEnum<{
|
|
5010
|
+
custom: "custom";
|
|
5011
|
+
page: "page";
|
|
5012
|
+
}>>;
|
|
5013
|
+
}, _$zod_v4_core0.$strip>], "schema">;
|
|
4403
5014
|
//#endregion
|
|
4404
5015
|
export { AssetSchema, BooleanContentSchema, BooleanModelSchema, ColorContentSchema, ColorModelSchema, CompositeSliceContentSchema, CompositeSliceItemContentSchema, CompositeSliceModelSchema, CustomTypeModelSchema, DateContentSchema, DateModelSchema, DocumentContentSchema, DynamicCustomTypeModelSchema, DynamicCustomTypeModelTabSchema, DynamicSliceModelSchema, DynamicSlicesModelSchema, DynamicWidgetModelSchema, EmbedContentSchema, EmbedModelSchema, EmbedSchema, EmptyContentSchema, EmptyLinkContentSchema, FieldContentSchema, FilledLinkContentSchema, GeoPointContentSchema, GeoPointModelSchema, GroupContentSchema, GroupItemContentSchema, GroupModelSchema, HexaColorCodeSchema, ImageContentSchema, ImageContentViewSchema, ImageModelSchema, IntegrationFieldContentSchema, IntegrationFieldModelSchema, LegacySliceContentSchema, LegacySliceItemContentSchema, LegacySliceModelSchema, LinkContentSchema, LinkModelSchema, NestableContentSchema, NestableModelSchema, NestedGroupModelSchema, NonEmptyStringSchema, NumberContentSchema, NumberModelSchema, RangeContentSchema, RangeModelSchema, RepeatableContentSchema, RichTextContentBlockSchema, RichTextContentSchema, RichTextContentSpanSchema, RichTextModelSchema, SelectContentSchema, SelectModelSchema, SeparatorContentSchema, SeparatorModelSchema, SharedSliceContentSchema, SharedSliceItemContentSchema, SharedSliceModelSchema, SharedSliceModelVariationSchema, SharedSliceRefModelSchema, SliceContentModelSchema, SliceContentSchema, SliceItemContentSchema, SlicesContentSchema, StaticCustomTypeModelSchema, StaticCustomTypeModelTabSchema, StaticSliceModelSchema, StaticSlicesModelSchema, StaticWidgetModelSchema, TableContentSchema, TableModelSchema, TextContentSchema, TextModelSchema, TimestampContentSchema, TimestampModelSchema, UIDContentSchema, UIDModelSchema, WidgetContentSchema, WidgetKeySchema };
|
|
4405
5016
|
//# sourceMappingURL=zod4.d.ts.map
|