@atproto/xrpc
Advanced tools
Comparing version 0.6.6 to 0.6.7
# @atproto/xrpc | ||
## 0.6.7 | ||
### Patch Changes | ||
- [#3456](https://github.com/bluesky-social/atproto/pull/3456) [`fb64d50ee`](https://github.com/bluesky-social/atproto/commit/fb64d50ee220316b9f1183e5c3259629489734c9) Thanks [@matthieusieben](https://github.com/matthieusieben)! - Explicitly allow "undefined" values in `headers` | ||
## 0.6.6 | ||
@@ -4,0 +10,0 @@ |
import { z } from 'zod'; | ||
import { ValidationError } from '@atproto/lexicon'; | ||
export type QueryParams = Record<string, any>; | ||
export type HeadersMap = Record<string, string>; | ||
export type HeadersMap = Record<string, string | undefined>; | ||
export type { | ||
@@ -6,0 +6,0 @@ /** @deprecated not to be confused with the WHATWG Headers constructor */ |
{ | ||
"name": "@atproto/xrpc", | ||
"version": "0.6.6", | ||
"version": "0.6.7", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "atproto HTTP API (XRPC) client library", |
@@ -5,3 +5,3 @@ import { z } from 'zod' | ||
export type QueryParams = Record<string, any> | ||
export type HeadersMap = Record<string, string> | ||
export type HeadersMap = Record<string, string | undefined> | ||
@@ -8,0 +8,0 @@ export type { |
Sorry, the diff of this file is not supported yet
114424