@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 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.request(
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.request(
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@taphubhq/sdk-core",
3
- "version": "0.17.3",
3
+ "version": "0.17.4",
4
4
  "description": "Core SDK for building on the TabHub platform",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.cjs",