@nycpickleball/cli 1.7.0 → 1.8.1

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -733,7 +733,7 @@ function registerPlayerCommands(program2) {
733
733
  ).action(async function() {
734
734
  const { client } = resolveConfig(rootOpts2(this));
735
735
  try {
736
- const res = await client.get("/api/cron/refresh-dupr");
736
+ const res = await client.get("/api/cron/refresh-dupr", { auth: true });
737
737
  console.log(
738
738
  `attempted=${res.attempted ?? "?"} refreshed=${res.refreshed} skipped=${res.skipped} errors=${res.errors.length}`
739
739
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nycpickleball/cli",
3
- "version": "1.7.0",
3
+ "version": "1.8.1",
4
4
  "description": "CLI for managing NYC Pickleball leagues via the deployed API.",
5
5
  "license": "UNLICENSED",
6
6
  "publishConfig": {