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 36155c3 commit 92ebb6bCopy full SHA for 92ebb6b
packages/openapi-ts-tests/main/test/__snapshots__/3.1.x/time-format/valibot.gen.ts
@@ -0,0 +1,20 @@
1
+// This file is auto-generated by @hey-api/openapi-ts
2
+
3
+import * as v from 'valibot';
4
5
+export const vGetSearchData = v.object({
6
+ body: v.optional(v.never()),
7
+ path: v.optional(v.never()),
8
+ query: v.object({
9
+ start_time: v.optional(v.pipe(v.string(), v.isoTime())),
10
+ end_time: v.pipe(v.string(), v.isoTime())
11
+ })
12
+});
13
14
+/**
15
+ * Success
16
+ */
17
+export const vGetSearchResponse = v.object({
18
+ result: v.optional(v.string()),
19
+ scheduled_time: v.optional(v.pipe(v.string(), v.isoTime()))
20
0 commit comments