run formatter

This commit is contained in:
Dax Raad
2025-05-31 14:41:00 -04:00
parent 6df19f1828
commit 3b746162d2
52 changed files with 1376 additions and 1390 deletions

View File

@@ -1,4 +1,4 @@
import z from "zod";
import z from "zod"
export namespace Provider {
export const Model = z
@@ -18,8 +18,8 @@ export namespace Provider {
})
.openapi({
ref: "Provider.Model",
});
export type Model = z.output<typeof Model>;
})
export type Model = z.output<typeof Model>
export const Info = z
.object({
@@ -30,6 +30,6 @@ export namespace Provider {
})
.openapi({
ref: "Provider.Info",
});
export type Info = z.output<typeof Info>;
})
export type Info = z.output<typeof Info>
}