@sap-ux/odata-service-inquirer 1.0.0 → 1.1.0
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/types.d.ts +7 -7
- package/package.json +5 -5
package/dist/types.d.ts
CHANGED
|
@@ -157,19 +157,19 @@ export interface EntitySelectionAnswers {
|
|
|
157
157
|
[EntityPromptNames.filterEntityType]?: EntityAnswer;
|
|
158
158
|
}
|
|
159
159
|
export interface TableConfigAnswers {
|
|
160
|
-
[EntityPromptNames.tableType]
|
|
161
|
-
[EntityPromptNames.hierarchyQualifier]
|
|
160
|
+
[EntityPromptNames.tableType]?: TableType;
|
|
161
|
+
[EntityPromptNames.hierarchyQualifier]?: string;
|
|
162
162
|
}
|
|
163
163
|
export interface AnnotationGenerationAnswers {
|
|
164
164
|
[EntityPromptNames.addFEOPAnnotations]?: boolean;
|
|
165
165
|
[EntityPromptNames.addLineItemAnnotations]?: boolean;
|
|
166
166
|
}
|
|
167
167
|
export interface AlpTableConfigAnswers {
|
|
168
|
-
[EntityPromptNames.tableAutoHide]
|
|
169
|
-
[EntityPromptNames.tableMultiSelect]
|
|
170
|
-
[EntityPromptNames.tableSelectionMode]
|
|
171
|
-
[EntityPromptNames.presentationQualifier]
|
|
172
|
-
[EntityPromptNames.smartVariantManagement]
|
|
168
|
+
[EntityPromptNames.tableAutoHide]?: boolean;
|
|
169
|
+
[EntityPromptNames.tableMultiSelect]?: boolean;
|
|
170
|
+
[EntityPromptNames.tableSelectionMode]?: TableSelectionMode;
|
|
171
|
+
[EntityPromptNames.presentationQualifier]?: string;
|
|
172
|
+
[EntityPromptNames.smartVariantManagement]?: boolean;
|
|
173
173
|
}
|
|
174
174
|
/**
|
|
175
175
|
* Convienience alias type for the entity related answers
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/odata-service-inquirer",
|
|
3
3
|
"description": "Prompts module that can prompt users for inputs required for odata service writing",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -28,15 +28,15 @@
|
|
|
28
28
|
"i18next": "23.5.1",
|
|
29
29
|
"inquirer-autocomplete-prompt": "2.0.1",
|
|
30
30
|
"os-name": "4.0.1",
|
|
31
|
+
"@sap-ux/btp-utils": "0.17.2",
|
|
31
32
|
"@sap-ux/axios-extension": "1.18.1",
|
|
32
33
|
"@sap-ux/fiori-generator-shared": "0.7.19",
|
|
33
34
|
"@sap-ux/guided-answers-helper": "0.2.0",
|
|
34
|
-
"@sap-ux/telemetry": "0.5.51",
|
|
35
35
|
"@sap-ux/inquirer-common": "0.6.4",
|
|
36
|
-
"@sap-ux/
|
|
37
|
-
"@sap-ux/btp-utils": "0.17.2",
|
|
38
|
-
"@sap-ux/project-access": "1.29.0",
|
|
36
|
+
"@sap-ux/telemetry": "0.5.51",
|
|
39
37
|
"@sap-ux/project-input-validator": "0.3.4",
|
|
38
|
+
"@sap-ux/project-access": "1.29.0",
|
|
39
|
+
"@sap-ux/logger": "0.6.0",
|
|
40
40
|
"@sap-ux/store": "1.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|