@sap-ux/deploy-tooling 0.18.25 → 0.19.2

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.
@@ -187,7 +187,10 @@ async function getSystemPrefix(output, provider, logger) {
187
187
  return undefined;
188
188
  }
189
189
  const atoSettings = await adtService.getAtoInfo();
190
- return atoSettings?.developmentPrefix;
190
+ if (atoSettings?.operationsType === 'C') {
191
+ return atoSettings.developmentPrefix;
192
+ }
193
+ return undefined;
191
194
  }
192
195
  catch (e) {
193
196
  logger.error(e.message);
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "bugs": {
10
10
  "url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Adeploy-tooling"
11
11
  },
12
- "version": "0.18.25",
12
+ "version": "0.19.2",
13
13
  "license": "Apache-2.0",
14
14
  "author": "@SAP/ux-tools-team",
15
15
  "main": "dist/index.js",
@@ -32,21 +32,21 @@
32
32
  "prompts": "2.4.2",
33
33
  "adm-zip": "0.5.16",
34
34
  "chalk": "4.1.2",
35
- "@sap-ux/axios-extension": "1.25.36",
36
- "@sap-ux/btp-utils": "1.1.15",
37
- "@sap-ux/inquirer-common": "0.11.46",
38
- "@sap-ux/logger": "0.8.5",
39
- "@sap-ux/system-access": "0.7.12",
40
- "@sap-ux/ui5-config": "0.30.4",
41
- "@sap-ux/project-input-validator": "0.6.83"
35
+ "@sap-ux/axios-extension": "1.26.0",
36
+ "@sap-ux/btp-utils": "1.2.0",
37
+ "@sap-ux/inquirer-common": "0.13.0",
38
+ "@sap-ux/logger": "0.9.0",
39
+ "@sap-ux/system-access": "0.8.0",
40
+ "@sap-ux/project-input-validator": "0.7.0",
41
+ "@sap-ux/ui5-config": "0.31.0"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/prompts": "2.4.9",
45
45
  "@types/adm-zip": "0.5.8",
46
- "@sap-ux/store": "1.5.13"
46
+ "@sap-ux/store": "1.6.0"
47
47
  },
48
48
  "engines": {
49
- "node": ">=20.x"
49
+ "node": ">=22.x"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "tsc --build",