Niccolò Belli
Niccolò Belli
### openapi-typescript version 7.6.1 ### Node.js version v20.17.0 ### OS + version Arch Linux ### Description   ``` export interface components { schemas: { BatchMappingItemRequest: { data: { /**...
### openapi-typescript version 7.6.1 ### Node.js version v20.17.0 ### OS + version Arch Linux ### Description   ```ts export interface operations { "mapping.configurations.index": { parameters: { query?: { sort_key?:...
### openapi-typescript version 7.6.0 ### Node.js version 20.17.0 ### OS + version Arch Linux ### Description openapi 3.1 json: ``` { "name": "metrics", "in": "query", "required": true, "schema": { "type":...
**Description** I want to create an Authentication interceptor that whenever the JWT token is expired aborts the requests since there is no need to to keep them alive if they're...
I want to use an external config like `eslint-config-love` in addition to `vuetifyjs/create`'s . Previously the following was enough (even though I had [some issues](https://github.com/mightyiam/eslint-config-love/discussions/1623#discussioncomment-12254262)): ```ts import eslintConfigLove from 'eslint-config-love'...
This project currently ships oidc-client-ts 2.x. Is there any eta for oidc-client-ts 3.x support?
### 问题类型 / Type of issues * 其它 / other ### 受影响的软件包 / Affected packages * zfs-linux-lts-poscat ---- Hi, I'm trying to boot Arch Linux with `sd-zfs` (from the zfs-linux-lts-poscat...
``` { type: 'string', format: 'binary', contentMediaType: 'application/octet-stream', maxLength: 20480 } ``` ``` const StoreChecklistTemplateRequest = z - .object({ description: z.string().max(255), file: z.instanceof(File).max(10240) }) + .object({ description: z.string().max(255), file: z.instanceof(File)...
Enum dependencies of circular schemas weren't getting proper TypeScript type annotations (`z.ZodType`), only object dependencies were. This resulted in enums being generated as `const Status = z.enum([...])` instead of `const...
### What happened? The generated JSON specification for enum arrays is potentially incorrect. ### How to reproduce the bug Take the following code: ``` class AnalyticsDataRequest extends FormRequest { /**...