Skip to content

Commit

Permalink
Hotfix: Query params (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eimantas committed Apr 9, 2019
1 parent 1272a56 commit 475200a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@reactway/api-builder",
"version": "1.0.0-alpha.3",
"version": "1.0.0-alpha.4",
"description": "An easy api client builder for applications with identity.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/contracts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export interface ApiConfiguration {
requestQueueLimit?: number;
}

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

export enum HttpMethods {
GET = "GET",
Expand Down

0 comments on commit 475200a

Please sign in to comment.