@sap-ux/odata-service-inquirer 2.3.10 → 2.3.12
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 +5 -0
- package/package.json +11 -11
package/dist/types.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { ListChoiceOptions } from 'inquirer';
|
|
|
7
7
|
import type { CapService } from '@sap-ux/cap-config-writer';
|
|
8
8
|
import type { EntityAnswer, NavigationEntityAnswer } from './prompts/edmx/entity-helper';
|
|
9
9
|
import type { TableSelectionMode, TableType } from '@sap-ux/fiori-elements-writer';
|
|
10
|
+
import type { serviceUrlInternalPromptNames } from './prompts/datasources/service-url/types';
|
|
10
11
|
/**
|
|
11
12
|
* This file contains types that are exported by the module and are needed for consumers using the APIs `prompt` and `getPrompts`.
|
|
12
13
|
*/
|
|
@@ -75,6 +76,10 @@ export interface OdataServiceAnswers {
|
|
|
75
76
|
*
|
|
76
77
|
*/
|
|
77
78
|
connectedSystem?: ConnectedSystem;
|
|
79
|
+
/**
|
|
80
|
+
* If the user chose to ignore the certificate error when connecting to the service the value will be true.
|
|
81
|
+
*/
|
|
82
|
+
[serviceUrlInternalPromptNames.ignoreCertError]?: boolean;
|
|
78
83
|
}
|
|
79
84
|
export interface ConnectedSystem {
|
|
80
85
|
/**
|
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": "2.3.
|
|
4
|
+
"version": "2.3.12",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"os-name": "4.0.1",
|
|
31
31
|
"@sap-ux/axios-extension": "1.20.2",
|
|
32
32
|
"@sap-ux/btp-utils": "1.0.3",
|
|
33
|
-
"@sap-ux/fiori-generator-shared": "0.11.
|
|
33
|
+
"@sap-ux/fiori-generator-shared": "0.11.3",
|
|
34
34
|
"@sap-ux/guided-answers-helper": "0.2.2",
|
|
35
|
-
"@sap-ux/telemetry": "0.5.
|
|
36
|
-
"@sap-ux/inquirer-common": "0.6.
|
|
35
|
+
"@sap-ux/telemetry": "0.5.78",
|
|
36
|
+
"@sap-ux/inquirer-common": "0.6.42",
|
|
37
37
|
"@sap-ux/logger": "0.6.0",
|
|
38
|
-
"@sap-ux/project-access": "1.29.
|
|
39
|
-
"@sap-ux/project-input-validator": "0.5.
|
|
38
|
+
"@sap-ux/project-access": "1.29.22",
|
|
39
|
+
"@sap-ux/project-input-validator": "0.5.5",
|
|
40
40
|
"@sap-ux/store": "1.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"@types/inquirer": "8.2.6",
|
|
47
47
|
"@types/lodash": "4.14.202",
|
|
48
48
|
"jest-extended": "3.2.4",
|
|
49
|
-
"@sap-ux/fiori-generator-shared": "0.11.
|
|
50
|
-
"@sap-ux/fiori-elements-writer": "2.3.
|
|
51
|
-
"@sap-ux/fiori-freestyle-writer": "2.3.
|
|
49
|
+
"@sap-ux/fiori-generator-shared": "0.11.3",
|
|
50
|
+
"@sap-ux/fiori-elements-writer": "2.3.7",
|
|
51
|
+
"@sap-ux/fiori-freestyle-writer": "2.3.5",
|
|
52
52
|
"@sap-ux/feature-toggle": "0.2.3",
|
|
53
|
-
"@sap-ux/odata-service-writer": "0.26.
|
|
54
|
-
"@sap-ux/cap-config-writer": "0.9.
|
|
53
|
+
"@sap-ux/odata-service-writer": "0.26.18",
|
|
54
|
+
"@sap-ux/cap-config-writer": "0.9.29"
|
|
55
55
|
},
|
|
56
56
|
"engines": {
|
|
57
57
|
"node": ">=18.x"
|