From 647eda0781a1a0f27145d2be2b32030d41764ad7 Mon Sep 17 00:00:00 2001 From: Arjen van der Ende Date: Fri, 1 Mar 2019 19:42:25 +0100 Subject: [PATCH] fix(types): move JobLoadMetadata writeDisposition (#365) See https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs#configuration.load --- src/table.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/table.ts b/src/table.ts index 5545e15c..fd9580eb 100644 --- a/src/table.ts +++ b/src/table.ts @@ -119,8 +119,8 @@ export interface JobLoadMetadata { field?: string; requirePartitionFilter?: boolean; type?: string; - writeDisposition?: string; }; + writeDisposition?: string; } export interface CreateExtractJobOptions {