@sap-ux/adp-tooling 0.12.22 → 0.12.25
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/add-component-usages/index.d.ts +12 -0
- package/dist/prompts/add-component-usages/index.js +192 -0
- package/dist/prompts/index.d.ts +1 -0
- package/dist/prompts/index.js +3 -1
- package/dist/translations/adp-tooling.i18n.json +22 -0
- package/dist/types.d.ts +20 -20
- package/dist/writer/changes/writers/component-usages-writer.js +13 -13
- package/package.json +4 -4
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { YUIQuestion } from '@sap-ux/inquirer-common';
|
|
2
|
+
import type { UI5FlexLayer } from '@sap-ux/project-access';
|
|
3
|
+
import { type AddComponentUsageAnswers } from '../../types';
|
|
4
|
+
/**
|
|
5
|
+
* Gets the prompts for adding a component usage.
|
|
6
|
+
*
|
|
7
|
+
* @param {string} basePath - The base path of the project.
|
|
8
|
+
* @param {UI5FlexLayer} layer - The layer of the project.
|
|
9
|
+
* @returns {YUIQuestion<AddComponentUsageAnswers>[]} The questions/prompts.
|
|
10
|
+
*/
|
|
11
|
+
export declare function getPrompts(basePath: string, layer: UI5FlexLayer): YUIQuestion<AddComponentUsageAnswers>[];
|
|
12
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.getPrompts = void 0;
|
|
4
|
+
const change_utils_1 = require("../../base/change-utils");
|
|
5
|
+
const i18n_1 = require("../../i18n");
|
|
6
|
+
const project_input_validator_1 = require("@sap-ux/project-input-validator");
|
|
7
|
+
/**
|
|
8
|
+
* Exucute generic validation for input.
|
|
9
|
+
*
|
|
10
|
+
* @param value The value to validate.
|
|
11
|
+
* @returns {string | boolean} An error message if the value is an empty string, or true if it is not.
|
|
12
|
+
*/
|
|
13
|
+
function validatePromptInput(value) {
|
|
14
|
+
const validators = [project_input_validator_1.validateEmptyString, project_input_validator_1.validateEmptySpaces, project_input_validator_1.validateSpecialChars];
|
|
15
|
+
for (const validator of validators) {
|
|
16
|
+
const validationResult = validator(value);
|
|
17
|
+
if (typeof validationResult === 'string') {
|
|
18
|
+
return validationResult;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
return true;
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* Validates the input for the component usage ID.
|
|
25
|
+
*
|
|
26
|
+
* @param value The value to validate.
|
|
27
|
+
* @param changeFiles The change files to check for duplication.
|
|
28
|
+
* @param isCustomerBase Flag to check if the project is customer scenario.
|
|
29
|
+
* @returns {string | boolean} An error message if the value is invalid, or true if it is not.
|
|
30
|
+
*/
|
|
31
|
+
function validatePromptId(value, changeFiles, isCustomerBase) {
|
|
32
|
+
const validationResult = validatePromptInput(value);
|
|
33
|
+
if (typeof validationResult === 'string') {
|
|
34
|
+
return validationResult;
|
|
35
|
+
}
|
|
36
|
+
if (isCustomerBase && !(0, project_input_validator_1.hasCustomerPrefix)(value)) {
|
|
37
|
+
return (0, i18n_1.t)('validators.errorInputInvalidValuePrefix', {
|
|
38
|
+
value: (0, i18n_1.t)('prompts.component.usageIdLabel'),
|
|
39
|
+
prefix: "customer." /* NamespacePrefix.CUSTOMER */
|
|
40
|
+
});
|
|
41
|
+
}
|
|
42
|
+
if ((0, project_input_validator_1.hasContentDuplication)(value, 'dataSource', changeFiles)) {
|
|
43
|
+
return (0, i18n_1.t)('validators.errorDuplicateValueComponentId');
|
|
44
|
+
}
|
|
45
|
+
return true;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Validates the input for the library reference.
|
|
49
|
+
*
|
|
50
|
+
* @param value The value to validate.
|
|
51
|
+
* @param changeFiles The change files to check for duplication.
|
|
52
|
+
* @param isCustomerBase Flag to check if the project is customer scenario.
|
|
53
|
+
* @returns {string | boolean} An error message if the value is invalid, or true if it is not.
|
|
54
|
+
*/
|
|
55
|
+
function validatePromptLibrary(value, changeFiles, isCustomerBase) {
|
|
56
|
+
const validationResult = validatePromptInput(value);
|
|
57
|
+
if (typeof validationResult === 'string') {
|
|
58
|
+
return validationResult;
|
|
59
|
+
}
|
|
60
|
+
if (isCustomerBase && !(0, project_input_validator_1.hasCustomerPrefix)(value)) {
|
|
61
|
+
return (0, i18n_1.t)('validators.errorInputInvalidValuePrefix', {
|
|
62
|
+
value: (0, i18n_1.t)('prompts.component.libraryLabel'),
|
|
63
|
+
prefix: "customer." /* NamespacePrefix.CUSTOMER */
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
if ((0, project_input_validator_1.hasContentDuplication)(value, 'dataSource', changeFiles)) {
|
|
67
|
+
return (0, i18n_1.t)('validators.errorDuplicateValueLibrary');
|
|
68
|
+
}
|
|
69
|
+
return true;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Validates a JSON string.
|
|
73
|
+
*
|
|
74
|
+
* @param value The JSON string to validate.
|
|
75
|
+
* @returns {boolean | string} True if the JSON is valid, or an error message if validation fails.
|
|
76
|
+
*/
|
|
77
|
+
function validatePromptJSON(value) {
|
|
78
|
+
const validationResult = (0, project_input_validator_1.validateEmptyString)(value);
|
|
79
|
+
if (typeof validationResult === 'string') {
|
|
80
|
+
return true;
|
|
81
|
+
}
|
|
82
|
+
return (0, project_input_validator_1.validateJSON)(value);
|
|
83
|
+
}
|
|
84
|
+
/**
|
|
85
|
+
* Gets the prompts for adding a component usage.
|
|
86
|
+
*
|
|
87
|
+
* @param {string} basePath - The base path of the project.
|
|
88
|
+
* @param {UI5FlexLayer} layer - The layer of the project.
|
|
89
|
+
* @returns {YUIQuestion<AddComponentUsageAnswers>[]} The questions/prompts.
|
|
90
|
+
*/
|
|
91
|
+
function getPrompts(basePath, layer) {
|
|
92
|
+
const componentUsageChangeFiles = (0, change_utils_1.getChangesByType)(basePath, "appdescr_ui5_addComponentUsages" /* ChangeType.ADD_COMPONENT_USAGES */, 'manifest');
|
|
93
|
+
const libraryChangeFiles = (0, change_utils_1.getChangesByType)(basePath, "appdescr_ui5_addLibraries" /* ChangeType.ADD_LIBRARY_REFERENCE */, 'manifest');
|
|
94
|
+
const isCustomerBase = layer === "CUSTOMER_BASE" /* FlexLayer.CUSTOMER_BASE */;
|
|
95
|
+
const isLazyDropDownOptions = [
|
|
96
|
+
{ name: (0, i18n_1.t)('choices.true'), value: 'true' },
|
|
97
|
+
{ name: (0, i18n_1.t)('choices.false'), value: 'false' }
|
|
98
|
+
];
|
|
99
|
+
return [
|
|
100
|
+
{
|
|
101
|
+
type: 'input',
|
|
102
|
+
name: `id`,
|
|
103
|
+
message: (0, i18n_1.t)('prompts.component.usageIdLabel'),
|
|
104
|
+
validate: (value) => validatePromptId(value, componentUsageChangeFiles, isCustomerBase),
|
|
105
|
+
default: isCustomerBase ? "customer." /* NamespacePrefix.CUSTOMER */ : "" /* NamespacePrefix.EMPTY */,
|
|
106
|
+
store: false,
|
|
107
|
+
guiOptions: {
|
|
108
|
+
mandatory: true,
|
|
109
|
+
hint: (0, i18n_1.t)('prompts.component.usageIdTooltip')
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
type: 'input',
|
|
114
|
+
name: 'name',
|
|
115
|
+
message: (0, i18n_1.t)('prompts.component.nameLabel'),
|
|
116
|
+
validate: validatePromptInput,
|
|
117
|
+
store: false,
|
|
118
|
+
guiOptions: {
|
|
119
|
+
mandatory: true,
|
|
120
|
+
hint: (0, i18n_1.t)('prompts.component.nameTooltip')
|
|
121
|
+
}
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type: 'list',
|
|
125
|
+
name: 'isLazy',
|
|
126
|
+
message: (0, i18n_1.t)('prompts.component.isLazyLabel'),
|
|
127
|
+
choices: isLazyDropDownOptions,
|
|
128
|
+
default: isLazyDropDownOptions[1].value,
|
|
129
|
+
store: false,
|
|
130
|
+
guiOptions: {
|
|
131
|
+
mandatory: true,
|
|
132
|
+
hint: (0, i18n_1.t)('prompts.component.isLazyTooltip')
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
{
|
|
136
|
+
type: 'editor',
|
|
137
|
+
name: `settings`,
|
|
138
|
+
message: (0, i18n_1.t)('prompts.component.settingsLabel'),
|
|
139
|
+
validate: validatePromptJSON,
|
|
140
|
+
store: false,
|
|
141
|
+
guiOptions: {
|
|
142
|
+
hint: (0, i18n_1.t)('prompts.component.tooltip', { input: (0, i18n_1.t)('prompts.component.settingsLabel') })
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
type: 'editor',
|
|
147
|
+
name: `data`,
|
|
148
|
+
message: (0, i18n_1.t)('prompts.component.dataLabel'),
|
|
149
|
+
validate: validatePromptJSON,
|
|
150
|
+
store: false,
|
|
151
|
+
guiOptions: {
|
|
152
|
+
hint: (0, i18n_1.t)('prompts.component.tooltip', { input: (0, i18n_1.t)('prompts.component.dataLabel') })
|
|
153
|
+
}
|
|
154
|
+
},
|
|
155
|
+
{
|
|
156
|
+
type: 'confirm',
|
|
157
|
+
name: 'shouldAddLibrary',
|
|
158
|
+
message: (0, i18n_1.t)('prompts.component.shouldAddLibraryLabel'),
|
|
159
|
+
default: false,
|
|
160
|
+
guiOptions: {
|
|
161
|
+
hint: (0, i18n_1.t)('prompts.component.shouldAddLibraryTooltip')
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
type: 'input',
|
|
166
|
+
name: 'library',
|
|
167
|
+
message: (0, i18n_1.t)('prompts.component.libraryLabel'),
|
|
168
|
+
guiOptions: {
|
|
169
|
+
mandatory: true,
|
|
170
|
+
hint: (0, i18n_1.t)('prompts.component.libraryTooltip')
|
|
171
|
+
},
|
|
172
|
+
validate: (value) => validatePromptLibrary(value, libraryChangeFiles, isCustomerBase),
|
|
173
|
+
store: false,
|
|
174
|
+
when: (answers) => answers.shouldAddLibrary
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
type: 'list',
|
|
178
|
+
name: `libraryIsLazy`,
|
|
179
|
+
message: (0, i18n_1.t)('prompts.component.libraryIsLazyLabel'),
|
|
180
|
+
choices: isLazyDropDownOptions,
|
|
181
|
+
default: isLazyDropDownOptions[1].value,
|
|
182
|
+
store: false,
|
|
183
|
+
guiOptions: {
|
|
184
|
+
mandatory: true,
|
|
185
|
+
hint: (0, i18n_1.t)('prompts.component.libraryIsLazyTooltip')
|
|
186
|
+
},
|
|
187
|
+
when: (answers) => answers.shouldAddLibrary
|
|
188
|
+
}
|
|
189
|
+
];
|
|
190
|
+
}
|
|
191
|
+
exports.getPrompts = getPrompts;
|
|
192
|
+
//# sourceMappingURL=index.js.map
|
package/dist/prompts/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export { getPrompts as getPromptsForChangeDataSource } from './change-data-source';
|
|
2
|
+
export { getPrompts as getPromptsForAddComponentUsages } from './add-component-usages';
|
|
2
3
|
export { getPrompts as getPromptsForNewModel } from './add-new-model';
|
|
3
4
|
export { getPrompts as getPromptsForChangeInbound } from './change-inbound';
|
|
4
5
|
export { getPrompts as getPromptsForAddAnnotationsToOData } from './add-annotations-to-odata';
|
package/dist/prompts/index.js
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.getPromptsForAddAnnotationsToOData = exports.getPromptsForChangeInbound = exports.getPromptsForNewModel = exports.getPromptsForChangeDataSource = void 0;
|
|
3
|
+
exports.getPromptsForAddAnnotationsToOData = exports.getPromptsForChangeInbound = exports.getPromptsForNewModel = exports.getPromptsForAddComponentUsages = exports.getPromptsForChangeDataSource = void 0;
|
|
4
4
|
var change_data_source_1 = require("./change-data-source");
|
|
5
5
|
Object.defineProperty(exports, "getPromptsForChangeDataSource", { enumerable: true, get: function () { return change_data_source_1.getPrompts; } });
|
|
6
|
+
var add_component_usages_1 = require("./add-component-usages");
|
|
7
|
+
Object.defineProperty(exports, "getPromptsForAddComponentUsages", { enumerable: true, get: function () { return add_component_usages_1.getPrompts; } });
|
|
6
8
|
var add_new_model_1 = require("./add-new-model");
|
|
7
9
|
Object.defineProperty(exports, "getPromptsForNewModel", { enumerable: true, get: function () { return add_new_model_1.getPrompts; } });
|
|
8
10
|
var change_inbound_1 = require("./change-inbound");
|
|
@@ -29,6 +29,24 @@
|
|
|
29
29
|
"oDataAnnotationDataSourceUriTooltip": "Enter URI for the OData annotation data source",
|
|
30
30
|
"oDataAnnotationSettingsLabel": "OData Annotation Settings",
|
|
31
31
|
"oDataAnnotationSettingsTooltip": "If needed enter any additional {{value}} settings in the 'key':'value1','key2':'value2' format",
|
|
32
|
+
"component": {
|
|
33
|
+
"usage": "Component usage",
|
|
34
|
+
"usageIdLabel": "Component Usage ID",
|
|
35
|
+
"usageIdTooltip": "Enter the component usage ID you want to add",
|
|
36
|
+
"nameLabel": "Component Name",
|
|
37
|
+
"nameTooltip": "Enter the name of the component you want to add",
|
|
38
|
+
"isLazyLabel": "Set Component as Lazy",
|
|
39
|
+
"isLazyTooltip": "Select if the component should be lazy or not",
|
|
40
|
+
"settingsLabel": "Component Settings",
|
|
41
|
+
"dataLabel": "Component Data",
|
|
42
|
+
"tooltip": "If needed enter any additional {{input}} in the \"key1\":\"value1\",\"key2\":\"value2\" format",
|
|
43
|
+
"shouldAddLibraryLabel": "Do you want to add library reference?",
|
|
44
|
+
"shouldAddLibraryTooltip": "Choose if you want to add library reference",
|
|
45
|
+
"libraryLabel": "Library Reference",
|
|
46
|
+
"libraryTooltip": "Enter the library reference",
|
|
47
|
+
"libraryIsLazyLabel": "Set Library as Lazy",
|
|
48
|
+
"libraryIsLazyTooltip": "Choose if you want the library reference to be lazy or not"
|
|
49
|
+
},
|
|
32
50
|
"title": "Title",
|
|
33
51
|
"subtitle": "Subtitle",
|
|
34
52
|
"icon": "Icon"
|
|
@@ -44,11 +62,15 @@
|
|
|
44
62
|
"annotationFileAlreadyExists": "There is already an annotation file with the same name, please choose another file or rename the file and select it again",
|
|
45
63
|
"errorDuplicatedValueOData": "OData Annotation or OData Service with the same name was already added to the project",
|
|
46
64
|
"errorDuplicatedValueSapui5Model": "SAPUI5 Model with the same name was already added to the project",
|
|
65
|
+
"errorDuplicateValueComponentId": "Component usage with the same name was already added to the project",
|
|
66
|
+
"errorDuplicateValueLibrary": "Library with the same name was already added to the project",
|
|
47
67
|
"errorDuplicateNamesOData": "OData Service Name must be different from OData Annotation Data Source Name",
|
|
48
68
|
"errorInputInvalidValuePrefix": "{{value}} should start with '{{prefix}}'",
|
|
49
69
|
"errorInvalidDataSourceURI": "Invalid URI. Should start and end with '/' and contain no spaces"
|
|
50
70
|
},
|
|
51
71
|
"choices": {
|
|
72
|
+
"true": "true",
|
|
73
|
+
"false": "false",
|
|
52
74
|
"annotationFile": {
|
|
53
75
|
"selectFromWorkspace": "Select annotation file from workspace",
|
|
54
76
|
"createEmptyFile": "Create an empty annotation file"
|
package/dist/types.d.ts
CHANGED
|
@@ -261,26 +261,26 @@ export declare const enum AnnotationFileSelectType {
|
|
|
261
261
|
NewEmptyFile = 2
|
|
262
262
|
}
|
|
263
263
|
export interface ComponentUsagesData {
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
library
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
264
|
+
variant: DescriptorVariant;
|
|
265
|
+
answers: AddComponentUsageAnswers;
|
|
266
|
+
}
|
|
267
|
+
export interface AddComponentUsageAnswers {
|
|
268
|
+
/** Indicates whether the component is loaded lazily. */
|
|
269
|
+
isLazy: string;
|
|
270
|
+
/** Unique ID for the component usage. */
|
|
271
|
+
id: string;
|
|
272
|
+
/** Name of the component. */
|
|
273
|
+
name: string;
|
|
274
|
+
/** Serialized data specific to the component. */
|
|
275
|
+
data: string;
|
|
276
|
+
/** Settings related to the component. */
|
|
277
|
+
settings: string;
|
|
278
|
+
/** Indicates whether a library reference should be added */
|
|
279
|
+
shouldAddLibrary: boolean;
|
|
280
|
+
/** Reference to the component's library. */
|
|
281
|
+
library?: string;
|
|
282
|
+
/** Indicates whether the library reference is loaded lazily. */
|
|
283
|
+
libraryIsLazy?: string;
|
|
284
284
|
}
|
|
285
285
|
export interface NewModelData {
|
|
286
286
|
variant: DescriptorVariant;
|
|
@@ -23,10 +23,10 @@ class ComponentUsagesWriter {
|
|
|
23
23
|
* @param {ComponentUsagesData} data - The answers object containing information needed to construct the content property.
|
|
24
24
|
* @returns {object} The constructed content object for the component usages change.
|
|
25
25
|
*/
|
|
26
|
-
constructContent({
|
|
27
|
-
const { data,
|
|
26
|
+
constructContent({ answers }) {
|
|
27
|
+
const { data, id, settings, isLazy, name } = answers;
|
|
28
28
|
const componentUsages = {
|
|
29
|
-
[
|
|
29
|
+
[id]: {
|
|
30
30
|
name,
|
|
31
31
|
lazy: isLazy === 'true',
|
|
32
32
|
settings: (0, change_utils_1.parseStringToObject)(settings),
|
|
@@ -43,15 +43,14 @@ class ComponentUsagesWriter {
|
|
|
43
43
|
* @param {ComponentUsagesData} data - The answers object containing information needed to construct the content property.
|
|
44
44
|
* @returns {object | undefined} The constructed content object for the library reference change.
|
|
45
45
|
*/
|
|
46
|
-
constructLibContent(
|
|
47
|
-
|
|
48
|
-
if (!library.reference) {
|
|
46
|
+
constructLibContent({ answers }) {
|
|
47
|
+
if (!answers.library) {
|
|
49
48
|
return undefined;
|
|
50
49
|
}
|
|
51
50
|
return {
|
|
52
51
|
libraries: {
|
|
53
|
-
[library
|
|
54
|
-
lazy:
|
|
52
|
+
[answers.library]: {
|
|
53
|
+
lazy: answers.libraryIsLazy === 'true'
|
|
55
54
|
}
|
|
56
55
|
}
|
|
57
56
|
};
|
|
@@ -65,13 +64,14 @@ class ComponentUsagesWriter {
|
|
|
65
64
|
async write(data) {
|
|
66
65
|
const componentUsagesContent = this.constructContent(data);
|
|
67
66
|
const libRefContent = this.constructLibContent(data);
|
|
67
|
+
const timestamp = Date.now();
|
|
68
68
|
const shouldAddLibRef = libRefContent !== undefined;
|
|
69
|
-
const compUsagesChange = (0, change_utils_1.getChange)(data.
|
|
70
|
-
(0, change_utils_1.writeChangeToFolder)(this.projectPath, compUsagesChange, `id_${
|
|
69
|
+
const compUsagesChange = (0, change_utils_1.getChange)(data.variant, timestamp, componentUsagesContent, "appdescr_ui5_addComponentUsages" /* ChangeType.ADD_COMPONENT_USAGES */);
|
|
70
|
+
(0, change_utils_1.writeChangeToFolder)(this.projectPath, compUsagesChange, `id_${timestamp}_addComponentUsages.change`, this.fs, project_access_1.DirName.Manifest);
|
|
71
71
|
if (shouldAddLibRef) {
|
|
72
|
-
|
|
73
|
-
const refLibChange = (0, change_utils_1.getChange)(data.
|
|
74
|
-
(0, change_utils_1.writeChangeToFolder)(this.projectPath, refLibChange, `id_${
|
|
72
|
+
const libTimestamp = timestamp + 1;
|
|
73
|
+
const refLibChange = (0, change_utils_1.getChange)(data.variant, libTimestamp, libRefContent, "appdescr_ui5_addLibraries" /* ChangeType.ADD_LIBRARY_REFERENCE */);
|
|
74
|
+
(0, change_utils_1.writeChangeToFolder)(this.projectPath, refLibChange, `id_${libTimestamp}_addLibraries.change`, this.fs, project_access_1.DirName.Manifest);
|
|
75
75
|
}
|
|
76
76
|
}
|
|
77
77
|
}
|
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%3Aadp-tooling"
|
|
11
11
|
},
|
|
12
|
-
"version": "0.12.
|
|
12
|
+
"version": "0.12.25",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"author": "@SAP/ux-tools-team",
|
|
15
15
|
"main": "dist/index.js",
|
|
@@ -32,13 +32,13 @@
|
|
|
32
32
|
"prompts": "2.4.2",
|
|
33
33
|
"sanitize-filename": "1.6.3",
|
|
34
34
|
"uuid": "10.0.0",
|
|
35
|
-
"@sap-ux/axios-extension": "1.16.
|
|
35
|
+
"@sap-ux/axios-extension": "1.16.2",
|
|
36
36
|
"@sap-ux/btp-utils": "0.15.0",
|
|
37
37
|
"@sap-ux/inquirer-common": "0.4.3",
|
|
38
38
|
"@sap-ux/logger": "0.6.0",
|
|
39
|
-
"@sap-ux/project-access": "1.26.
|
|
39
|
+
"@sap-ux/project-access": "1.26.3",
|
|
40
40
|
"@sap-ux/project-input-validator": "0.3.2",
|
|
41
|
-
"@sap-ux/system-access": "0.5.
|
|
41
|
+
"@sap-ux/system-access": "0.5.4",
|
|
42
42
|
"@sap-ux/ui5-config": "0.23.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|