@sap-ux/deploy-tooling 0.17.74 → 0.18.0

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/README.md CHANGED
@@ -121,6 +121,7 @@ Options:
121
121
  --verbose verbose log output (default: false)
122
122
  --destination <destination> Destination in SAP BTP pointing to an ABAP system
123
123
  --url <target-url> URL of target ABAP system
124
+ --connect-path <path> (Optional) Service URL path used to retrieve credentials from secure storage
124
125
  --service (Optional) Alias for the target SAPUI5 Respository OData Service
125
126
  --client <sap-client> Client number of target ABAP system
126
127
  --cloud target is an ABAP Cloud system
@@ -124,6 +124,7 @@ function mergeTarget(baseTarget, options) {
124
124
  const targetUrl = options.url ?? baseTarget?.url;
125
125
  return {
126
126
  url: targetUrl,
127
+ connectPath: options.connectPath ?? baseTarget?.connectPath,
127
128
  client: options.client ?? baseTarget?.client,
128
129
  scp: options.cloud !== undefined ? options.cloud : baseTarget?.cloud,
129
130
  authenticationType: options.authenticationType ?? baseTarget?.authenticationType,
package/dist/cli/index.js CHANGED
@@ -27,6 +27,7 @@ function createCommand(name) {
27
27
  command
28
28
  .addOption(new commander_1.Option('--destination <destination>', 'Destination in SAP BTP pointing to an ABAP system').conflicts('url'))
29
29
  .addOption(new commander_1.Option('--url <target-url>', 'URL of target ABAP system').conflicts('destination'))
30
+ .addOption(new commander_1.Option('--connect-path <path>', 'Service URL path used to retrieve credentials from secure storage'))
30
31
  .addOption(new commander_1.Option('--client <sap-client>', 'Client number of target ABAP system').conflicts('destination'))
31
32
  .addOption(new commander_1.Option('--cloud', 'Target is an ABAP Cloud system').conflicts('destination'))
32
33
  .addOption(new commander_1.Option('--service <service-path>', 'Target alias for deployment service'))
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.17.74",
12
+ "version": "0.18.0",
13
13
  "license": "Apache-2.0",
14
14
  "author": "@SAP/ux-tools-team",
15
15
  "main": "dist/index.js",
@@ -34,11 +34,11 @@
34
34
  "chalk": "4.1.2",
35
35
  "@sap-ux/axios-extension": "1.25.24",
36
36
  "@sap-ux/btp-utils": "1.1.10",
37
- "@sap-ux/inquirer-common": "0.11.25",
37
+ "@sap-ux/inquirer-common": "0.11.26",
38
38
  "@sap-ux/logger": "0.8.2",
39
- "@sap-ux/system-access": "0.6.66",
40
- "@sap-ux/ui5-config": "0.29.21",
41
- "@sap-ux/project-input-validator": "0.6.68"
39
+ "@sap-ux/system-access": "0.7.0",
40
+ "@sap-ux/ui5-config": "0.30.0",
41
+ "@sap-ux/project-input-validator": "0.6.69"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@types/prompts": "2.4.4",