-
Essentially what I'm looking for would be something akin to this:
```typescript
const Inputs = Z.object({
email: Z.string().email(),
password: Z.string().min(8),
username: Z.string().min(…
-
I feel like the API for declaring parameters could be simplified, it seems a bit verbose:
```js
apiBuilder({
path: '/marketplaces/:id/transactions',
method: 'get',
alias: 'getMarketplaceT…
-
👋 Hello, it's me again!
What do you think on adding a helper function which can infer the response shape of an alias?
For example I have the following client configured:
```typescript
export…
-
It's me again!
I've got a small issue which I'm hoping isn't a pain to resolve.
Essentially when performing a transform on a schema for a parameter, it seemingly infers the incorrect type. I've …
-
I'm really liking this library so far. For context I'm creating a web app which acts essentially as an aggregator for other API's and Zodios is doing a lot of the heavy lifting for me, so firstly than…
-
Is there a way to generate all OpenApi component schemas and export them (without hashed names)?
In the Pet Store example, there are 8 component schemas.
https://github.com/astahmer/openapi-zod-cl…
-
Hi there! First, I'd like to thank you for this library. I have been using it for some time and I love it!
I have been working with API, which requires passing an Organization ID within the endpoin…