@mtgame/core 0.1.14 → 0.1.15

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.
@@ -8062,6 +8062,16 @@ var VolleyballGameApi = /** @class */ (function (_super) {
8062
8062
  });
8063
8063
  });
8064
8064
  };
8065
+ VolleyballGameApi.prototype.downloadProtocolLight = function (gameId, format) {
8066
+ return __awaiter(this, void 0, void 0, function () {
8067
+ return __generator(this, function (_a) {
8068
+ return [2 /*return*/, this.httpClient.get(this.configService.get('apiUrl') + "/api/v1/tournament_volleyball_game/" + gameId + "/game_protocol_light/", {
8069
+ params: new HttpParams().set('file_type', format),
8070
+ responseType: 'blob'
8071
+ }).toPromise()];
8072
+ });
8073
+ });
8074
+ };
8065
8075
  VolleyballGameApi.prototype.downloadProtocol = function (gameId, format) {
8066
8076
  return __awaiter(this, void 0, void 0, function () {
8067
8077
  return __generator(this, function (_a) {