Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@scalar/oas-utils

Package Overview
Dependencies
Maintainers
0
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@scalar/oas-utils - npm Package Compare versions

Comparing version 0.2.61 to 0.2.62

8

CHANGELOG.md
# @scalar/oas-utils
## 0.2.62
### Patch Changes
- 097ab40: fix: add mapping of header to headers for api client ingress
- Updated dependencies [197e3ae]
- @scalar/themes@0.9.43
## 0.2.61

@@ -4,0 +12,0 @@

@@ -115,6 +115,13 @@ import { z } from 'zod';

cookie: [],
// deprecated TODO: add zod transform to remove
header: [],
headers: [],
};
// Populated the separated params
request.parameters?.forEach((p) => parameters[p.in].push(createParamInstance(p)));
// TODO: add zod transform to remove header and only support headers
if (parameters.header.length > 0) {
parameters.headers = parameters.header;
parameters.header = [];
}
// ---------------------------------------------------------------------------

@@ -121,0 +128,0 @@ // Handle request body defaulting for various content type encodings

12

package.json

@@ -19,3 +19,3 @@ {

],
"version": "0.2.61",
"version": "0.2.62",
"engines": {

@@ -111,5 +111,5 @@ "node": ">=18"

"@scalar/object-utils": "1.1.10",
"@scalar/types": "0.0.17",
"@scalar/themes": "0.9.42",
"@scalar/openapi-types": "0.1.4"
"@scalar/themes": "0.9.43",
"@scalar/openapi-types": "0.1.4",
"@scalar/types": "0.0.17"
},

@@ -122,4 +122,4 @@ "devDependencies": {

"@scalar/build-tooling": "0.1.11",
"@scalar/openapi-parser": "0.8.8",
"@scalar/openapi-types": "0.1.4"
"@scalar/openapi-types": "0.1.4",
"@scalar/openapi-parser": "0.8.8"
},

@@ -126,0 +126,0 @@ "scripts": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc