@@ -89,7 +89,7 @@ export interface EvalCustomDataSourceConfig {
8989 * The json schema for the run data source items. Learn how to build JSON schemas
9090 * [here](https://json-schema.org/).
9191 */
92- schema : Record < string , unknown > ;
92+ schema : { [ key : string ] : unknown } ;
9393
9494 /**
9595 * The type of data source. Always `custom`.
@@ -105,7 +105,7 @@ export interface EvalStoredCompletionsDataSourceConfig {
105105 * The json schema for the run data source items. Learn how to build JSON schemas
106106 * [here](https://json-schema.org/).
107107 */
108- schema : Record < string , unknown > ;
108+ schema : { [ key : string ] : unknown } ;
109109
110110 /**
111111 * The type of data source. Always `stored_completions`.
@@ -195,7 +195,7 @@ export namespace EvalCreateResponse {
195195 * The json schema for the run data source items. Learn how to build JSON schemas
196196 * [here](https://json-schema.org/).
197197 */
198- schema : Record < string , unknown > ;
198+ schema : { [ key : string ] : unknown } ;
199199
200200 /**
201201 * The type of data source. Always `logs`.
@@ -316,7 +316,7 @@ export namespace EvalRetrieveResponse {
316316 * The json schema for the run data source items. Learn how to build JSON schemas
317317 * [here](https://json-schema.org/).
318318 */
319- schema : Record < string , unknown > ;
319+ schema : { [ key : string ] : unknown } ;
320320
321321 /**
322322 * The type of data source. Always `logs`.
@@ -437,7 +437,7 @@ export namespace EvalUpdateResponse {
437437 * The json schema for the run data source items. Learn how to build JSON schemas
438438 * [here](https://json-schema.org/).
439439 */
440- schema : Record < string , unknown > ;
440+ schema : { [ key : string ] : unknown } ;
441441
442442 /**
443443 * The type of data source. Always `logs`.
@@ -558,7 +558,7 @@ export namespace EvalListResponse {
558558 * The json schema for the run data source items. Learn how to build JSON schemas
559559 * [here](https://json-schema.org/).
560560 */
561- schema : Record < string , unknown > ;
561+ schema : { [ key : string ] : unknown } ;
562562
563563 /**
564564 * The type of data source. Always `logs`.
@@ -665,7 +665,7 @@ export namespace EvalCreateParams {
665665 /**
666666 * The json schema for each row in the data source.
667667 */
668- item_schema : Record < string , unknown > ;
668+ item_schema : { [ key : string ] : unknown } ;
669669
670670 /**
671671 * The type of data source. Always `custom`.
@@ -692,7 +692,7 @@ export namespace EvalCreateParams {
692692 /**
693693 * Metadata filters for the logs data source.
694694 */
695- metadata ?: Record < string , unknown > ;
695+ metadata ?: { [ key : string ] : unknown } ;
696696 }
697697
698698 /**
@@ -707,7 +707,7 @@ export namespace EvalCreateParams {
707707 /**
708708 * Metadata filters for the stored completions data source.
709709 */
710- metadata ?: Record < string , unknown > ;
710+ metadata ?: { [ key : string ] : unknown } ;
711711 }
712712
713713 /**
0 commit comments