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 7690561 commit d14cdc4Copy full SHA for d14cdc4
1 file changed
packages/openapi-ts/src/plugins/zod/v4/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