Skip to content

Commit 475200a

Browse files
author
Eimantas
authored
Hotfix: Query params (#4)
1 parent 1272a56 commit 475200a

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@reactway/api-builder",
3-
"version": "1.0.0-alpha.3",
3+
"version": "1.0.0-alpha.4",
44
"description": "An easy api client builder for applications with identity.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/contracts.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export interface ApiConfiguration {
2929
requestQueueLimit?: number;
3030
}
3131

32-
export type QueryParams = { [key: string]: string | number | Array<string | number> };
32+
export type QueryParams = { [key: string]: string | number | Array<string | number> | null | undefined };
3333

3434
export enum HttpMethods {
3535
GET = "GET",

0 commit comments

Comments
 (0)