@sap-ux/adp-tooling 0.18.86 → 0.18.88

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.
@@ -4,23 +4,31 @@ exports.isAppSupported = isAppSupported;
4
4
  exports.loadApps = loadApps;
5
5
  const axios_extension_1 = require("@sap-ux/axios-extension");
6
6
  const i18n_1 = require("../i18n");
7
- const APP_FIELDS = 'sap.app/id,sap.app/ach,sap.fiori/registrationIds,sap.app/title,url,fileType,repoName,sap.fiori/cloudDevAdaptationStatus';
7
+ const ONPREM_APP_FIELDS = [
8
+ 'sap.app/id',
9
+ 'sap.app/ach',
10
+ 'sap.fiori/registrationIds',
11
+ 'sap.app/title',
12
+ 'url',
13
+ 'fileType',
14
+ 'repoName'
15
+ ];
16
+ const CLOUD_APP_FIELDS = [...ONPREM_APP_FIELDS, 'sap.fiori/cloudDevAdaptationStatus'];
8
17
  const APPS_WITH_DESCR_FILTER = {
9
- fields: APP_FIELDS,
18
+ fields: ONPREM_APP_FIELDS.join(','),
10
19
  'sap.ui/technology': 'UI5',
11
20
  'sap.app/type': 'application',
12
21
  'fileType': 'appdescr'
13
22
  };
14
23
  const APPS_WITH_VARIANT_DESCR_FILTER = {
15
- fields: APP_FIELDS,
24
+ fields: ONPREM_APP_FIELDS.join(','),
16
25
  'sap.ui/technology': 'UI5',
17
26
  'sap.app/type': 'application',
18
27
  'fileType': 'appdescr_variant',
19
28
  'originLayer': 'VENDOR'
20
29
  };
21
30
  const CLOUD_ONLY_APPS_FILTER = {
22
- fields: APP_FIELDS,
23
- 'sap.ui/technology': 'UI5',
31
+ fields: CLOUD_APP_FIELDS.join(','),
24
32
  'sap.app/type': 'application',
25
33
  'sap.fiori/cloudDevAdaptationStatus': 'released'
26
34
  };
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%3Aadp-tooling"
11
11
  },
12
- "version": "0.18.86",
12
+ "version": "0.18.88",
13
13
  "license": "Apache-2.0",
14
14
  "author": "@SAP/ux-tools-team",
15
15
  "main": "dist/index.js",
@@ -36,7 +36,7 @@
36
36
  "prompts": "2.4.2",
37
37
  "sanitize-filename": "1.6.3",
38
38
  "uuid": "11.1.0",
39
- "@sap-ux/axios-extension": "1.25.21",
39
+ "@sap-ux/axios-extension": "1.25.22",
40
40
  "@sap-ux/btp-utils": "1.1.9",
41
41
  "@sap-ux/i18n": "0.3.9",
42
42
  "@sap-ux/inquirer-common": "0.11.22",
@@ -46,7 +46,7 @@
46
46
  "@sap-ux/project-access": "1.35.13",
47
47
  "@sap-ux/project-input-validator": "0.6.67",
48
48
  "@sap-ux/store": "1.5.9",
49
- "@sap-ux/system-access": "0.6.63",
49
+ "@sap-ux/system-access": "0.6.64",
50
50
  "@sap-ux/ui5-config": "0.29.21",
51
51
  "@sap-ux/ui5-info": "0.13.14"
52
52
  },