@orval/core 7.0.1 → 7.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/index.d.ts +2 -2
- package/dist/index.js +57 -1280
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1241,11 +1241,11 @@ declare const logError: (err: unknown, tag?: string) => void;
|
|
|
1241
1241
|
declare const mismatchArgsMessage: (mismatchArgs: string[]) => void;
|
|
1242
1242
|
declare const createSuccessMessage: (backend?: string) => void;
|
|
1243
1243
|
declare const ibmOpenapiValidatorWarnings: (warnings: {
|
|
1244
|
-
path: string;
|
|
1244
|
+
path: string[];
|
|
1245
1245
|
message: string;
|
|
1246
1246
|
}[]) => void;
|
|
1247
1247
|
declare const ibmOpenapiValidatorErrors: (errors: {
|
|
1248
|
-
path: string;
|
|
1248
|
+
path: string[];
|
|
1249
1249
|
message: string;
|
|
1250
1250
|
}[]) => void;
|
|
1251
1251
|
type LogType = 'error' | 'warn' | 'info';
|