@opexa/portal-sdk 0.59.62 → 0.59.64

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.
@@ -5075,7 +5075,13 @@ var PortalService = class {
5075
5075
  };
5076
5076
  }
5077
5077
  async topWinsNext() {
5078
- const res = await this.client.request(TOP_WINS_NEXT_QUERY);
5078
+ const res = await this.client.request(
5079
+ TOP_WINS_NEXT_QUERY,
5080
+ void 0,
5081
+ {
5082
+ method: "GET"
5083
+ }
5084
+ );
5079
5085
  if (!res.ok) return res;
5080
5086
  return {
5081
5087
  ok: true,
@@ -5153,7 +5159,9 @@ var ReportService = class {
5153
5159
  return res.ok ? { ok: res.ok, data: res.data.promoByCode } : res;
5154
5160
  }
5155
5161
  async jackpots(variables) {
5156
- const res = await this.client.request(JACKPOTS_QUERY, variables);
5162
+ const res = await this.client.request(JACKPOTS_QUERY, variables, {
5163
+ method: "GET"
5164
+ });
5157
5165
  if (!res.ok) return res;
5158
5166
  return {
5159
5167
  ok: true,
@@ -5161,7 +5169,9 @@ var ReportService = class {
5161
5169
  };
5162
5170
  }
5163
5171
  async _jackpots(variables) {
5164
- const res = await this.client.request(_JACKPOTS_QUERY, variables);
5172
+ const res = await this.client.request(_JACKPOTS_QUERY, variables, {
5173
+ method: "GET"
5174
+ });
5165
5175
  if (!res.ok) return res;
5166
5176
  return {
5167
5177
  ok: true,
@@ -5169,7 +5179,9 @@ var ReportService = class {
5169
5179
  };
5170
5180
  }
5171
5181
  async jackpotsIds(variables) {
5172
- const res = await this.client.request(JACKPOTS_IDS_QUERY, variables);
5182
+ const res = await this.client.request(JACKPOTS_IDS_QUERY, variables, {
5183
+ method: "GET"
5184
+ });
5173
5185
  if (!res.ok) return res;
5174
5186
  return {
5175
5187
  ok: true,
@@ -5185,7 +5197,9 @@ var ReportService = class {
5185
5197
  };
5186
5198
  }
5187
5199
  async tournaments(variables) {
5188
- const res = await this.client.request(TOURNAMENTS_QUERY, variables);
5200
+ const res = await this.client.request(TOURNAMENTS_QUERY, variables, {
5201
+ method: "GET"
5202
+ });
5189
5203
  if (!res.ok) return res;
5190
5204
  return {
5191
5205
  ok: true,
@@ -5193,7 +5207,9 @@ var ReportService = class {
5193
5207
  };
5194
5208
  }
5195
5209
  async tournamentsIds(variables) {
5196
- const res = await this.client.request(TOURNAMENTS_IDS_QUERY, variables);
5210
+ const res = await this.client.request(TOURNAMENTS_IDS_QUERY, variables, {
5211
+ method: "GET"
5212
+ });
5197
5213
  if (!res.ok) return res;
5198
5214
  return {
5199
5215
  ok: true,