-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduce search query concept, property product extended info
- Loading branch information
Showing
19 changed files
with
375 additions
and
146 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
proto/cmp/services/accommodation/v1alpha1/search_query_types.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
syntax = "proto3"; | ||
|
||
package cmp.services.accommodation.v1alpha1; | ||
|
||
import "cmp/services/accommodation/v1alpha1/search_parameters_types.proto"; | ||
import "cmp/services/accommodation/v1alpha1/unit_types.proto"; | ||
import "cmp/types/v1alpha1/travel_period.proto"; | ||
import "cmp/types/v1alpha1/traveller.proto"; | ||
|
||
message AccommodationSearchQuery { | ||
// Integer query ID, unique per search request | ||
int32 query_id = 1; | ||
|
||
// Accommodation specific search parameters Ex: Specific search parameters like | ||
// geo location, meal plan, rate plan and rate rules. | ||
AccommodationSearchParameters search_parameters_accommodation = 2; | ||
|
||
// Travel period | ||
cmp.types.v1alpha1.TravelPeriod travel_period = 3; | ||
|
||
// Travellers | ||
repeated cmp.types.v1alpha1.Traveller travellers = 4; | ||
|
||
// Total number of rooms / holiday homes | ||
int32 unit_count = 5; | ||
|
||
// Type of the unit, like room or holiday home | ||
UnitType unit_type = 6; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.