@scalar/types
Advanced tools
Comparing version 0.0.20 to 0.0.21
# @scalar/types | ||
## 0.0.21 | ||
### Patch Changes | ||
- 9d23f95: chore: deprecate Parameters, use Parameter instead | ||
## 0.0.20 | ||
@@ -4,0 +10,0 @@ |
@@ -219,3 +219,7 @@ import type { OpenAPI, OpenAPIV2, OpenAPIV3, OpenAPIV3_1 } from '@scalar/openapi-types'; | ||
}; | ||
export type Parameters = { | ||
/** | ||
* @deprecated Use Parameter instead | ||
*/ | ||
export type Parameters = Parameter; | ||
export type Parameter = { | ||
name: string; | ||
@@ -277,3 +281,3 @@ in?: string; | ||
export type TransformedOperation = Operation & { | ||
pathParameters?: Parameters[]; | ||
pathParameters?: Parameter[]; | ||
}; | ||
@@ -280,0 +284,0 @@ export type CollapsedSidebarItems = Record<string, boolean>; |
@@ -19,3 +19,3 @@ { | ||
], | ||
"version": "0.0.20", | ||
"version": "0.0.21", | ||
"engines": { | ||
@@ -22,0 +22,0 @@ "node": ">=18" |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
33955
512