protobuf-platform 1.2.373 → 1.2.375

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/game/game.proto CHANGED
@@ -73,6 +73,7 @@ service Game {
73
73
  rpc parseGameImagesForAllInbound(ParseGameImagesForAllInboundRequest) returns (GameImagesParsingTechnicalResponse);
74
74
  rpc syncGameImageUrls(SyncGameImageUrlsRequest) returns (GameImagesParsingTechnicalResponse);
75
75
  rpc syncGameImageUrlsForProvider(SyncGameImageUrlsForProviderRequest) returns (GameImagesParsingTechnicalResponse);
76
+ rpc checkVendorsTechnical(CheckVendorsTechnicalRequest) returns (CheckVendorsTechnicalResponse);
76
77
  rpc searchGames(PaginationRequest) returns (SearchGamesResponse);
77
78
  rpc searchGamesFull(SearchGamesFullRequest) returns (SearchGamesFullResponse);
78
79
  //Vendor
@@ -450,6 +451,22 @@ message GameImagesParsingTechnicalResponse {
450
451
  int32 skipped = 4;
451
452
  int32 failed = 5;
452
453
  }
454
+ message CheckVendorsTechnicalRequest {
455
+ string provider_or_aggregator_name = 1;
456
+ optional string currency = 2;
457
+ optional string display_language = 3;
458
+ }
459
+ message VendorTechnicalCheckItem {
460
+ string name = 1;
461
+ string currency_code = 2;
462
+ string code = 3;
463
+ string category_code = 4;
464
+ }
465
+ message CheckVendorsTechnicalResponse {
466
+ string status = 1;
467
+ int32 total = 2;
468
+ repeated VendorTechnicalCheckItem items = 3;
469
+ }
453
470
  message IntegratorSettingsRequest { string route = 1; }
454
471
  message IntegratorSettingsResponse { string data = 1; }
455
472
  message IntegratorSelfValidationRequest { string vendor = 1; }
@@ -136,6 +136,28 @@ function deserialize_game_CategoryStatusResponse(buffer_arg) {
136
136
  return game_pb.CategoryStatusResponse.deserializeBinary(new Uint8Array(buffer_arg));
137
137
  }
138
138
 
139
+ function serialize_game_CheckVendorsTechnicalRequest(arg) {
140
+ if (!(arg instanceof game_pb.CheckVendorsTechnicalRequest)) {
141
+ throw new Error('Expected argument of type game.CheckVendorsTechnicalRequest');
142
+ }
143
+ return Buffer.from(arg.serializeBinary());
144
+ }
145
+
146
+ function deserialize_game_CheckVendorsTechnicalRequest(buffer_arg) {
147
+ return game_pb.CheckVendorsTechnicalRequest.deserializeBinary(new Uint8Array(buffer_arg));
148
+ }
149
+
150
+ function serialize_game_CheckVendorsTechnicalResponse(arg) {
151
+ if (!(arg instanceof game_pb.CheckVendorsTechnicalResponse)) {
152
+ throw new Error('Expected argument of type game.CheckVendorsTechnicalResponse');
153
+ }
154
+ return Buffer.from(arg.serializeBinary());
155
+ }
156
+
157
+ function deserialize_game_CheckVendorsTechnicalResponse(buffer_arg) {
158
+ return game_pb.CheckVendorsTechnicalResponse.deserializeBinary(new Uint8Array(buffer_arg));
159
+ }
160
+
139
161
  function serialize_game_CollectionGamesRequest(arg) {
140
162
  if (!(arg instanceof game_pb.CollectionGamesRequest)) {
141
163
  throw new Error('Expected argument of type game.CollectionGamesRequest');
@@ -1862,6 +1884,17 @@ parseGameImagesForProvider: {
1862
1884
  responseSerialize: serialize_game_GameImagesParsingTechnicalResponse,
1863
1885
  responseDeserialize: deserialize_game_GameImagesParsingTechnicalResponse,
1864
1886
  },
1887
+ checkVendorsTechnical: {
1888
+ path: '/game.Game/checkVendorsTechnical',
1889
+ requestStream: false,
1890
+ responseStream: false,
1891
+ requestType: game_pb.CheckVendorsTechnicalRequest,
1892
+ responseType: game_pb.CheckVendorsTechnicalResponse,
1893
+ requestSerialize: serialize_game_CheckVendorsTechnicalRequest,
1894
+ requestDeserialize: deserialize_game_CheckVendorsTechnicalRequest,
1895
+ responseSerialize: serialize_game_CheckVendorsTechnicalResponse,
1896
+ responseDeserialize: deserialize_game_CheckVendorsTechnicalResponse,
1897
+ },
1865
1898
  searchGames: {
1866
1899
  path: '/game.Game/searchGames',
1867
1900
  requestStream: false,