@qodalis/cli-lang-de 2.0.0-beta.1 → 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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qodalis/cli-lang-de",
3
- "version": "2.0.0-beta.1",
3
+ "version": "2.0.0-beta.3",
4
4
  "description": "German language pack for Qodalis CLI",
5
5
  "author": "Nicolae Lupei, Qodalis Solutions",
6
6
  "license": "MIT",
@@ -18,10 +18,10 @@
18
18
  "language-pack",
19
19
  "translations"
20
20
  ],
21
- "umd": "./umd/index.js",
22
- "unpkg": "./umd/index.js",
21
+ "umd": "./umd/index.global.js",
22
+ "unpkg": "./umd/index.global.js",
23
23
  "dependencies": {
24
- "@qodalis/cli-core": "2.0.0-beta.1"
24
+ "@qodalis/cli-core": "2.0.0-beta.3"
25
25
  },
26
26
  "sideEffects": false,
27
27
  "main": "./public-api.js",
@@ -1844,14 +1844,14 @@ var langDe = (() => {
1844
1844
  */
1845
1845
  static async discover(baseUrl) {
1846
1846
  try {
1847
- const response = await fetch(`${baseUrl}/api/cli/versions`);
1847
+ const response = await fetch(`${baseUrl}/api/qcli/versions`);
1848
1848
  if (!response.ok) return null;
1849
1849
  const info = await response.json();
1850
1850
  const version = this.negotiate(info);
1851
1851
  if (version === null) return null;
1852
1852
  return {
1853
1853
  apiVersion: version,
1854
- basePath: `${baseUrl}/api/v${version}/cli`
1854
+ basePath: `${baseUrl}/api/v${version}/qcli`
1855
1855
  };
1856
1856
  } catch {
1857
1857
  return null;