@orval/core 6.30.0 → 6.30.1
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.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -47259,10 +47259,11 @@ var generateVerbOptions = async ({
|
|
|
47259
47259
|
(acc, [tag, options]) => tags.includes(tag) ? mergeDeep(acc, options) : acc,
|
|
47260
47260
|
{}
|
|
47261
47261
|
);
|
|
47262
|
-
const override =
|
|
47263
|
-
|
|
47264
|
-
|
|
47265
|
-
|
|
47262
|
+
const override = {
|
|
47263
|
+
...output.override,
|
|
47264
|
+
...overrideTag,
|
|
47265
|
+
...overrideOperation
|
|
47266
|
+
};
|
|
47266
47267
|
const overrideOperationName = overrideOperation?.operationName || output.override?.operationName;
|
|
47267
47268
|
const overriddenOperationName = overrideOperationName ? overrideOperationName(operation, route, verb) : camel(operationId);
|
|
47268
47269
|
const operationName = sanitize(overriddenOperationName, { es5keyword: true });
|