@sap-ux/cf-deploy-config-inquirer 0.5.47 → 0.5.50
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/prompts/prompts.js
CHANGED
|
@@ -131,7 +131,7 @@ function getOverwritePrompt() {
|
|
|
131
131
|
}
|
|
132
132
|
/**
|
|
133
133
|
*
|
|
134
|
-
* @returns A list question object with the available router options, defaulting to `
|
|
134
|
+
* @returns A list question object with the available router options, defaulting to `Managed`.
|
|
135
135
|
*/
|
|
136
136
|
function getRouterOptionsPrompt() {
|
|
137
137
|
return {
|
|
@@ -141,7 +141,7 @@ function getRouterOptionsPrompt() {
|
|
|
141
141
|
mandatory: true,
|
|
142
142
|
breadcrumb: (0, i18n_1.t)('prompts.generateDeploymentRouterOptionsMessage')
|
|
143
143
|
},
|
|
144
|
-
default: () => types_1.RouterModuleType.
|
|
144
|
+
default: () => types_1.RouterModuleType.Managed, // Should always be the preferred choice
|
|
145
145
|
message: () => (0, i18n_1.t)('prompts.generateDeploymentRouterOptionsMessage'),
|
|
146
146
|
additionalMessages: (selectedRouter) => {
|
|
147
147
|
let additionalMessage;
|
|
@@ -154,7 +154,6 @@ function getRouterOptionsPrompt() {
|
|
|
154
154
|
return additionalMessage;
|
|
155
155
|
},
|
|
156
156
|
choices: [
|
|
157
|
-
{ name: (0, i18n_1.t)('prompts.routerType.none'), value: types_1.RouterModuleType.None },
|
|
158
157
|
{ name: (0, i18n_1.t)('prompts.routerType.managedAppRouter'), value: types_1.RouterModuleType.Managed },
|
|
159
158
|
{ name: (0, i18n_1.t)('prompts.routerType.appFrontAppService'), value: types_1.RouterModuleType.AppFront }
|
|
160
159
|
]
|
|
@@ -19,8 +19,7 @@
|
|
|
19
19
|
"routerTypeMessage": "Add Router Module",
|
|
20
20
|
"routerType": {
|
|
21
21
|
"managedAppRouter": "Add Application to Managed Application Router",
|
|
22
|
-
"appFrontAppService": "Add Application to Application Frontend Service"
|
|
23
|
-
"none": "None"
|
|
22
|
+
"appFrontAppService": "Add Application to Application Frontend Service"
|
|
24
23
|
}
|
|
25
24
|
},
|
|
26
25
|
"routerType": {
|
package/dist/types.d.ts
CHANGED
|
@@ -120,7 +120,6 @@ export declare const RouterModuleType: {
|
|
|
120
120
|
readonly Standard: "standard";
|
|
121
121
|
readonly Managed: "managed";
|
|
122
122
|
readonly AppFront: "appFront";
|
|
123
|
-
readonly None: "none";
|
|
124
123
|
};
|
|
125
124
|
export type RouterModuleType = (typeof RouterModuleType)[keyof typeof RouterModuleType];
|
|
126
125
|
/**
|
package/dist/types.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/cf-deploy-config-inquirer",
|
|
3
3
|
"description": "Prompts module that can provide prompts for cf deployment config writer",
|
|
4
|
-
"version": "0.5.
|
|
4
|
+
"version": "0.5.50",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"i18next": "25.3.0",
|
|
23
23
|
"inquirer-autocomplete-prompt": "2.0.1",
|
|
24
|
-
"@sap-ux/inquirer-common": "0.9.
|
|
24
|
+
"@sap-ux/inquirer-common": "0.9.13",
|
|
25
25
|
"@sap-ux/btp-utils": "1.1.5",
|
|
26
26
|
"@sap-ux/logger": "0.7.1"
|
|
27
27
|
},
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@types/inquirer": "8.2.6",
|
|
32
32
|
"@sap/cf-tools": "3.2.2",
|
|
33
33
|
"inquirer": "8.2.7",
|
|
34
|
-
"@sap-ux/project-input-validator": "0.6.
|
|
34
|
+
"@sap-ux/project-input-validator": "0.6.36"
|
|
35
35
|
},
|
|
36
36
|
"engines": {
|
|
37
37
|
"node": ">=20.x"
|