@supermodeltools/openapi-spec 0.11.9 → 0.11.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openapi.yaml +20 -1
- package/package.json +1 -1
package/openapi.yaml
CHANGED
|
@@ -2,7 +2,7 @@ openapi: 3.0.0
|
|
|
2
2
|
info:
|
|
3
3
|
title: Supermodel
|
|
4
4
|
description: Code Graphing & Analysis API
|
|
5
|
-
version: 0.11.
|
|
5
|
+
version: 0.11.11
|
|
6
6
|
license:
|
|
7
7
|
name: Supermodel API Terms of Service
|
|
8
8
|
url: https://supermodeltools.com/legal/api-terms
|
|
@@ -1497,6 +1497,25 @@ paths:
|
|
|
1497
1497
|
- ApiKeyAuth: []
|
|
1498
1498
|
parameters:
|
|
1499
1499
|
- $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
|
|
1500
1519
|
requestBody:
|
|
1501
1520
|
required: true
|
|
1502
1521
|
content:
|