@@ -598,8 +598,8 @@ export class BigQuery extends Service {
598598 selectedFields ?: string [ ] ;
599599 parseJSON ?: boolean ;
600600 listParams ?:
601- | bigquery . tabledata . IListParams
602- | bigquery . jobs . IGetQueryResultsParams ;
601+ | bigquery . tabledata . IListParams
602+ | bigquery . jobs . IGetQueryResultsParams ;
603603 } ,
604604 ) {
605605 // deep copy schema fields to avoid mutation
@@ -2476,8 +2476,8 @@ function convertSchemaFieldValue(
24762476 selectedFields ?: string [ ] ;
24772477 parseJSON ?: boolean ;
24782478 listParams ?:
2479- | bigquery . tabledata . IListParams
2480- | bigquery . jobs . IGetQueryResultsParams ;
2479+ | bigquery . tabledata . IListParams
2480+ | bigquery . jobs . IGetQueryResultsParams ;
24812481 } ,
24822482) {
24832483 if ( value === null ) {
@@ -2547,17 +2547,17 @@ function convertSchemaFieldValue(
25472547 */
25482548 const listParams = options . listParams ;
25492549 const timestampOutputFormat = listParams
2550- ? listParams [ 'formatOptions.timestampOutputFormat' ]
2551- : undefined ;
2550+ ? listParams [ 'formatOptions.timestampOutputFormat' ]
2551+ : undefined ;
25522552 const useInt64Timestamp = listParams
2553- ? listParams [ 'formatOptions.useInt64Timestamp' ]
2554- : undefined ;
2553+ ? listParams [ 'formatOptions.useInt64Timestamp' ]
2554+ : undefined ;
25552555 if ( timestampOutputFormat === 'ISO8601_STRING' ) {
25562556 // value is ISO string, create BigQueryTimestamp wrapping the string
25572557 value = BigQuery . timestamp ( value ) ;
25582558 } else if (
2559- useInt64Timestamp === false &&
2560- timestampOutputFormat !== 'INT64'
2559+ useInt64Timestamp === false &&
2560+ timestampOutputFormat !== 'INT64'
25612561 ) {
25622562 // value is float seconds, convert to BigQueryTimestamp
25632563 value = BigQuery . timestamp ( Number ( value ) ) ;
0 commit comments