New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@typespec/http

Package Overview
Dependencies
Maintainers
0
Versions
194
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typespec/http - npm Package Compare versions

Comparing version

to
0.60.0-dev.3

12

dist/src/responses.js

@@ -82,3 +82,3 @@ import { createDiagnosticCollector, getDoc, getErrorsDoc, getReturnsDoc, isErrorModel, isNullType, isVoidType, } from "@typespec/compiler";

type: responseType,
description: getResponseDescription(program, operation, responseType, statusCode, resolvedBody),
description: getResponseDescription(program, operation, responseType, statusCode, metadata),
responses: [],

@@ -144,3 +144,9 @@ };

}
function getResponseDescription(program, operation, responseType, statusCode, body) {
function isResponseEnvelope(metadata) {
return metadata.some((prop) => prop.kind === "body" ||
prop.kind === "bodyRoot" ||
prop.kind === "multipartBody" ||
prop.kind === "statusCode");
}
function getResponseDescription(program, operation, responseType, statusCode, metadata) {
// NOTE: If the response type is an envelope and not the same as the body

@@ -153,3 +159,3 @@ // type, then use its @doc as the response description. However, if the

// the output to change unnecessarily.
if (body === undefined || body.property) {
if (isResponseEnvelope(metadata)) {
const desc = getDoc(program, responseType);

@@ -156,0 +162,0 @@ if (desc) {

{
"name": "@typespec/http",
"version": "0.60.0-dev.2",
"version": "0.60.0-dev.3",
"author": "Microsoft Corporation",

@@ -42,7 +42,7 @@ "description": "TypeSpec HTTP protocol binding",

"peerDependencies": {
"@typespec/compiler": "~0.59.0 || >=0.60.0-dev <0.60.0"
"@typespec/compiler": "~0.59.1 || >=0.60.0-dev <0.60.0"
},
"devDependencies": {
"@types/node": "~18.11.19",
"@typespec/compiler": "~0.59.0 || >=0.60.0-dev <0.60.0",
"@typespec/compiler": "~0.59.1 || >=0.60.0-dev <0.60.0",
"@typespec/library-linter": "~0.59.0 || >=0.60.0-dev <0.60.0",

@@ -49,0 +49,0 @@ "@vitest/coverage-v8": "^2.0.4",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet