@@ -381,7 +381,7 @@ export interface BuildCreateParams {
381381 * Specifies what to build: a branch name, commit SHA, merge command
382382 * ("base..head"), or file contents
383383 */
384- revision : string | Record < string , BuildCreateParams . Content | BuildCreateParams . URL > ;
384+ revision : string | { [ key : string ] : BuildCreateParams . Content | BuildCreateParams . URL } ;
385385
386386 /**
387387 * Whether to allow empty commits (no changes). Defaults to false.
@@ -458,7 +458,7 @@ export interface BuildListParams {
458458 /**
459459 * A config commit SHA used for the build
460460 */
461- revision ?: string | Record < string , BuildListParams . unnamed_schema_with_map_parent_0 > ;
461+ revision ?: string | { [ key : string ] : BuildListParams . unnamed_schema_with_map_parent_0 } ;
462462}
463463
464464export namespace BuildListParams {
@@ -513,7 +513,7 @@ export namespace BuildCompareParams {
513513 /**
514514 * Specifies what to build: a branch name, a commit SHA, or file contents
515515 */
516- revision : string | Record < string , Base . Content | Base . URL > ;
516+ revision : string | { [ key : string ] : Base . Content | Base . URL } ;
517517
518518 /**
519519 * Optional branch to use. If not specified, defaults to "main". When using a
@@ -550,7 +550,7 @@ export namespace BuildCompareParams {
550550 /**
551551 * Specifies what to build: a branch name, a commit SHA, or file contents
552552 */
553- revision : string | Record < string , Head . Content | Head . URL > ;
553+ revision : string | { [ key : string ] : Head . Content | Head . URL } ;
554554
555555 /**
556556 * Optional branch to use. If not specified, defaults to "main". When using a
0 commit comments