@hey-api/client-fetch
Advanced tools
Comparing version 0.2.3 to 0.2.4
@@ -162,2 +162,2 @@ type ArrayStyle = 'form' | 'spaceDelimited' | 'pipeDelimited'; | ||
export { type Client, type Config, type Options, type RequestResult, createClient, createConfig, formDataBodySerializer, jsonBodySerializer, urlSearchParamsBodySerializer }; | ||
export { type BodySerializer, type Client, type Config, type Middleware, type Options, type QuerySerializer, type QuerySerializerOptions, type RequestOptions, type RequestOptionsBase, type RequestResult, createClient, createConfig, formDataBodySerializer, jsonBodySerializer, urlSearchParamsBodySerializer }; |
{ | ||
"name": "@hey-api/client-fetch", | ||
"version": "0.2.3", | ||
"version": "0.2.4", | ||
"type": "module", | ||
@@ -5,0 +5,0 @@ "description": "Typesafe Fetch API client for your @hey-api/openapi-ts types", |
@@ -24,2 +24,6 @@ <div align="center"> | ||
## Sponsoring | ||
Love Hey API? Please consider becoming a [sponsor](https://github.com/sponsors/mrlubos). | ||
## GitHub Integration (coming soon) | ||
@@ -26,0 +30,0 @@ |
export { createClient } from '../'; | ||
export type { Client, Config, Options, RequestResult } from '../types'; | ||
export type { | ||
Client, | ||
Config, | ||
Options, | ||
RequestOptions, | ||
RequestOptionsBase, | ||
RequestResult, | ||
} from '../types'; | ||
export { | ||
type BodySerializer, | ||
createConfig, | ||
formDataBodySerializer, | ||
jsonBodySerializer, | ||
type Middleware, | ||
type QuerySerializer, | ||
type QuerySerializerOptions, | ||
urlSearchParamsBodySerializer, | ||
} from '../utils'; |
@@ -156,3 +156,3 @@ import type { Config } from './types'; | ||
if (value instanceof Date) { | ||
return value.toISOString(); | ||
return `${name}=${value.toISOString()}`; | ||
} | ||
@@ -159,0 +159,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45984
1049
39