You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.../*@valibot-migrate we can't detect if Schema2 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
.../*@valibot-migrate we can't detect if Schema5 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
24
+
Schema5.entries,
25
+
26
+
bar: v.string()
27
+
});
28
+
constSchema7=v.looseObject({
29
+
...v.looseObject({foo: v.string()}).entries,
30
+
bar: v.number()
31
+
});
32
+
constSchema8=v.looseObject({
33
+
.../*@valibot-migrate we can't detect if Schema2 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
.../*@valibot-migrate we can't detect if Schema10 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
47
+
Schema10.entries,
48
+
49
+
bar: v.string()
50
+
});
51
+
constSchema12=v.strictObject({
52
+
...v.strictObject({foo: v.string()}).entries,
53
+
bar: v.number()
54
+
});
55
+
constSchema13=v.strictObject({
56
+
.../*@valibot-migrate we can't detect if Schema2 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
.../*@valibot-migrate we can't detect if Schema15 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
70
+
Schema15.entries,
71
+
72
+
bar: v.string()
73
+
});
74
+
constSchema17=v.object({
75
+
foo: v.string(),
76
+
bar: v.number()
77
+
});
78
+
constSchema18=v.object({
79
+
.../*@valibot-migrate we can't detect if Schema2 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
.../*@valibot-migrate we can't detect if Schema20 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
93
+
Schema20.entries,
94
+
95
+
bar: v.string()
96
+
});
97
+
constSchema22=v.objectWithRest({
98
+
foo: v.string(),
99
+
bar: v.number()
100
+
},v.null());
101
+
constSchema23=v.objectWithRest({
102
+
.../*@valibot-migrate we can't detect if Schema2 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
103
+
Schema2.entries,
104
+
105
+
bar: v.string()
106
+
},v.null());
107
+
108
+
// i don't know which crazy person would do this, but it is valid
109
+
// and we support it so we might as well test it
110
+
constSchema24=v.object({
111
+
.../*@valibot-migrate we can't detect if Schema23 has a `pipe` operator, if it does you might need to migrate this by hand otherwise it will loose it's pipeline*/
0 commit comments