Skip to content

Commit

Permalink
fix: Client is optional in Booking
Browse files Browse the repository at this point in the history
  • Loading branch information
Bramvanosta committed Nov 10, 2019
1 parent 4e89f3f commit a71715b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "@vulpee/js-api",
"description": "A Javascript library with the different API's for Vulpee's services",
"version": "0.5.5",
"version": "0.5.6",
"main": "lib/index",
"module": "lib/index",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion src/types/Booking.ts
Expand Up @@ -4,7 +4,7 @@ interface Booking {
id: number;
startDate: string;
endDate: string;
client: Client;
client?: Client;
accommodation?: Accommodation;
rentals?: Rental[];
payments?: Payment[];
Expand Down

0 comments on commit a71715b

Please sign in to comment.