Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Commit 3e50d70

Browse files
committed
Update OpenAPI spec for release v0.11.10
1 parent a0b4811 commit 3e50d70

2 files changed

Lines changed: 21 additions & 2 deletions

File tree

openapi.yaml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22
info:
33
title: Supermodel
44
description: Code Graphing & Analysis API
5-
version: 0.11.9
5+
version: 0.11.10
66
license:
77
name: Supermodel API Terms of Service
88
url: https://supermodeltools.com/legal/api-terms
@@ -1497,6 +1497,25 @@ paths:
14971497
- ApiKeyAuth: []
14981498
parameters:
14991499
- $ref: '#/components/parameters/IdempotencyKey'
1500+
- name: min_confidence
1501+
in: query
1502+
required: false
1503+
description: Minimum confidence level for returned candidates. Use `high` to limit results to the most certain dead code, reducing noise for large repositories. When omitted, all confidence levels are returned.
1504+
schema:
1505+
type: string
1506+
enum:
1507+
- high
1508+
- medium
1509+
- low
1510+
- name: limit
1511+
in: query
1512+
required: false
1513+
description: Maximum number of candidates to return, sorted by confidence (high first). Use to cap response size for large repositories. When omitted, all candidates are returned.
1514+
schema:
1515+
type: integer
1516+
format: int32
1517+
minimum: 1
1518+
maximum: 10000
15001519
requestBody:
15011520
required: true
15021521
content:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@supermodeltools/openapi-spec",
3-
"version": "0.11.9",
3+
"version": "0.11.10",
44
"description": "Supermodel Public OpenAPI Specification",
55
"main": "openapi.yaml",
66
"files": [

0 commit comments

Comments
 (0)