Skip to content

Commit

Permalink
fix(ff-api): rename dest
Browse files Browse the repository at this point in the history
  • Loading branch information
njfamirm committed Dec 14, 2022
1 parent dd10b72 commit 5589ef4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion uniquely/flight-finder-api/demo.http
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Content-Type: application/json
{
"detail": {
"origin": "KIH",
"dest": "THR",
"destination": "THR",
"date": "1401/09/10",
"seatCount": 1,
"maxPrice": null,
Expand Down
2 changes: 1 addition & 1 deletion uniquely/flight-finder-api/src/lib/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface Job extends AlwatrDocumentObject {

export interface JobDetail extends Record<string, unknown> {
origin: string;
dest: string;
destination: string;
date: string;
seatCount: number;
maxPrice: number | null;
Expand Down

0 comments on commit 5589ef4

Please sign in to comment.