@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.
- package/dist/{chunk-JTAO2DVT.js → chunk-7APXFZ5G.js} +29 -12
- package/dist/chunk-7APXFZ5G.js.map +1 -0
- package/dist/{chunk-FUFD2LUS.js → chunk-LSIBWJ34.js} +24 -8
- package/dist/chunk-LSIBWJ34.js.map +1 -0
- package/dist/{graphql-client-Czq2Pigo.d.cts → graphql-client-Cr5nXEyQ.d.cts} +1 -1
- package/dist/{graphql-client-Czq2Pigo.d.ts → graphql-client-Cr5nXEyQ.d.ts} +1 -1
- package/dist/index.cjs +60 -24
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +13 -10
- package/dist/index.js.map +1 -1
- package/dist/services/index.cjs +22 -6
- package/dist/services/index.cjs.map +1 -1
- package/dist/services/index.d.cts +3 -3
- package/dist/services/index.d.ts +3 -3
- package/dist/services/index.js +1 -1
- package/dist/{types-B0c9zTyG.d.ts → types-DLixKQ1b.d.ts} +1 -1
- package/dist/{types-C8AKce3p.d.cts → types-o6aJjH1M.d.cts} +1 -1
- package/dist/utils/index.cjs +27 -10
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.cts +1 -1
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/index.js +1 -1
- package/package.json +1 -1
- package/dist/chunk-FUFD2LUS.js.map +0 -1
- package/dist/chunk-JTAO2DVT.js.map +0 -1
package/dist/services/index.cjs
CHANGED
|
@@ -5075,7 +5075,13 @@ var PortalService = class {
|
|
|
5075
5075
|
};
|
|
5076
5076
|
}
|
|
5077
5077
|
async topWinsNext() {
|
|
5078
|
-
const res = await this.client.request(
|
|
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,
|