@prismicio/types-internal 4.0.0-pr.7.9dec8db → 4.0.0-pr.9.e09af2c
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/boolean.d.ts.map +1 -1
- package/dist/content/boolean.js.map +1 -1
- package/dist/content/field.d.ts.map +1 -1
- package/dist/content/field.js +1 -1
- package/dist/content/field.js.map +1 -1
- package/dist/content/group.d.ts.map +1 -1
- package/dist/content/group.js.map +1 -1
- package/dist/content/nestable.d.ts.map +1 -1
- package/dist/content/nestable.js.map +1 -1
- package/dist/helpers/traverseContent.d.ts +4 -4
- package/dist/helpers/traverseContent.d.ts.map +1 -1
- package/dist/helpers/traverseContent.js +4 -2
- package/dist/helpers/traverseContent.js.map +1 -1
- package/dist/helpers/traverseContentWithModel.d.ts +4 -4
- package/dist/helpers/withDefaultContent.d.ts +17 -0
- package/dist/helpers/withDefaultContent.d.ts.map +1 -0
- package/dist/helpers/withDefaultContent.js +113 -0
- package/dist/helpers/withDefaultContent.js.map +1 -0
- package/dist/index.d.ts +21 -20
- package/dist/index.js +2 -1
- package/dist/io-ts.d.ts +1067 -322
- package/dist/io-ts.d.ts.map +1 -1
- package/dist/io-ts.js +3 -2
- package/dist/io-ts.js.map +1 -1
- package/dist/model/slice.d.ts +1251 -643
- package/dist/model/slice.d.ts.map +1 -1
- package/dist/model/slice.js +4 -4
- package/dist/model/slice.js.map +1 -1
- package/dist/model/widget.d.ts +1 -3
- package/dist/model/widget.d.ts.map +1 -1
- package/dist/model/widget.js +5 -2
- package/dist/model/widget.js.map +1 -1
- package/dist/zod4.d.ts +909 -322
- package/dist/zod4.d.ts.map +1 -1
- package/dist/zod4.js +3 -2
- package/dist/zod4.js.map +1 -1
- package/package.json +1 -1
- package/src/content/boolean.ts +0 -13
- package/src/content/field.ts +0 -14
- package/src/content/group.ts +1 -54
- package/src/content/nestable.ts +1 -20
- package/src/helpers/traverseContent.ts +4 -1
- package/src/helpers/withDefaultContent.ts +173 -0
- package/src/index.ts +3 -1
- package/src/io-ts.ts +2 -0
- package/src/model/diff/sharedSlice.ts +2 -2
- package/src/model/diff/variation.ts +7 -7
- package/src/model/slice.ts +6 -8
- package/src/model/widget.ts +6 -2
- package/src/zod4.ts +2 -0
- package/src/content/withDefaultValues.ts +0 -114
package/dist/zod4.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { NestableModel } from "./model/nestable.js";
|
|
2
1
|
import { FieldContent } from "./content/field.js";
|
|
3
2
|
import { LinkValueContent } from "./content/link.js";
|
|
4
3
|
import { RichTextContent, RichTextContentBlock, RichTextContentSpan } from "./content/richText.js";
|
|
@@ -6,6 +5,7 @@ import { NestableContent } from "./content/nestable.js";
|
|
|
6
5
|
import { GroupItemContent, NestableAndGroupContent } from "./content/group.js";
|
|
7
6
|
import { SliceContent } from "./content/slice.js";
|
|
8
7
|
import { WidgetContent } from "./content/widget.js";
|
|
8
|
+
import { NestableModel } from "./model/nestable.js";
|
|
9
9
|
import { DynamicSliceModel, LegacySliceModel, SliceContentModel, StaticSliceModel } from "./model/slice.js";
|
|
10
10
|
import { DynamicWidgetModel, StaticWidgetModel } from "./model/widget.js";
|
|
11
11
|
import * as zod_mini0 from "zod/mini";
|
|
@@ -778,177 +778,187 @@ declare const SharedSliceModelSchema: zod_mini0.ZodMiniObject<{
|
|
|
778
778
|
config?: {
|
|
779
779
|
label?: string | null | undefined;
|
|
780
780
|
repeat?: boolean | undefined;
|
|
781
|
-
fields?: Record<string, {
|
|
782
|
-
type: "
|
|
783
|
-
config?: {
|
|
784
|
-
label?: string | null | undefined;
|
|
785
|
-
default_value?: boolean | undefined;
|
|
786
|
-
placeholder_true?: string | undefined;
|
|
787
|
-
placeholder_false?: string | undefined;
|
|
788
|
-
} | undefined;
|
|
789
|
-
} | {
|
|
790
|
-
type: "Color";
|
|
791
|
-
fieldset?: string | null | undefined;
|
|
792
|
-
config?: {
|
|
793
|
-
label?: string | null | undefined;
|
|
794
|
-
placeholder?: string | undefined;
|
|
795
|
-
} | undefined;
|
|
796
|
-
} | {
|
|
797
|
-
type: "Date";
|
|
798
|
-
fieldset?: string | null | undefined;
|
|
799
|
-
config?: {
|
|
800
|
-
label?: string | null | undefined;
|
|
801
|
-
placeholder?: string | undefined;
|
|
802
|
-
default?: string | undefined;
|
|
803
|
-
} | undefined;
|
|
804
|
-
} | {
|
|
805
|
-
type: "Embed";
|
|
806
|
-
fieldset?: string | null | undefined;
|
|
807
|
-
config?: {
|
|
808
|
-
label?: string | null | undefined;
|
|
809
|
-
placeholder?: string | undefined;
|
|
810
|
-
useAsTitle?: boolean | undefined;
|
|
811
|
-
} | undefined;
|
|
812
|
-
} | {
|
|
813
|
-
type: "GeoPoint";
|
|
814
|
-
fieldset?: string | null | undefined;
|
|
815
|
-
config?: {
|
|
816
|
-
label?: string | null | undefined;
|
|
817
|
-
} | undefined;
|
|
818
|
-
} | {
|
|
819
|
-
type: "Image";
|
|
820
|
-
fieldset?: string | null | undefined;
|
|
821
|
-
config?: {
|
|
822
|
-
label?: string | null | undefined;
|
|
823
|
-
placeholder?: string | undefined;
|
|
824
|
-
constraint?: {
|
|
825
|
-
width?: number | null | undefined;
|
|
826
|
-
height?: number | null | undefined;
|
|
827
|
-
} | undefined;
|
|
828
|
-
thumbnails?: {
|
|
829
|
-
name: string;
|
|
830
|
-
width?: number | null | undefined;
|
|
831
|
-
height?: number | null | undefined;
|
|
832
|
-
}[] | undefined;
|
|
833
|
-
} | undefined;
|
|
834
|
-
} | {
|
|
835
|
-
type: "IntegrationFields";
|
|
836
|
-
fieldset?: string | null | undefined;
|
|
837
|
-
config?: {
|
|
838
|
-
label?: string | null | undefined;
|
|
839
|
-
placeholder?: string | undefined;
|
|
840
|
-
catalog?: string | undefined;
|
|
841
|
-
} | undefined;
|
|
842
|
-
} | {
|
|
843
|
-
type: "Link";
|
|
781
|
+
fields?: Record<string, NestableModel | {
|
|
782
|
+
type: "Group";
|
|
844
783
|
fieldset?: string | null | undefined;
|
|
784
|
+
icon?: string | undefined;
|
|
785
|
+
description?: string | undefined;
|
|
845
786
|
config?: {
|
|
846
787
|
label?: string | null | undefined;
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
788
|
+
repeat?: boolean | undefined;
|
|
789
|
+
fields?: Record<string, {
|
|
790
|
+
type: "Boolean";
|
|
791
|
+
config?: {
|
|
792
|
+
label?: string | null | undefined;
|
|
793
|
+
default_value?: boolean | undefined;
|
|
794
|
+
placeholder_true?: string | undefined;
|
|
795
|
+
placeholder_false?: string | undefined;
|
|
796
|
+
} | undefined;
|
|
797
|
+
} | {
|
|
798
|
+
type: "Color";
|
|
799
|
+
fieldset?: string | null | undefined;
|
|
800
|
+
config?: {
|
|
801
|
+
label?: string | null | undefined;
|
|
802
|
+
placeholder?: string | undefined;
|
|
803
|
+
} | undefined;
|
|
804
|
+
} | {
|
|
805
|
+
type: "Date";
|
|
806
|
+
fieldset?: string | null | undefined;
|
|
807
|
+
config?: {
|
|
808
|
+
label?: string | null | undefined;
|
|
809
|
+
placeholder?: string | undefined;
|
|
810
|
+
default?: string | undefined;
|
|
811
|
+
} | undefined;
|
|
812
|
+
} | {
|
|
813
|
+
type: "Embed";
|
|
814
|
+
fieldset?: string | null | undefined;
|
|
815
|
+
config?: {
|
|
816
|
+
label?: string | null | undefined;
|
|
817
|
+
placeholder?: string | undefined;
|
|
818
|
+
useAsTitle?: boolean | undefined;
|
|
819
|
+
} | undefined;
|
|
820
|
+
} | {
|
|
821
|
+
type: "GeoPoint";
|
|
822
|
+
fieldset?: string | null | undefined;
|
|
823
|
+
config?: {
|
|
824
|
+
label?: string | null | undefined;
|
|
825
|
+
} | undefined;
|
|
826
|
+
} | {
|
|
827
|
+
type: "Image";
|
|
828
|
+
fieldset?: string | null | undefined;
|
|
829
|
+
config?: {
|
|
830
|
+
label?: string | null | undefined;
|
|
831
|
+
placeholder?: string | undefined;
|
|
832
|
+
constraint?: {
|
|
833
|
+
width?: number | null | undefined;
|
|
834
|
+
height?: number | null | undefined;
|
|
835
|
+
} | undefined;
|
|
836
|
+
thumbnails?: {
|
|
837
|
+
name: string;
|
|
838
|
+
width?: number | null | undefined;
|
|
839
|
+
height?: number | null | undefined;
|
|
840
|
+
}[] | undefined;
|
|
841
|
+
} | undefined;
|
|
842
|
+
} | {
|
|
843
|
+
type: "IntegrationFields";
|
|
844
|
+
fieldset?: string | null | undefined;
|
|
845
|
+
config?: {
|
|
846
|
+
label?: string | null | undefined;
|
|
847
|
+
placeholder?: string | undefined;
|
|
848
|
+
catalog?: string | undefined;
|
|
849
|
+
} | undefined;
|
|
850
|
+
} | {
|
|
851
|
+
type: "Link";
|
|
852
|
+
fieldset?: string | null | undefined;
|
|
853
|
+
config?: {
|
|
854
|
+
label?: string | null | undefined;
|
|
855
|
+
useAsTitle?: boolean | undefined;
|
|
856
|
+
placeholder?: string | undefined;
|
|
857
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
858
|
+
customtypes?: (string | {
|
|
855
859
|
id: string;
|
|
856
860
|
fields: (string | {
|
|
857
861
|
id: string;
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
862
|
+
customtypes: (string | {
|
|
863
|
+
id: string;
|
|
864
|
+
fields: (string | {
|
|
865
|
+
id: string;
|
|
866
|
+
fields: string[];
|
|
867
|
+
})[];
|
|
868
|
+
})[];
|
|
869
|
+
} | {
|
|
866
870
|
id: string;
|
|
867
871
|
fields: (string | {
|
|
868
872
|
id: string;
|
|
869
|
-
|
|
873
|
+
customtypes: (string | {
|
|
874
|
+
id: string;
|
|
875
|
+
fields: (string | {
|
|
876
|
+
id: string;
|
|
877
|
+
fields: string[];
|
|
878
|
+
})[];
|
|
879
|
+
})[];
|
|
870
880
|
})[];
|
|
871
881
|
})[];
|
|
872
|
-
})[];
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
882
|
+
})[] | undefined;
|
|
883
|
+
masks?: string[] | undefined;
|
|
884
|
+
tags?: string[] | undefined;
|
|
885
|
+
allowTargetBlank?: boolean | undefined;
|
|
886
|
+
allowText?: boolean | undefined;
|
|
887
|
+
repeat?: boolean | undefined;
|
|
888
|
+
variants?: string[] | undefined;
|
|
889
|
+
} | undefined;
|
|
890
|
+
} | {
|
|
891
|
+
type: "Number";
|
|
892
|
+
fieldset?: string | null | undefined;
|
|
893
|
+
config?: {
|
|
894
|
+
label?: string | null | undefined;
|
|
895
|
+
placeholder?: string | undefined;
|
|
896
|
+
min?: number | undefined;
|
|
897
|
+
max?: number | undefined;
|
|
898
|
+
step?: number | undefined;
|
|
899
|
+
} | undefined;
|
|
900
|
+
} | {
|
|
901
|
+
type: "Range";
|
|
902
|
+
fieldset?: string | null | undefined;
|
|
903
|
+
config?: {
|
|
904
|
+
label?: string | null | undefined;
|
|
905
|
+
placeholder?: string | undefined;
|
|
906
|
+
min?: number | undefined;
|
|
907
|
+
max?: number | undefined;
|
|
908
|
+
step?: number | undefined;
|
|
909
|
+
} | undefined;
|
|
910
|
+
} | {
|
|
911
|
+
type: "StructuredText";
|
|
912
|
+
fieldset?: string | null | undefined;
|
|
913
|
+
config?: {
|
|
914
|
+
label?: string | null | undefined;
|
|
915
|
+
placeholder?: string | undefined;
|
|
916
|
+
useAsTitle?: boolean | undefined;
|
|
917
|
+
single?: string | undefined;
|
|
918
|
+
multi?: string | undefined;
|
|
919
|
+
imageConstraint?: {
|
|
920
|
+
width?: number | null | undefined;
|
|
921
|
+
height?: number | null | undefined;
|
|
922
|
+
} | undefined;
|
|
923
|
+
labels?: string[] | undefined;
|
|
924
|
+
allowTargetBlank?: boolean | undefined;
|
|
925
|
+
} | undefined;
|
|
926
|
+
} | {
|
|
927
|
+
type: "Select";
|
|
928
|
+
fieldset?: string | null | undefined;
|
|
929
|
+
config?: {
|
|
930
|
+
label?: string | null | undefined;
|
|
931
|
+
placeholder?: string | undefined;
|
|
932
|
+
default_value?: string | undefined;
|
|
933
|
+
options?: string[] | undefined;
|
|
934
|
+
} | undefined;
|
|
935
|
+
} | {
|
|
936
|
+
type: "Separator";
|
|
937
|
+
config?: {
|
|
938
|
+
label?: string | null | undefined;
|
|
939
|
+
} | undefined;
|
|
940
|
+
} | {
|
|
941
|
+
type: "Table";
|
|
942
|
+
config?: {
|
|
943
|
+
label?: string | null | undefined;
|
|
944
|
+
} | undefined;
|
|
945
|
+
} | {
|
|
946
|
+
type: "Text";
|
|
947
|
+
fieldset?: string | null | undefined;
|
|
948
|
+
config?: {
|
|
949
|
+
label?: string | null | undefined;
|
|
950
|
+
useAsTitle?: boolean | undefined;
|
|
951
|
+
placeholder?: string | undefined;
|
|
952
|
+
} | undefined;
|
|
953
|
+
} | {
|
|
954
|
+
type: "Timestamp";
|
|
955
|
+
fieldset?: string | null | undefined;
|
|
956
|
+
config?: {
|
|
957
|
+
label?: string | null | undefined;
|
|
958
|
+
placeholder?: string | undefined;
|
|
959
|
+
default?: string | undefined;
|
|
960
|
+
} | undefined;
|
|
961
|
+
}> | undefined;
|
|
952
962
|
} | undefined;
|
|
953
963
|
}> | undefined;
|
|
954
964
|
} | undefined;
|
|
@@ -960,177 +970,187 @@ declare const SharedSliceModelSchema: zod_mini0.ZodMiniObject<{
|
|
|
960
970
|
config?: {
|
|
961
971
|
label?: string | null | undefined;
|
|
962
972
|
repeat?: boolean | undefined;
|
|
963
|
-
fields?: Record<string, {
|
|
964
|
-
type: "
|
|
965
|
-
config?: {
|
|
966
|
-
label?: string | null | undefined;
|
|
967
|
-
default_value?: boolean | undefined;
|
|
968
|
-
placeholder_true?: string | undefined;
|
|
969
|
-
placeholder_false?: string | undefined;
|
|
970
|
-
} | undefined;
|
|
971
|
-
} | {
|
|
972
|
-
type: "Color";
|
|
973
|
-
fieldset?: string | null | undefined;
|
|
974
|
-
config?: {
|
|
975
|
-
label?: string | null | undefined;
|
|
976
|
-
placeholder?: string | undefined;
|
|
977
|
-
} | undefined;
|
|
978
|
-
} | {
|
|
979
|
-
type: "Date";
|
|
980
|
-
fieldset?: string | null | undefined;
|
|
981
|
-
config?: {
|
|
982
|
-
label?: string | null | undefined;
|
|
983
|
-
placeholder?: string | undefined;
|
|
984
|
-
default?: string | undefined;
|
|
985
|
-
} | undefined;
|
|
986
|
-
} | {
|
|
987
|
-
type: "Embed";
|
|
988
|
-
fieldset?: string | null | undefined;
|
|
989
|
-
config?: {
|
|
990
|
-
label?: string | null | undefined;
|
|
991
|
-
placeholder?: string | undefined;
|
|
992
|
-
useAsTitle?: boolean | undefined;
|
|
993
|
-
} | undefined;
|
|
994
|
-
} | {
|
|
995
|
-
type: "GeoPoint";
|
|
996
|
-
fieldset?: string | null | undefined;
|
|
997
|
-
config?: {
|
|
998
|
-
label?: string | null | undefined;
|
|
999
|
-
} | undefined;
|
|
1000
|
-
} | {
|
|
1001
|
-
type: "Image";
|
|
1002
|
-
fieldset?: string | null | undefined;
|
|
1003
|
-
config?: {
|
|
1004
|
-
label?: string | null | undefined;
|
|
1005
|
-
placeholder?: string | undefined;
|
|
1006
|
-
constraint?: {
|
|
1007
|
-
width?: number | null | undefined;
|
|
1008
|
-
height?: number | null | undefined;
|
|
1009
|
-
} | undefined;
|
|
1010
|
-
thumbnails?: {
|
|
1011
|
-
name: string;
|
|
1012
|
-
width?: number | null | undefined;
|
|
1013
|
-
height?: number | null | undefined;
|
|
1014
|
-
}[] | undefined;
|
|
1015
|
-
} | undefined;
|
|
1016
|
-
} | {
|
|
1017
|
-
type: "IntegrationFields";
|
|
1018
|
-
fieldset?: string | null | undefined;
|
|
1019
|
-
config?: {
|
|
1020
|
-
label?: string | null | undefined;
|
|
1021
|
-
placeholder?: string | undefined;
|
|
1022
|
-
catalog?: string | undefined;
|
|
1023
|
-
} | undefined;
|
|
1024
|
-
} | {
|
|
1025
|
-
type: "Link";
|
|
973
|
+
fields?: Record<string, NestableModel | {
|
|
974
|
+
type: "Group";
|
|
1026
975
|
fieldset?: string | null | undefined;
|
|
976
|
+
icon?: string | undefined;
|
|
977
|
+
description?: string | undefined;
|
|
1027
978
|
config?: {
|
|
1028
979
|
label?: string | null | undefined;
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
980
|
+
repeat?: boolean | undefined;
|
|
981
|
+
fields?: Record<string, {
|
|
982
|
+
type: "Boolean";
|
|
983
|
+
config?: {
|
|
984
|
+
label?: string | null | undefined;
|
|
985
|
+
default_value?: boolean | undefined;
|
|
986
|
+
placeholder_true?: string | undefined;
|
|
987
|
+
placeholder_false?: string | undefined;
|
|
988
|
+
} | undefined;
|
|
989
|
+
} | {
|
|
990
|
+
type: "Color";
|
|
991
|
+
fieldset?: string | null | undefined;
|
|
992
|
+
config?: {
|
|
993
|
+
label?: string | null | undefined;
|
|
994
|
+
placeholder?: string | undefined;
|
|
995
|
+
} | undefined;
|
|
996
|
+
} | {
|
|
997
|
+
type: "Date";
|
|
998
|
+
fieldset?: string | null | undefined;
|
|
999
|
+
config?: {
|
|
1000
|
+
label?: string | null | undefined;
|
|
1001
|
+
placeholder?: string | undefined;
|
|
1002
|
+
default?: string | undefined;
|
|
1003
|
+
} | undefined;
|
|
1004
|
+
} | {
|
|
1005
|
+
type: "Embed";
|
|
1006
|
+
fieldset?: string | null | undefined;
|
|
1007
|
+
config?: {
|
|
1008
|
+
label?: string | null | undefined;
|
|
1009
|
+
placeholder?: string | undefined;
|
|
1010
|
+
useAsTitle?: boolean | undefined;
|
|
1011
|
+
} | undefined;
|
|
1012
|
+
} | {
|
|
1013
|
+
type: "GeoPoint";
|
|
1014
|
+
fieldset?: string | null | undefined;
|
|
1015
|
+
config?: {
|
|
1016
|
+
label?: string | null | undefined;
|
|
1017
|
+
} | undefined;
|
|
1018
|
+
} | {
|
|
1019
|
+
type: "Image";
|
|
1020
|
+
fieldset?: string | null | undefined;
|
|
1021
|
+
config?: {
|
|
1022
|
+
label?: string | null | undefined;
|
|
1023
|
+
placeholder?: string | undefined;
|
|
1024
|
+
constraint?: {
|
|
1025
|
+
width?: number | null | undefined;
|
|
1026
|
+
height?: number | null | undefined;
|
|
1027
|
+
} | undefined;
|
|
1028
|
+
thumbnails?: {
|
|
1029
|
+
name: string;
|
|
1030
|
+
width?: number | null | undefined;
|
|
1031
|
+
height?: number | null | undefined;
|
|
1032
|
+
}[] | undefined;
|
|
1033
|
+
} | undefined;
|
|
1034
|
+
} | {
|
|
1035
|
+
type: "IntegrationFields";
|
|
1036
|
+
fieldset?: string | null | undefined;
|
|
1037
|
+
config?: {
|
|
1038
|
+
label?: string | null | undefined;
|
|
1039
|
+
placeholder?: string | undefined;
|
|
1040
|
+
catalog?: string | undefined;
|
|
1041
|
+
} | undefined;
|
|
1042
|
+
} | {
|
|
1043
|
+
type: "Link";
|
|
1044
|
+
fieldset?: string | null | undefined;
|
|
1045
|
+
config?: {
|
|
1046
|
+
label?: string | null | undefined;
|
|
1047
|
+
useAsTitle?: boolean | undefined;
|
|
1048
|
+
placeholder?: string | undefined;
|
|
1049
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
1050
|
+
customtypes?: (string | {
|
|
1037
1051
|
id: string;
|
|
1038
1052
|
fields: (string | {
|
|
1039
1053
|
id: string;
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1054
|
+
customtypes: (string | {
|
|
1055
|
+
id: string;
|
|
1056
|
+
fields: (string | {
|
|
1057
|
+
id: string;
|
|
1058
|
+
fields: string[];
|
|
1059
|
+
})[];
|
|
1060
|
+
})[];
|
|
1061
|
+
} | {
|
|
1048
1062
|
id: string;
|
|
1049
1063
|
fields: (string | {
|
|
1050
1064
|
id: string;
|
|
1051
|
-
|
|
1065
|
+
customtypes: (string | {
|
|
1066
|
+
id: string;
|
|
1067
|
+
fields: (string | {
|
|
1068
|
+
id: string;
|
|
1069
|
+
fields: string[];
|
|
1070
|
+
})[];
|
|
1071
|
+
})[];
|
|
1052
1072
|
})[];
|
|
1053
1073
|
})[];
|
|
1054
|
-
})[];
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1074
|
+
})[] | undefined;
|
|
1075
|
+
masks?: string[] | undefined;
|
|
1076
|
+
tags?: string[] | undefined;
|
|
1077
|
+
allowTargetBlank?: boolean | undefined;
|
|
1078
|
+
allowText?: boolean | undefined;
|
|
1079
|
+
repeat?: boolean | undefined;
|
|
1080
|
+
variants?: string[] | undefined;
|
|
1081
|
+
} | undefined;
|
|
1082
|
+
} | {
|
|
1083
|
+
type: "Number";
|
|
1084
|
+
fieldset?: string | null | undefined;
|
|
1085
|
+
config?: {
|
|
1086
|
+
label?: string | null | undefined;
|
|
1087
|
+
placeholder?: string | undefined;
|
|
1088
|
+
min?: number | undefined;
|
|
1089
|
+
max?: number | undefined;
|
|
1090
|
+
step?: number | undefined;
|
|
1091
|
+
} | undefined;
|
|
1092
|
+
} | {
|
|
1093
|
+
type: "Range";
|
|
1094
|
+
fieldset?: string | null | undefined;
|
|
1095
|
+
config?: {
|
|
1096
|
+
label?: string | null | undefined;
|
|
1097
|
+
placeholder?: string | undefined;
|
|
1098
|
+
min?: number | undefined;
|
|
1099
|
+
max?: number | undefined;
|
|
1100
|
+
step?: number | undefined;
|
|
1101
|
+
} | undefined;
|
|
1102
|
+
} | {
|
|
1103
|
+
type: "StructuredText";
|
|
1104
|
+
fieldset?: string | null | undefined;
|
|
1105
|
+
config?: {
|
|
1106
|
+
label?: string | null | undefined;
|
|
1107
|
+
placeholder?: string | undefined;
|
|
1108
|
+
useAsTitle?: boolean | undefined;
|
|
1109
|
+
single?: string | undefined;
|
|
1110
|
+
multi?: string | undefined;
|
|
1111
|
+
imageConstraint?: {
|
|
1112
|
+
width?: number | null | undefined;
|
|
1113
|
+
height?: number | null | undefined;
|
|
1114
|
+
} | undefined;
|
|
1115
|
+
labels?: string[] | undefined;
|
|
1116
|
+
allowTargetBlank?: boolean | undefined;
|
|
1117
|
+
} | undefined;
|
|
1118
|
+
} | {
|
|
1119
|
+
type: "Select";
|
|
1120
|
+
fieldset?: string | null | undefined;
|
|
1121
|
+
config?: {
|
|
1122
|
+
label?: string | null | undefined;
|
|
1123
|
+
placeholder?: string | undefined;
|
|
1124
|
+
default_value?: string | undefined;
|
|
1125
|
+
options?: string[] | undefined;
|
|
1126
|
+
} | undefined;
|
|
1127
|
+
} | {
|
|
1128
|
+
type: "Separator";
|
|
1129
|
+
config?: {
|
|
1130
|
+
label?: string | null | undefined;
|
|
1131
|
+
} | undefined;
|
|
1132
|
+
} | {
|
|
1133
|
+
type: "Table";
|
|
1134
|
+
config?: {
|
|
1135
|
+
label?: string | null | undefined;
|
|
1136
|
+
} | undefined;
|
|
1137
|
+
} | {
|
|
1138
|
+
type: "Text";
|
|
1139
|
+
fieldset?: string | null | undefined;
|
|
1140
|
+
config?: {
|
|
1141
|
+
label?: string | null | undefined;
|
|
1142
|
+
useAsTitle?: boolean | undefined;
|
|
1143
|
+
placeholder?: string | undefined;
|
|
1144
|
+
} | undefined;
|
|
1145
|
+
} | {
|
|
1146
|
+
type: "Timestamp";
|
|
1147
|
+
fieldset?: string | null | undefined;
|
|
1148
|
+
config?: {
|
|
1149
|
+
label?: string | null | undefined;
|
|
1150
|
+
placeholder?: string | undefined;
|
|
1151
|
+
default?: string | undefined;
|
|
1152
|
+
} | undefined;
|
|
1153
|
+
}> | undefined;
|
|
1134
1154
|
} | undefined;
|
|
1135
1155
|
}> | undefined;
|
|
1136
1156
|
} | undefined;
|
|
@@ -1903,6 +1923,573 @@ declare const NestedGroupModelSchema: zod_mini0.ZodMiniObject<{
|
|
|
1903
1923
|
}, zod_v4_core0.$strip>]>>>;
|
|
1904
1924
|
}, zod_v4_core0.$strip>>;
|
|
1905
1925
|
}, zod_v4_core0.$strip>;
|
|
1926
|
+
declare const SharedSliceModelVariationSchema: zod_mini0.ZodMiniObject<{
|
|
1927
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
1928
|
+
name: zod_mini0.ZodMiniString<string>;
|
|
1929
|
+
description: zod_mini0.ZodMiniString<string>;
|
|
1930
|
+
imageUrl: zod_mini0.ZodMiniDefault<zod_mini0.ZodMiniString<string>>;
|
|
1931
|
+
docURL: zod_mini0.ZodMiniString<string>;
|
|
1932
|
+
version: zod_mini0.ZodMiniString<string>;
|
|
1933
|
+
display: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
1934
|
+
primary: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniRecord<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniType<NestableModel | {
|
|
1935
|
+
type: "Group";
|
|
1936
|
+
fieldset?: string | null | undefined;
|
|
1937
|
+
icon?: string | undefined;
|
|
1938
|
+
description?: string | undefined;
|
|
1939
|
+
config?: {
|
|
1940
|
+
label?: string | null | undefined;
|
|
1941
|
+
repeat?: boolean | undefined;
|
|
1942
|
+
fields?: Record<string, NestableModel | {
|
|
1943
|
+
type: "Group";
|
|
1944
|
+
fieldset?: string | null | undefined;
|
|
1945
|
+
icon?: string | undefined;
|
|
1946
|
+
description?: string | undefined;
|
|
1947
|
+
config?: {
|
|
1948
|
+
label?: string | null | undefined;
|
|
1949
|
+
repeat?: boolean | undefined;
|
|
1950
|
+
fields?: Record<string, {
|
|
1951
|
+
type: "Boolean";
|
|
1952
|
+
config?: {
|
|
1953
|
+
label?: string | null | undefined;
|
|
1954
|
+
default_value?: boolean | undefined;
|
|
1955
|
+
placeholder_true?: string | undefined;
|
|
1956
|
+
placeholder_false?: string | undefined;
|
|
1957
|
+
} | undefined;
|
|
1958
|
+
} | {
|
|
1959
|
+
type: "Color";
|
|
1960
|
+
fieldset?: string | null | undefined;
|
|
1961
|
+
config?: {
|
|
1962
|
+
label?: string | null | undefined;
|
|
1963
|
+
placeholder?: string | undefined;
|
|
1964
|
+
} | undefined;
|
|
1965
|
+
} | {
|
|
1966
|
+
type: "Date";
|
|
1967
|
+
fieldset?: string | null | undefined;
|
|
1968
|
+
config?: {
|
|
1969
|
+
label?: string | null | undefined;
|
|
1970
|
+
placeholder?: string | undefined;
|
|
1971
|
+
default?: string | undefined;
|
|
1972
|
+
} | undefined;
|
|
1973
|
+
} | {
|
|
1974
|
+
type: "Embed";
|
|
1975
|
+
fieldset?: string | null | undefined;
|
|
1976
|
+
config?: {
|
|
1977
|
+
label?: string | null | undefined;
|
|
1978
|
+
placeholder?: string | undefined;
|
|
1979
|
+
useAsTitle?: boolean | undefined;
|
|
1980
|
+
} | undefined;
|
|
1981
|
+
} | {
|
|
1982
|
+
type: "GeoPoint";
|
|
1983
|
+
fieldset?: string | null | undefined;
|
|
1984
|
+
config?: {
|
|
1985
|
+
label?: string | null | undefined;
|
|
1986
|
+
} | undefined;
|
|
1987
|
+
} | {
|
|
1988
|
+
type: "Image";
|
|
1989
|
+
fieldset?: string | null | undefined;
|
|
1990
|
+
config?: {
|
|
1991
|
+
label?: string | null | undefined;
|
|
1992
|
+
placeholder?: string | undefined;
|
|
1993
|
+
constraint?: {
|
|
1994
|
+
width?: number | null | undefined;
|
|
1995
|
+
height?: number | null | undefined;
|
|
1996
|
+
} | undefined;
|
|
1997
|
+
thumbnails?: {
|
|
1998
|
+
name: string;
|
|
1999
|
+
width?: number | null | undefined;
|
|
2000
|
+
height?: number | null | undefined;
|
|
2001
|
+
}[] | undefined;
|
|
2002
|
+
} | undefined;
|
|
2003
|
+
} | {
|
|
2004
|
+
type: "IntegrationFields";
|
|
2005
|
+
fieldset?: string | null | undefined;
|
|
2006
|
+
config?: {
|
|
2007
|
+
label?: string | null | undefined;
|
|
2008
|
+
placeholder?: string | undefined;
|
|
2009
|
+
catalog?: string | undefined;
|
|
2010
|
+
} | undefined;
|
|
2011
|
+
} | {
|
|
2012
|
+
type: "Link";
|
|
2013
|
+
fieldset?: string | null | undefined;
|
|
2014
|
+
config?: {
|
|
2015
|
+
label?: string | null | undefined;
|
|
2016
|
+
useAsTitle?: boolean | undefined;
|
|
2017
|
+
placeholder?: string | undefined;
|
|
2018
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
2019
|
+
customtypes?: (string | {
|
|
2020
|
+
id: string;
|
|
2021
|
+
fields: (string | {
|
|
2022
|
+
id: string;
|
|
2023
|
+
customtypes: (string | {
|
|
2024
|
+
id: string;
|
|
2025
|
+
fields: (string | {
|
|
2026
|
+
id: string;
|
|
2027
|
+
fields: string[];
|
|
2028
|
+
})[];
|
|
2029
|
+
})[];
|
|
2030
|
+
} | {
|
|
2031
|
+
id: string;
|
|
2032
|
+
fields: (string | {
|
|
2033
|
+
id: string;
|
|
2034
|
+
customtypes: (string | {
|
|
2035
|
+
id: string;
|
|
2036
|
+
fields: (string | {
|
|
2037
|
+
id: string;
|
|
2038
|
+
fields: string[];
|
|
2039
|
+
})[];
|
|
2040
|
+
})[];
|
|
2041
|
+
})[];
|
|
2042
|
+
})[];
|
|
2043
|
+
})[] | undefined;
|
|
2044
|
+
masks?: string[] | undefined;
|
|
2045
|
+
tags?: string[] | undefined;
|
|
2046
|
+
allowTargetBlank?: boolean | undefined;
|
|
2047
|
+
allowText?: boolean | undefined;
|
|
2048
|
+
repeat?: boolean | undefined;
|
|
2049
|
+
variants?: string[] | undefined;
|
|
2050
|
+
} | undefined;
|
|
2051
|
+
} | {
|
|
2052
|
+
type: "Number";
|
|
2053
|
+
fieldset?: string | null | undefined;
|
|
2054
|
+
config?: {
|
|
2055
|
+
label?: string | null | undefined;
|
|
2056
|
+
placeholder?: string | undefined;
|
|
2057
|
+
min?: number | undefined;
|
|
2058
|
+
max?: number | undefined;
|
|
2059
|
+
step?: number | undefined;
|
|
2060
|
+
} | undefined;
|
|
2061
|
+
} | {
|
|
2062
|
+
type: "Range";
|
|
2063
|
+
fieldset?: string | null | undefined;
|
|
2064
|
+
config?: {
|
|
2065
|
+
label?: string | null | undefined;
|
|
2066
|
+
placeholder?: string | undefined;
|
|
2067
|
+
min?: number | undefined;
|
|
2068
|
+
max?: number | undefined;
|
|
2069
|
+
step?: number | undefined;
|
|
2070
|
+
} | undefined;
|
|
2071
|
+
} | {
|
|
2072
|
+
type: "StructuredText";
|
|
2073
|
+
fieldset?: string | null | undefined;
|
|
2074
|
+
config?: {
|
|
2075
|
+
label?: string | null | undefined;
|
|
2076
|
+
placeholder?: string | undefined;
|
|
2077
|
+
useAsTitle?: boolean | undefined;
|
|
2078
|
+
single?: string | undefined;
|
|
2079
|
+
multi?: string | undefined;
|
|
2080
|
+
imageConstraint?: {
|
|
2081
|
+
width?: number | null | undefined;
|
|
2082
|
+
height?: number | null | undefined;
|
|
2083
|
+
} | undefined;
|
|
2084
|
+
labels?: string[] | undefined;
|
|
2085
|
+
allowTargetBlank?: boolean | undefined;
|
|
2086
|
+
} | undefined;
|
|
2087
|
+
} | {
|
|
2088
|
+
type: "Select";
|
|
2089
|
+
fieldset?: string | null | undefined;
|
|
2090
|
+
config?: {
|
|
2091
|
+
label?: string | null | undefined;
|
|
2092
|
+
placeholder?: string | undefined;
|
|
2093
|
+
default_value?: string | undefined;
|
|
2094
|
+
options?: string[] | undefined;
|
|
2095
|
+
} | undefined;
|
|
2096
|
+
} | {
|
|
2097
|
+
type: "Separator";
|
|
2098
|
+
config?: {
|
|
2099
|
+
label?: string | null | undefined;
|
|
2100
|
+
} | undefined;
|
|
2101
|
+
} | {
|
|
2102
|
+
type: "Table";
|
|
2103
|
+
config?: {
|
|
2104
|
+
label?: string | null | undefined;
|
|
2105
|
+
} | undefined;
|
|
2106
|
+
} | {
|
|
2107
|
+
type: "Text";
|
|
2108
|
+
fieldset?: string | null | undefined;
|
|
2109
|
+
config?: {
|
|
2110
|
+
label?: string | null | undefined;
|
|
2111
|
+
useAsTitle?: boolean | undefined;
|
|
2112
|
+
placeholder?: string | undefined;
|
|
2113
|
+
} | undefined;
|
|
2114
|
+
} | {
|
|
2115
|
+
type: "Timestamp";
|
|
2116
|
+
fieldset?: string | null | undefined;
|
|
2117
|
+
config?: {
|
|
2118
|
+
label?: string | null | undefined;
|
|
2119
|
+
placeholder?: string | undefined;
|
|
2120
|
+
default?: string | undefined;
|
|
2121
|
+
} | undefined;
|
|
2122
|
+
}> | undefined;
|
|
2123
|
+
} | undefined;
|
|
2124
|
+
}> | undefined;
|
|
2125
|
+
} | undefined;
|
|
2126
|
+
}, unknown, zod_v4_core0.$ZodTypeInternals<NestableModel | {
|
|
2127
|
+
type: "Group";
|
|
2128
|
+
fieldset?: string | null | undefined;
|
|
2129
|
+
icon?: string | undefined;
|
|
2130
|
+
description?: string | undefined;
|
|
2131
|
+
config?: {
|
|
2132
|
+
label?: string | null | undefined;
|
|
2133
|
+
repeat?: boolean | undefined;
|
|
2134
|
+
fields?: Record<string, NestableModel | {
|
|
2135
|
+
type: "Group";
|
|
2136
|
+
fieldset?: string | null | undefined;
|
|
2137
|
+
icon?: string | undefined;
|
|
2138
|
+
description?: string | undefined;
|
|
2139
|
+
config?: {
|
|
2140
|
+
label?: string | null | undefined;
|
|
2141
|
+
repeat?: boolean | undefined;
|
|
2142
|
+
fields?: Record<string, {
|
|
2143
|
+
type: "Boolean";
|
|
2144
|
+
config?: {
|
|
2145
|
+
label?: string | null | undefined;
|
|
2146
|
+
default_value?: boolean | undefined;
|
|
2147
|
+
placeholder_true?: string | undefined;
|
|
2148
|
+
placeholder_false?: string | undefined;
|
|
2149
|
+
} | undefined;
|
|
2150
|
+
} | {
|
|
2151
|
+
type: "Color";
|
|
2152
|
+
fieldset?: string | null | undefined;
|
|
2153
|
+
config?: {
|
|
2154
|
+
label?: string | null | undefined;
|
|
2155
|
+
placeholder?: string | undefined;
|
|
2156
|
+
} | undefined;
|
|
2157
|
+
} | {
|
|
2158
|
+
type: "Date";
|
|
2159
|
+
fieldset?: string | null | undefined;
|
|
2160
|
+
config?: {
|
|
2161
|
+
label?: string | null | undefined;
|
|
2162
|
+
placeholder?: string | undefined;
|
|
2163
|
+
default?: string | undefined;
|
|
2164
|
+
} | undefined;
|
|
2165
|
+
} | {
|
|
2166
|
+
type: "Embed";
|
|
2167
|
+
fieldset?: string | null | undefined;
|
|
2168
|
+
config?: {
|
|
2169
|
+
label?: string | null | undefined;
|
|
2170
|
+
placeholder?: string | undefined;
|
|
2171
|
+
useAsTitle?: boolean | undefined;
|
|
2172
|
+
} | undefined;
|
|
2173
|
+
} | {
|
|
2174
|
+
type: "GeoPoint";
|
|
2175
|
+
fieldset?: string | null | undefined;
|
|
2176
|
+
config?: {
|
|
2177
|
+
label?: string | null | undefined;
|
|
2178
|
+
} | undefined;
|
|
2179
|
+
} | {
|
|
2180
|
+
type: "Image";
|
|
2181
|
+
fieldset?: string | null | undefined;
|
|
2182
|
+
config?: {
|
|
2183
|
+
label?: string | null | undefined;
|
|
2184
|
+
placeholder?: string | undefined;
|
|
2185
|
+
constraint?: {
|
|
2186
|
+
width?: number | null | undefined;
|
|
2187
|
+
height?: number | null | undefined;
|
|
2188
|
+
} | undefined;
|
|
2189
|
+
thumbnails?: {
|
|
2190
|
+
name: string;
|
|
2191
|
+
width?: number | null | undefined;
|
|
2192
|
+
height?: number | null | undefined;
|
|
2193
|
+
}[] | undefined;
|
|
2194
|
+
} | undefined;
|
|
2195
|
+
} | {
|
|
2196
|
+
type: "IntegrationFields";
|
|
2197
|
+
fieldset?: string | null | undefined;
|
|
2198
|
+
config?: {
|
|
2199
|
+
label?: string | null | undefined;
|
|
2200
|
+
placeholder?: string | undefined;
|
|
2201
|
+
catalog?: string | undefined;
|
|
2202
|
+
} | undefined;
|
|
2203
|
+
} | {
|
|
2204
|
+
type: "Link";
|
|
2205
|
+
fieldset?: string | null | undefined;
|
|
2206
|
+
config?: {
|
|
2207
|
+
label?: string | null | undefined;
|
|
2208
|
+
useAsTitle?: boolean | undefined;
|
|
2209
|
+
placeholder?: string | undefined;
|
|
2210
|
+
select?: "media" | "document" | "web" | null | undefined;
|
|
2211
|
+
customtypes?: (string | {
|
|
2212
|
+
id: string;
|
|
2213
|
+
fields: (string | {
|
|
2214
|
+
id: string;
|
|
2215
|
+
customtypes: (string | {
|
|
2216
|
+
id: string;
|
|
2217
|
+
fields: (string | {
|
|
2218
|
+
id: string;
|
|
2219
|
+
fields: string[];
|
|
2220
|
+
})[];
|
|
2221
|
+
})[];
|
|
2222
|
+
} | {
|
|
2223
|
+
id: string;
|
|
2224
|
+
fields: (string | {
|
|
2225
|
+
id: string;
|
|
2226
|
+
customtypes: (string | {
|
|
2227
|
+
id: string;
|
|
2228
|
+
fields: (string | {
|
|
2229
|
+
id: string;
|
|
2230
|
+
fields: string[];
|
|
2231
|
+
})[];
|
|
2232
|
+
})[];
|
|
2233
|
+
})[];
|
|
2234
|
+
})[];
|
|
2235
|
+
})[] | undefined;
|
|
2236
|
+
masks?: string[] | undefined;
|
|
2237
|
+
tags?: string[] | undefined;
|
|
2238
|
+
allowTargetBlank?: boolean | undefined;
|
|
2239
|
+
allowText?: boolean | undefined;
|
|
2240
|
+
repeat?: boolean | undefined;
|
|
2241
|
+
variants?: string[] | undefined;
|
|
2242
|
+
} | undefined;
|
|
2243
|
+
} | {
|
|
2244
|
+
type: "Number";
|
|
2245
|
+
fieldset?: string | null | undefined;
|
|
2246
|
+
config?: {
|
|
2247
|
+
label?: string | null | undefined;
|
|
2248
|
+
placeholder?: string | undefined;
|
|
2249
|
+
min?: number | undefined;
|
|
2250
|
+
max?: number | undefined;
|
|
2251
|
+
step?: number | undefined;
|
|
2252
|
+
} | undefined;
|
|
2253
|
+
} | {
|
|
2254
|
+
type: "Range";
|
|
2255
|
+
fieldset?: string | null | undefined;
|
|
2256
|
+
config?: {
|
|
2257
|
+
label?: string | null | undefined;
|
|
2258
|
+
placeholder?: string | undefined;
|
|
2259
|
+
min?: number | undefined;
|
|
2260
|
+
max?: number | undefined;
|
|
2261
|
+
step?: number | undefined;
|
|
2262
|
+
} | undefined;
|
|
2263
|
+
} | {
|
|
2264
|
+
type: "StructuredText";
|
|
2265
|
+
fieldset?: string | null | undefined;
|
|
2266
|
+
config?: {
|
|
2267
|
+
label?: string | null | undefined;
|
|
2268
|
+
placeholder?: string | undefined;
|
|
2269
|
+
useAsTitle?: boolean | undefined;
|
|
2270
|
+
single?: string | undefined;
|
|
2271
|
+
multi?: string | undefined;
|
|
2272
|
+
imageConstraint?: {
|
|
2273
|
+
width?: number | null | undefined;
|
|
2274
|
+
height?: number | null | undefined;
|
|
2275
|
+
} | undefined;
|
|
2276
|
+
labels?: string[] | undefined;
|
|
2277
|
+
allowTargetBlank?: boolean | undefined;
|
|
2278
|
+
} | undefined;
|
|
2279
|
+
} | {
|
|
2280
|
+
type: "Select";
|
|
2281
|
+
fieldset?: string | null | undefined;
|
|
2282
|
+
config?: {
|
|
2283
|
+
label?: string | null | undefined;
|
|
2284
|
+
placeholder?: string | undefined;
|
|
2285
|
+
default_value?: string | undefined;
|
|
2286
|
+
options?: string[] | undefined;
|
|
2287
|
+
} | undefined;
|
|
2288
|
+
} | {
|
|
2289
|
+
type: "Separator";
|
|
2290
|
+
config?: {
|
|
2291
|
+
label?: string | null | undefined;
|
|
2292
|
+
} | undefined;
|
|
2293
|
+
} | {
|
|
2294
|
+
type: "Table";
|
|
2295
|
+
config?: {
|
|
2296
|
+
label?: string | null | undefined;
|
|
2297
|
+
} | undefined;
|
|
2298
|
+
} | {
|
|
2299
|
+
type: "Text";
|
|
2300
|
+
fieldset?: string | null | undefined;
|
|
2301
|
+
config?: {
|
|
2302
|
+
label?: string | null | undefined;
|
|
2303
|
+
useAsTitle?: boolean | undefined;
|
|
2304
|
+
placeholder?: string | undefined;
|
|
2305
|
+
} | undefined;
|
|
2306
|
+
} | {
|
|
2307
|
+
type: "Timestamp";
|
|
2308
|
+
fieldset?: string | null | undefined;
|
|
2309
|
+
config?: {
|
|
2310
|
+
label?: string | null | undefined;
|
|
2311
|
+
placeholder?: string | undefined;
|
|
2312
|
+
default?: string | undefined;
|
|
2313
|
+
} | undefined;
|
|
2314
|
+
}> | undefined;
|
|
2315
|
+
} | undefined;
|
|
2316
|
+
}> | undefined;
|
|
2317
|
+
} | undefined;
|
|
2318
|
+
}, unknown>>>>;
|
|
2319
|
+
items: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniRecord<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniObject<{
|
|
2320
|
+
type: zod_mini0.ZodMiniLiteral<"Boolean">;
|
|
2321
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2322
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2323
|
+
default_value: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2324
|
+
placeholder_true: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2325
|
+
placeholder_false: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2326
|
+
}, zod_v4_core0.$strip>>;
|
|
2327
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2328
|
+
type: zod_mini0.ZodMiniLiteral<"Color">;
|
|
2329
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2330
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2331
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2332
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2333
|
+
}, zod_v4_core0.$strip>>;
|
|
2334
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2335
|
+
type: zod_mini0.ZodMiniLiteral<"Date">;
|
|
2336
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2337
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2338
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2339
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2340
|
+
default: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2341
|
+
}, zod_v4_core0.$strip>>;
|
|
2342
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2343
|
+
type: zod_mini0.ZodMiniLiteral<"Embed">;
|
|
2344
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2345
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2346
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2347
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2348
|
+
useAsTitle: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2349
|
+
}, zod_v4_core0.$strip>>;
|
|
2350
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2351
|
+
type: zod_mini0.ZodMiniLiteral<"GeoPoint">;
|
|
2352
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2353
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2354
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2355
|
+
}, zod_v4_core0.$strip>>;
|
|
2356
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2357
|
+
type: zod_mini0.ZodMiniLiteral<"Image">;
|
|
2358
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2359
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2360
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2361
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2362
|
+
constraint: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2363
|
+
width: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniType<number | null, unknown, zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2364
|
+
height: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniType<number | null, unknown, zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2365
|
+
}, zod_v4_core0.$strip>>;
|
|
2366
|
+
thumbnails: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniArray<zod_mini0.ZodMiniObject<{
|
|
2367
|
+
name: zod_mini0.ZodMiniString<string>;
|
|
2368
|
+
width: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniType<number | null, unknown, zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2369
|
+
height: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniType<number | null, unknown, zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2370
|
+
}, zod_v4_core0.$strip>>>;
|
|
2371
|
+
}, zod_v4_core0.$strip>>;
|
|
2372
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2373
|
+
type: zod_mini0.ZodMiniLiteral<"IntegrationFields">;
|
|
2374
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2375
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2376
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2377
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2378
|
+
catalog: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2379
|
+
}, zod_v4_core0.$strip>>;
|
|
2380
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2381
|
+
type: zod_mini0.ZodMiniLiteral<"Link">;
|
|
2382
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2383
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2384
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2385
|
+
useAsTitle: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2386
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2387
|
+
select: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniUnknown, zod_mini0.ZodMiniTransform<"media" | "document" | "web" | null, unknown>>>;
|
|
2388
|
+
customtypes: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniArray<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniObject<{
|
|
2389
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2390
|
+
fields: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniObject<{
|
|
2391
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2392
|
+
fields: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniObject<{
|
|
2393
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2394
|
+
customtypes: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniObject<{
|
|
2395
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2396
|
+
fields: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniObject<{
|
|
2397
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2398
|
+
fields: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniString<string>>;
|
|
2399
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniString<string>]>>;
|
|
2400
|
+
}, zod_v4_core0.$strip>]>>;
|
|
2401
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniString<string>]>>;
|
|
2402
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2403
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2404
|
+
customtypes: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniObject<{
|
|
2405
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2406
|
+
fields: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniObject<{
|
|
2407
|
+
id: zod_mini0.ZodMiniString<string>;
|
|
2408
|
+
fields: zod_mini0.ZodMiniArray<zod_mini0.ZodMiniString<string>>;
|
|
2409
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniString<string>]>>;
|
|
2410
|
+
}, zod_v4_core0.$strip>]>>;
|
|
2411
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniString<string>]>>;
|
|
2412
|
+
}, zod_v4_core0.$strip>]>>>;
|
|
2413
|
+
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[]>>>;
|
|
2414
|
+
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[]>>>;
|
|
2415
|
+
allowTargetBlank: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2416
|
+
allowText: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2417
|
+
repeat: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2418
|
+
variants: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniArray<zod_mini0.ZodMiniString<string>>>;
|
|
2419
|
+
}, zod_v4_core0.$strip>>;
|
|
2420
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2421
|
+
type: zod_mini0.ZodMiniLiteral<"Number">;
|
|
2422
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2423
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2424
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2425
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2426
|
+
min: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniNumber<number>, zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2427
|
+
max: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniNumber<number>, zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2428
|
+
step: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniNumber<number>, zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2429
|
+
}, zod_v4_core0.$strip>>;
|
|
2430
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2431
|
+
type: zod_mini0.ZodMiniLiteral<"Range">;
|
|
2432
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2433
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2434
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2435
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2436
|
+
min: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniNumber<number>, zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2437
|
+
max: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniNumber<number>, zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2438
|
+
step: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniNumber<number>, zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniTransform<number, string>>]>>;
|
|
2439
|
+
}, zod_v4_core0.$strip>>;
|
|
2440
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2441
|
+
type: zod_mini0.ZodMiniLiteral<"StructuredText">;
|
|
2442
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2443
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2444
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2445
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2446
|
+
useAsTitle: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2447
|
+
single: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniNull]>, zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
2448
|
+
multi: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniPipe<zod_mini0.ZodMiniUnion<readonly [zod_mini0.ZodMiniString<string>, zod_mini0.ZodMiniNull]>, zod_mini0.ZodMiniTransform<string, string | null>>>;
|
|
2449
|
+
imageConstraint: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2450
|
+
width: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniType<number | null, unknown, zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2451
|
+
height: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniType<number | null, unknown, zod_v4_core0.$ZodTypeInternals<number | null, unknown>>>;
|
|
2452
|
+
}, zod_v4_core0.$strip>>;
|
|
2453
|
+
labels: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniType<string[], unknown, zod_v4_core0.$ZodTypeInternals<string[], unknown>>>;
|
|
2454
|
+
allowTargetBlank: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2455
|
+
}, zod_v4_core0.$strip>>;
|
|
2456
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2457
|
+
type: zod_mini0.ZodMiniLiteral<"Select">;
|
|
2458
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2459
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2460
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2461
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2462
|
+
default_value: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2463
|
+
options: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniArray<zod_mini0.ZodMiniType<string, unknown, zod_v4_core0.$ZodTypeInternals<string, unknown>>>>;
|
|
2464
|
+
}, zod_v4_core0.$strip>>;
|
|
2465
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2466
|
+
type: zod_mini0.ZodMiniLiteral<"Separator">;
|
|
2467
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2468
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2469
|
+
}, zod_v4_core0.$strip>>;
|
|
2470
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2471
|
+
type: zod_mini0.ZodMiniLiteral<"Table">;
|
|
2472
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2473
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2474
|
+
}, zod_v4_core0.$strip>>;
|
|
2475
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2476
|
+
type: zod_mini0.ZodMiniLiteral<"Text">;
|
|
2477
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2478
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2479
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2480
|
+
useAsTitle: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniBoolean<boolean>>;
|
|
2481
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2482
|
+
}, zod_v4_core0.$strip>>;
|
|
2483
|
+
}, zod_v4_core0.$strip>, zod_mini0.ZodMiniObject<{
|
|
2484
|
+
type: zod_mini0.ZodMiniLiteral<"Timestamp">;
|
|
2485
|
+
fieldset: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2486
|
+
config: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniObject<{
|
|
2487
|
+
label: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniNullable<zod_mini0.ZodMiniString<string>>>;
|
|
2488
|
+
placeholder: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2489
|
+
default: zod_mini0.ZodMiniOptional<zod_mini0.ZodMiniString<string>>;
|
|
2490
|
+
}, zod_v4_core0.$strip>>;
|
|
2491
|
+
}, zod_v4_core0.$strip>]>>>;
|
|
2492
|
+
}, zod_v4_core0.$strip>;
|
|
1906
2493
|
declare const SharedSliceRefModelSchema: zod_mini0.ZodMiniObject<{
|
|
1907
2494
|
type: zod_mini0.ZodMiniLiteral<"SharedSlice">;
|
|
1908
2495
|
}, zod_v4_core0.$strip>;
|
|
@@ -2317,5 +2904,5 @@ declare const CustomTypeModelSchema: zod_mini0.ZodMiniObject<{
|
|
|
2317
2904
|
}>>;
|
|
2318
2905
|
}, zod_v4_core0.$strip>;
|
|
2319
2906
|
//#endregion
|
|
2320
|
-
export { AssetSchema, BooleanContentSchema, BooleanModelSchema, ColorContentSchema, ColorModelSchema, CompositeSliceContentSchema, CompositeSliceItemContentSchema, CompositeSliceModelSchema, CustomTypeModelSchema, DateContentSchema, DateModelSchema, DocumentContentSchema, DynamicSectionModelSchema, DynamicSliceModelSchema, DynamicSlicesModelSchema, DynamicWidgetModelSchema, EmbedContentSchema, EmbedModelSchema, EmbedSchema, EmptyContentSchema, FieldContentSchema, GeoPointContentSchema, GeoPointModelSchema, GroupContentSchema, GroupItemContentSchema, GroupModelSchema, HexaColorCodeSchema, ImageContentSchema, 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, SharedSliceRefModelSchema, SliceContentModelSchema, SliceContentSchema, SliceItemContentSchema, SlicesContentSchema, StaticCustomTypeModelSchema, StaticSectionModelSchema, StaticSliceModelSchema, StaticSlicesModelSchema, StaticWidgetModelSchema, TableContentSchema, TableModelSchema, TextContentSchema, TextModelSchema, TimestampContentSchema, TimestampModelSchema, UIDContentSchema, UIDModelSchema, WidgetContentSchema, WidgetKeySchema };
|
|
2907
|
+
export { AssetSchema, BooleanContentSchema, BooleanModelSchema, ColorContentSchema, ColorModelSchema, CompositeSliceContentSchema, CompositeSliceItemContentSchema, CompositeSliceModelSchema, CustomTypeModelSchema, DateContentSchema, DateModelSchema, DocumentContentSchema, DynamicSectionModelSchema, DynamicSliceModelSchema, DynamicSlicesModelSchema, DynamicWidgetModelSchema, EmbedContentSchema, EmbedModelSchema, EmbedSchema, EmptyContentSchema, FieldContentSchema, GeoPointContentSchema, GeoPointModelSchema, GroupContentSchema, GroupItemContentSchema, GroupModelSchema, HexaColorCodeSchema, ImageContentSchema, 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, StaticSectionModelSchema, StaticSliceModelSchema, StaticSlicesModelSchema, StaticWidgetModelSchema, TableContentSchema, TableModelSchema, TextContentSchema, TextModelSchema, TimestampContentSchema, TimestampModelSchema, UIDContentSchema, UIDModelSchema, WidgetContentSchema, WidgetKeySchema };
|
|
2321
2908
|
//# sourceMappingURL=zod4.d.ts.map
|