Skip to content

Commit

Permalink
fix: add highlighted collections in marketing.proto
Browse files Browse the repository at this point in the history
  • Loading branch information
WaDadidou committed Sep 12, 2024
1 parent 8a75ac7 commit eadb715
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions api/marketing/v1/marketing.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ service MarketingService {
rpc News(NewsRequest) returns (NewsResponse);
rpc LiveCollections(LiveCollectionsRequest) returns (LiveCollectionsResponse);
rpc UpcomingCollections(UpcomingCollectionsRequest) returns (UpcomingCollectionsResponse);
rpc HighlightedCollections(HighlightedCollectionsRequest) returns (HighlightedCollectionsResponse);
}

message MarketingCollectionPreview {
Expand Down Expand Up @@ -67,3 +68,11 @@ message UpcomingCollectionsRequest {
message UpcomingCollectionsResponse {
repeated MarketingCollectionPreview collections = 1;
}

message HighlightedCollectionsRequest {
string network_id = 1;
}

message HighlightedCollectionsResponse {
repeated MarketingCollectionPreview collections = 1;
}

0 comments on commit eadb715

Please sign in to comment.