We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2972c55 commit d145774Copy full SHA for d145774
1 file changed
src/lib/layout/api-endpoint.ts
@@ -63,6 +63,7 @@ interface ApiEndpointParameter {
63
itemFormat?: string
64
itemEnumValues?: string[]
65
objectParameters?: ApiEndpointParameter[]
66
+ jsonType: Parameter['jsonType']
67
}
68
69
interface CodeSampleContext {
@@ -175,6 +176,7 @@ const mapBlueprintParamToEndpointParam = (
175
176
format: normalizePropertyFormatForDocs(param.format),
177
isDeprecated: param.isDeprecated,
178
deprecationMessage: param.deprecationMessage,
179
+ jsonType: param.jsonType,
180
181
...(param.format === 'enum' && {
182
enumValues: param.values.map(({ name }) => name),
0 commit comments