We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de01a0e commit 7690561Copy full SHA for 7690561
1 file changed
packages/openapi-ts/src/plugins/zod/mini/toAst/string.ts
@@ -36,6 +36,8 @@ function formatNode(ctx: StringResolverContext): Chain | undefined {
36
}
37
case 'email':
38
return $(z).attr(identifiers.email).call();
39
+ case 'guid':
40
+ return $(z).attr(identifiers.guid).call();
41
case 'ipv4':
42
return $(z).attr(identifiers.ipv4).call();
43
case 'ipv6':
@@ -44,8 +46,6 @@ function formatNode(ctx: StringResolverContext): Chain | undefined {
44
46
return $(z).attr(identifiers.iso).attr(identifiers.time).call();
45
47
case 'uri':
48
return $(z).attr(identifiers.url).call();
- case 'guid':
- return $(z).attr(identifiers.guid).call();
49
case 'uuid':
50
return $(z).attr(identifiers.uuid).call();
51
0 commit comments