@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.
- package/dist/index.js +1 -1
- 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
|
);
|