@sap/generator-adaptation-project
Version:
Adaptation project allows you to create an app variant for an existing SAP Fiori elements-based or SAPUI5 freestyle application, without changing the original application.
19 lines • 939 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.getDeployActionsChoices = exports.getInputChoiceChoices = void 0;
const adp_common_1 = require("@sap/adp-common");
function getInputChoiceChoices() {
return [
{ name: adp_common_1.InputChoice.ENTER_MANUALLY, value: adp_common_1.InputChoice.ENTER_MANUALLY },
{ value: adp_common_1.InputChoice.CHOOSE_FROM_EXISTING, name: adp_common_1.InputChoice.CHOOSE_FROM_EXISTING }
];
}
exports.getInputChoiceChoices = getInputChoiceChoices;
function getDeployActionsChoices() {
return [
{ name: adp_common_1.DeploymentOperations.DEPLOY, value: adp_common_1.DeploymentOperations.DEPLOY.toLowerCase() },
{ name: adp_common_1.DeploymentOperations.UNDEPLOY, value: adp_common_1.DeploymentOperations.UNDEPLOY.toLowerCase() }
];
}
exports.getDeployActionsChoices = getDeployActionsChoices;
//# sourceMappingURL=choices.js.map