-
I also want to expose schema and type for parameters, it would be nice we pass pass a object schema to the builder.
for example
```ts
export type MyApiHeaderSchema = z.TypeOf
export const M…
-
Why the react hooks have the `ZodiosRequestOptions` as the first param? Wouldn't be more intuitive and cleaner if the `QueryOptions` comes first?
Now:
```ts
function use[Alias](config?: ZodiosR…
-
Given the following simple example:
```typescript
import { apiBuilder } from "@zodios/core";
import { zodiosApp } from "@zodios/express";
import { z } from "zod";
const api = apiBuilder({
…
-
Hello,
I notice that you could have multiple endpoint with the same alias but not with the same path.
When I have 2 paths identical I get an `Zodios: Duplicate path '${fullpath}'` error.
But …
-
I am trying to use this library for SvelteKit, which provides a special `fetch` function for SSR context (https://kit.svelte.dev/docs/web-standards#fetch-apis). Is it possible to support a `fetch` fun…
-
Returned type of `createQuery` of `@zodios/solid` in combination with transform is wrongly inferred.
```ts
const result = createQuery('get','/user', undefined, { select: ()=> ({ test: 'hello' }) }…
-
I have an external API with a yaml Schema that has all fields in snake case. Is there a way to transform the generated schemas from snake to camel case?
-
```
new Zodios(definitions, {
fetchConfig: {
credentials: 'include',
} as any,
});
```
I have to cast to any to skip type error, Not sure if this is the recommend way to add n…
-
Hi,
I would like to configure the `axiosConfig`, but I'm not able to do that without touching the generated file, which I don't want to. I want to keep it as source of truth to prevent future overr…
-
As far as I can tell, this seems like a nice alternative to openapi-typescript-codegen if I want type safety. I'm curious if it's possible to use a custom axios instance config?
https://github.com/…