@bodhiapp/reference-api-types 0.0.7 → 0.0.8

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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -2
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -228,6 +228,8 @@ export interface ModelFacets {
228
228
  status: FacetBucket;
229
229
  /** provider slug → model count. */
230
230
  provider: FacetBucket;
231
+ /** family name → model count. Null/absent family is omitted (no key). */
232
+ family: FacetBucket;
231
233
  /** keys: open|closed. */
232
234
  open_weights: FacetBucket;
233
235
  }
@@ -341,13 +343,12 @@ export interface ListCatalogModelsQuery {
341
343
  capability?: Capability | Capability[];
342
344
  /** Repeatable; OR. Matches modalities_in ∪ modalities_out. */
343
345
  modality?: Modality | Modality[];
344
- /** Max input price ($/1M). */
346
+ /** Max input price ($/1M). `pricing_max=0` selects free (zero input price) models. */
345
347
  pricing_max?: number;
346
348
  /** Min input price ($/1M). */
347
349
  pricing_min?: number;
348
350
  /** Max output price ($/1M). */
349
351
  pricing_out_max?: number;
350
- pricing_band?: 'free' | 'low' | 'mid' | 'high';
351
352
  context_min?: number;
352
353
  /** Repeatable. "stable" selects rows whose status is ABSENT. */
353
354
  status?: ('alpha' | 'beta' | 'deprecated' | 'stable') | ('alpha' | 'beta' | 'deprecated' | 'stable')[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bodhiapp/reference-api-types",
3
- "version": "0.0.7",
3
+ "version": "0.0.8",
4
4
  "description": "TypeScript request/response types for the Bodhi Models Reference API (types only — no runtime).",
5
5
  "type": "module",
6
6
  "types": "dist/index.d.ts",