@sap-ux/generator-adp 0.9.28 → 0.9.30

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.
@@ -321,8 +321,11 @@ class KeyUserImportPrompter {
321
321
  catch (e) {
322
322
  this.logger.error(`Error validating key-user changes for adaptation ${adaptationId}: ${e.message}`);
323
323
  this.logger.debug(e);
324
- if ((0, axios_extension_1.isAxiosError)(e) && (e.response?.status === 405 || e.response?.status === 404)) {
325
- return (0, i18n_1.t)('error.keyUserNotSupported');
324
+ if ((0, axios_extension_1.isAxiosError)(e)) {
325
+ const status = e.response?.status;
326
+ if (status === 400 || status === 404 || status === 405) {
327
+ return (0, i18n_1.t)('error.keyUserNotSupported');
328
+ }
326
329
  }
327
330
  return e.message;
328
331
  }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "displayName": "SAPUI5 Adaptation Project",
4
4
  "homepage": "https://help.sap.com/viewer/584e0bcbfd4a4aff91c815cefa0bce2d/Cloud/en-US/ada9567b767941aba8d49fdb4fdedea7.html",
5
5
  "description": "Adaptation project allows you to create an app variant for an existing SAP Fiori elements-based or SAPUI5 freestyle application, without changing the original application.",
6
- "version": "0.9.28",
6
+ "version": "0.9.30",
7
7
  "repository": {
8
8
  "type": "git",
9
9
  "url": "https://github.com/SAP/open-ux-tools.git",
@@ -27,22 +27,22 @@
27
27
  "dependencies": {
28
28
  "@sap-devx/yeoman-ui-types": "1.22.0",
29
29
  "@sap-devx/feature-toggle-node": "2.0.3",
30
- "i18next": "25.8.12",
30
+ "i18next": "25.8.18",
31
31
  "yeoman-generator": "5.10.0",
32
32
  "uuid": "11.1.0",
33
- "@sap-ux/adp-tooling": "0.18.91",
34
- "@sap-ux/axios-extension": "1.25.22",
35
- "@sap-ux/btp-utils": "1.1.9",
33
+ "@sap-ux/adp-tooling": "0.18.93",
34
+ "@sap-ux/axios-extension": "1.25.24",
35
+ "@sap-ux/btp-utils": "1.1.10",
36
36
  "@sap-ux/feature-toggle": "0.3.7",
37
- "@sap-ux/inquirer-common": "0.11.23",
37
+ "@sap-ux/inquirer-common": "0.11.24",
38
38
  "@sap-ux/logger": "0.8.2",
39
39
  "@sap-ux/project-access": "1.35.13",
40
- "@sap-ux/store": "1.5.9",
41
- "@sap-ux/system-access": "0.6.64",
42
- "@sap-ux/project-input-validator": "0.6.67",
43
- "@sap-ux/fiori-generator-shared": "0.13.85",
44
- "@sap-ux/odata-service-writer": "0.30.0",
45
- "@sap-ux/telemetry": "0.6.86"
40
+ "@sap-ux/store": "1.5.10",
41
+ "@sap-ux/system-access": "0.6.66",
42
+ "@sap-ux/project-input-validator": "0.6.68",
43
+ "@sap-ux/fiori-generator-shared": "0.13.86",
44
+ "@sap-ux/odata-service-writer": "0.30.1",
45
+ "@sap-ux/telemetry": "0.6.87"
46
46
  },
47
47
  "devDependencies": {
48
48
  "@jest/types": "30.2.0",
@@ -57,7 +57,7 @@
57
57
  "fs-extra": "11.3.4",
58
58
  "rimraf": "6.1.3",
59
59
  "yeoman-test": "6.3.0",
60
- "@sap-ux/deploy-config-sub-generator": "0.5.110"
60
+ "@sap-ux/deploy-config-sub-generator": "0.5.112"
61
61
  },
62
62
  "engines": {
63
63
  "node": ">=20.x"