@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/package.json +2 -2
- package/public-api.d.mts +1 -1
- package/public-api.d.ts +1 -1
- package/public-api.js +2 -2
- package/public-api.js.map +1 -1
- package/public-api.mjs +2 -2
- package/public-api.mjs.map +1 -1
- package/umd/index.global.js +3 -3
package/umd/index.global.js
CHANGED
|
@@ -1860,14 +1860,14 @@ var files = (() => {
|
|
|
1860
1860
|
*/
|
|
1861
1861
|
static async discover(baseUrl) {
|
|
1862
1862
|
try {
|
|
1863
|
-
const response = await fetch(`${baseUrl}/api/
|
|
1863
|
+
const response = await fetch(`${baseUrl}/api/qcli/versions`);
|
|
1864
1864
|
if (!response.ok) return null;
|
|
1865
1865
|
const info = await response.json();
|
|
1866
1866
|
const version = this.negotiate(info);
|
|
1867
1867
|
if (version === null) return null;
|
|
1868
1868
|
return {
|
|
1869
1869
|
apiVersion: version,
|
|
1870
|
-
basePath: `${baseUrl}/api/v${version}/
|
|
1870
|
+
basePath: `${baseUrl}/api/v${version}/qcli`
|
|
1871
1871
|
};
|
|
1872
1872
|
} catch {
|
|
1873
1873
|
return null;
|
|
@@ -2692,7 +2692,7 @@ var files = (() => {
|
|
|
2692
2692
|
};
|
|
2693
2693
|
|
|
2694
2694
|
// src/lib/version.ts
|
|
2695
|
-
var LIBRARY_VERSION = "2.0.0-beta.
|
|
2695
|
+
var LIBRARY_VERSION = "2.0.0-beta.3";
|
|
2696
2696
|
var API_VERSION = 2;
|
|
2697
2697
|
|
|
2698
2698
|
// src/lib/interfaces/i-file-system-service.ts
|