@sap-ux/inquirer-common 0.7.0 → 0.7.2

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.
@@ -64,7 +64,9 @@ exports.ERROR_MAP = {
64
64
  [ERROR_TYPE.CERT_UKNOWN_OR_INVALID]: [
65
65
  /UNABLE_TO_GET_ISSUER_CERT/,
66
66
  /UNABLE_TO_GET_ISSUER_CERT_LOCALLY/,
67
- /unable to get local issuer certificate/
67
+ /unable to get local issuer certificate/,
68
+ /UNABLE_TO_VERIFY_LEAF_SIGNATURE/,
69
+ /ERR_TLS_CERT_ALTNAME_INVALID/
68
70
  ],
69
71
  [ERROR_TYPE.CERT_EXPIRED]: [/CERT_HAS_EXPIRED/],
70
72
  [ERROR_TYPE.CERT_SELF_SIGNED]: [/DEPTH_ZERO_SELF_SIGNED_CERT/],
@@ -44,5 +44,5 @@ export declare function withCondition(questions: Question[], condition: (answers
44
44
  * @param promptState - the runtime state of the prompts, this can be used to provide additional answers not defined by the prompt answers object
45
45
  * @returns - the extended questions
46
46
  */
47
- export declare function extendWithOptions<T extends YUIQuestion = YUIQuestion>(questions: T[], promptOptions: Record<string, CommonPromptOptions & PromptDefaultValue<string | boolean>>, promptState?: Answers): YUIQuestion[];
47
+ export declare function extendWithOptions<T extends YUIQuestion = YUIQuestion>(questions: T[], promptOptions: Record<string, Omit<CommonPromptOptions, 'hide'> & PromptDefaultValue<string | boolean>>, promptState?: Answers): YUIQuestion[];
48
48
  //# sourceMappingURL=helpers.d.ts.map
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sap-ux/inquirer-common",
3
3
  "description": "Commonly used shared functionality and types to support inquirer modules.",
4
- "version": "0.7.0",
4
+ "version": "0.7.2",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/SAP/open-ux-tools.git",
@@ -30,9 +30,9 @@
30
30
  "semver": "7.5.4",
31
31
  "@sap-ux/btp-utils": "1.1.0",
32
32
  "@sap-ux/feature-toggle": "0.3.0",
33
- "@sap-ux/fiori-generator-shared": "0.12.0",
33
+ "@sap-ux/fiori-generator-shared": "0.12.1",
34
34
  "@sap-ux/guided-answers-helper": "0.3.0",
35
- "@sap-ux/telemetry": "0.6.0",
35
+ "@sap-ux/telemetry": "0.6.1",
36
36
  "@sap-ux/logger": "0.7.0",
37
37
  "@sap-ux/ui5-info": "0.11.0"
38
38
  },