@sap-ux/deploy-tooling 0.14.9 → 0.14.11
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/dist/base/validate.js +4 -2
- package/dist/cli/config.js +4 -3
- package/package.json +3 -3
package/dist/base/validate.js
CHANGED
|
@@ -275,7 +275,8 @@ function validatePackageWithAdt(input, output, provider, logger) {
|
|
|
275
275
|
}
|
|
276
276
|
}
|
|
277
277
|
catch (e) {
|
|
278
|
-
logger.error(e);
|
|
278
|
+
logger.error(e.message);
|
|
279
|
+
logger.debug(e);
|
|
279
280
|
output.summary.push({
|
|
280
281
|
message: exports.summaryMessage.pacakgeAdtAccessError,
|
|
281
282
|
status: SummaryStatus.Unknown
|
|
@@ -335,7 +336,8 @@ function validateTransportRequestWithAdt(input, output, provider, logger) {
|
|
|
335
336
|
});
|
|
336
337
|
}
|
|
337
338
|
else {
|
|
338
|
-
logger.error(e);
|
|
339
|
+
logger.error(e.message);
|
|
340
|
+
logger.debug(e);
|
|
339
341
|
output.summary.push({
|
|
340
342
|
message: exports.summaryMessage.transportAdtAccessError,
|
|
341
343
|
status: SummaryStatus.Unknown
|
package/dist/cli/config.js
CHANGED
|
@@ -133,16 +133,17 @@ function getServiceKey(options, targetUrl) {
|
|
|
133
133
|
* @returns merged target object
|
|
134
134
|
*/
|
|
135
135
|
function mergeTarget(baseTarget, options) {
|
|
136
|
-
var _a, _b, _c, _d;
|
|
136
|
+
var _a, _b, _c, _d, _e;
|
|
137
137
|
const targetUrl = (_a = options.url) !== null && _a !== void 0 ? _a : baseTarget === null || baseTarget === void 0 ? void 0 : baseTarget.url;
|
|
138
138
|
return {
|
|
139
139
|
url: targetUrl,
|
|
140
140
|
client: (_b = options.client) !== null && _b !== void 0 ? _b : baseTarget === null || baseTarget === void 0 ? void 0 : baseTarget.client,
|
|
141
141
|
scp: options.cloud !== undefined ? options.cloud : baseTarget === null || baseTarget === void 0 ? void 0 : baseTarget.cloud,
|
|
142
|
-
|
|
142
|
+
authenticationType: (_c = options.authenticationType) !== null && _c !== void 0 ? _c : baseTarget === null || baseTarget === void 0 ? void 0 : baseTarget.authenticationType,
|
|
143
|
+
destination: (_d = options.destination) !== null && _d !== void 0 ? _d : baseTarget === null || baseTarget === void 0 ? void 0 : baseTarget.destination,
|
|
143
144
|
serviceKey: getServiceKey(options, targetUrl),
|
|
144
145
|
params: options.queryParams ? parseQueryParams(options.queryParams) : undefined,
|
|
145
|
-
service: (
|
|
146
|
+
service: (_e = options.service) !== null && _e !== void 0 ? _e : baseTarget === null || baseTarget === void 0 ? void 0 : baseTarget.service
|
|
146
147
|
};
|
|
147
148
|
}
|
|
148
149
|
/**
|
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.14.
|
|
12
|
+
"version": "0.14.11",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"author": "@SAP/ux-tools-team",
|
|
15
15
|
"main": "dist/index.js",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"prompts": "2.4.2",
|
|
33
33
|
"adm-zip": "0.5.10",
|
|
34
34
|
"chalk": "4.1.2",
|
|
35
|
-
"@sap-ux/axios-extension": "1.11.
|
|
35
|
+
"@sap-ux/axios-extension": "1.11.5",
|
|
36
36
|
"@sap-ux/btp-utils": "0.14.3",
|
|
37
37
|
"@sap-ux/logger": "0.5.1",
|
|
38
|
-
"@sap-ux/system-access": "0.3.
|
|
38
|
+
"@sap-ux/system-access": "0.3.19",
|
|
39
39
|
"@sap-ux/ui5-config": "0.22.1",
|
|
40
40
|
"@sap-ux/project-input-validator": "0.2.3"
|
|
41
41
|
},
|