@sap-ux/deploy-tooling 0.14.29 → 0.14.31
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 +2 -0
- package/dist/base/deploy.js +2 -1
- package/dist/cli/index.js +1 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -126,6 +126,7 @@ Options:
|
|
|
126
126
|
--cloud-service-env Load ABAP cloud service properties from either a .env file or your environment variables. Secrets in your .env should not be committed to source control.
|
|
127
127
|
--username ABAP Service username
|
|
128
128
|
--password ABAP Service password
|
|
129
|
+
--authentication-type Authentication type for the app (e.g. 'basic', 'reentranceTicket'). Required for 'reentranceTicket'.
|
|
129
130
|
--create-transport Create a transport request during deployment
|
|
130
131
|
--transport <transport-request> Transport number to record the change in the ABAP system
|
|
131
132
|
--name <bsp-name> Project name of the app
|
|
@@ -202,6 +203,7 @@ Options:
|
|
|
202
203
|
--cloud-service-env Load ABAP cloud service properties from either a .env file or your environment variables
|
|
203
204
|
--username ABAP Service username
|
|
204
205
|
--password ABAP Service password
|
|
206
|
+
--authentication-type Authentication type for the app (e.g. 'basic', 'reentranceTicket'). Required for 'reentranceTicket'.
|
|
205
207
|
--transport <transport-request> Transport number to record the change in the ABAP system
|
|
206
208
|
--create-transport Create a transport request during deployment
|
|
207
209
|
--package <abap-package> Package name for deploy target ABAP system (only required when --create-transport is used)
|
package/dist/base/deploy.js
CHANGED
|
@@ -158,10 +158,11 @@ function createTransportRequest(config, logger, provider) {
|
|
|
158
158
|
}
|
|
159
159
|
const adtService = yield provider.getAdtService(axios_extension_1.TransportRequestService);
|
|
160
160
|
const ui5AppName = (0, config_1.isBspConfig)(config.app) ? config.app.name : '';
|
|
161
|
+
const description = `For ABAP repository ${ui5AppName}, created by SAP Open UX Tools`;
|
|
161
162
|
const transportRequest = yield (adtService === null || adtService === void 0 ? void 0 : adtService.createTransportRequest({
|
|
162
163
|
packageName: (_a = config.app.package) !== null && _a !== void 0 ? _a : '',
|
|
163
164
|
ui5AppName,
|
|
164
|
-
description:
|
|
165
|
+
description: description.length > 60 ? description.slice(0, 57) + '...' : description
|
|
165
166
|
}));
|
|
166
167
|
if (transportRequest) {
|
|
167
168
|
logger.info(`Transport request ${transportRequest} created for application ${ui5AppName}.`);
|
package/dist/cli/index.js
CHANGED
|
@@ -37,6 +37,7 @@ function createCommand(name) {
|
|
|
37
37
|
.addOption(new commander_1.Option('--client <sap-client>', 'Client number of target ABAP system').conflicts('destination'))
|
|
38
38
|
.addOption(new commander_1.Option('--cloud', 'Target is an ABAP Cloud system').conflicts('destination'))
|
|
39
39
|
.addOption(new commander_1.Option('--service <service-path>', 'Target alias for deployment service'))
|
|
40
|
+
.addOption(new commander_1.Option('--authentication-type <authentication-type>', 'Authentication type for the app'))
|
|
40
41
|
.addOption(new commander_1.Option('--cloud-service-key <file-location>', 'JSON file location with the ABAP cloud service key.').conflicts('destination'))
|
|
41
42
|
.addOption(new commander_1.Option('--cloud-service-env', 'Read ABAP cloud service properties from environment variables or .env file').conflicts(['cloudServiceKey', 'destination']))
|
|
42
43
|
.option('--package <abap-package>', 'Package name for deploy target ABAP system')
|
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.31",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"author": "@SAP/ux-tools-team",
|
|
15
15
|
"main": "dist/index.js",
|
|
@@ -32,12 +32,12 @@
|
|
|
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.12.6",
|
|
36
35
|
"@sap-ux/btp-utils": "0.14.4",
|
|
37
|
-
"@sap-ux/
|
|
38
|
-
"@sap-ux/system-access": "0.3.32",
|
|
36
|
+
"@sap-ux/axios-extension": "1.12.6",
|
|
39
37
|
"@sap-ux/ui5-config": "0.22.5",
|
|
40
|
-
"@sap-ux/
|
|
38
|
+
"@sap-ux/logger": "0.5.1",
|
|
39
|
+
"@sap-ux/project-input-validator": "0.2.3",
|
|
40
|
+
"@sap-ux/system-access": "0.3.32"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/prompts": "2.4.4",
|