@qodalis/cli-files 2.0.0-beta.2 → 2.0.0-beta.3

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/public-api.mjs CHANGED
@@ -4,7 +4,7 @@ import { ICliCompletionProvider_TOKEN, ICliFileTransferService_TOKEN, BrowserFil
4
4
  var IFileSystemService_TOKEN = "cli-file-system-service";
5
5
 
6
6
  // src/lib/version.ts
7
- var LIBRARY_VERSION = "2.0.0-beta.2";
7
+ var LIBRARY_VERSION = "2.0.0-beta.3";
8
8
  var API_VERSION = 2;
9
9
 
10
10
  // src/lib/processors/cli-ls-command-processor.ts
@@ -4787,7 +4787,7 @@ var ServerFileSystemService = class {
4787
4787
  }
4788
4788
  // --- Private: server communication ---
4789
4789
  async serverFetch(endpoint, options) {
4790
- const url = `${this.baseUrl}/api/cli/fs${endpoint}`;
4790
+ const url = `${this.baseUrl}/api/qcli/fs${endpoint}`;
4791
4791
  const response = await fetch(url, options);
4792
4792
  if (!response.ok) {
4793
4793
  const body = await response.text();