From 8d455b3c705b57f461739d34a7bf9d7c67208d76 Mon Sep 17 00:00:00 2001 From: Jonas Lagoni Date: Mon, 6 Nov 2023 10:24:53 -1000 Subject: [PATCH] Update src/third-version.ts Co-authored-by: Lukasz Gornicki --- src/third-version.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/third-version.ts b/src/third-version.ts index 88dc6257..44dfce0d 100644 --- a/src/third-version.ts +++ b/src/third-version.ts @@ -435,7 +435,7 @@ function reportUnsupportedParameterValues(schema: any) { const listOfProperties = excessProperties.map(([propertyName, property]) => { return `- schema.${propertyName} with value: ${JSON.stringify(property)} are no longer supported` }) - console.warn(`Found properties in parameter schema that are no longer supported and will be ignored by the converter.\n${listOfProperties.join('\n')}`); + console.warn(`Found properties in parameter schema that are no longer supported. Conversion completes with empty parameter object.\n${listOfProperties.join('\n')}`); } }