@taphubhq/sdk-core 0.17.3 → 0.17.4
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/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -610,7 +610,7 @@ var LeaderboardModule = class {
|
|
|
610
610
|
this.#graphql = deps.graphql;
|
|
611
611
|
}
|
|
612
612
|
async list(args) {
|
|
613
|
-
const body = await this.#graphql.
|
|
613
|
+
const body = await this.#graphql.publicRequest(
|
|
614
614
|
LEADERBOARD_QUERY,
|
|
615
615
|
{ period: args.period, sort_by: args.sortBy },
|
|
616
616
|
args.signal ? { signal: args.signal } : void 0
|
package/dist/index.js
CHANGED
|
@@ -545,7 +545,7 @@ var LeaderboardModule = class {
|
|
|
545
545
|
this.#graphql = deps.graphql;
|
|
546
546
|
}
|
|
547
547
|
async list(args) {
|
|
548
|
-
const body = await this.#graphql.
|
|
548
|
+
const body = await this.#graphql.publicRequest(
|
|
549
549
|
LEADERBOARD_QUERY,
|
|
550
550
|
{ period: args.period, sort_by: args.sortBy },
|
|
551
551
|
args.signal ? { signal: args.signal } : void 0
|