@dropthis/cli 0.29.0 → 0.30.0

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/cli.cjs CHANGED
@@ -1009,7 +1009,7 @@ function spreadData(data) {
1009
1009
  }
1010
1010
 
1011
1011
  // src/version.ts
1012
- var CLI_VERSION = true ? "0.29.0" : "0.0.0-dev";
1012
+ var CLI_VERSION = true ? "0.30.0" : "0.0.0-dev";
1013
1013
 
1014
1014
  // src/commands/doctor.ts
1015
1015
  async function runDoctor(_input, deps) {
@@ -2782,7 +2782,7 @@ async function runWorkspaceList(_input, deps) {
2782
2782
  }
2783
2783
  const result = await deps.client.workspaces.list();
2784
2784
  if (result.error) return writeApiError(deps, result.error);
2785
- const raw = unwrapListData(result.data);
2785
+ const raw = unwrapListData(result.data, "workspaces");
2786
2786
  const items = Array.isArray(raw) ? raw : [];
2787
2787
  if (deps.outputMode === "human") {
2788
2788
  if (items.length === 0) {