@@ -202,8 +202,7 @@ type OutputRelationTypeLineageResponseV1 =
202202 | "TRUNCATE"
203203 | "UPDATE" ;
204204
205- interface OutputRelationLineageResponseV1
206- extends BaseRelationLineageResponseV1 {
205+ interface OutputRelationLineageResponseV1 extends BaseRelationLineageResponseV1 {
207206 last_interaction_at : string ;
208207 types : OutputRelationTypeLineageResponseV1 [ ] ;
209208 num_rows : number | null ;
@@ -213,8 +212,7 @@ interface OutputRelationLineageResponseV1
213212}
214213
215214// eslint-disable-next-line @typescript-eslint/no-empty-object-type
216- interface ParentRelationLineageResponseV1
217- extends BaseRelationLineageResponseV1 { }
215+ interface ParentRelationLineageResponseV1 extends BaseRelationLineageResponseV1 { }
218216
219217type SymlinkRelationTypeLineageResponseV1 = "METASTORE" | "WAREHOUSE" ;
220218
@@ -237,18 +235,15 @@ interface ColumnLineageFieldResponseV1 {
237235 types : ColumnLineageTransformationTypeLineageResponseV1 [ ] ;
238236}
239237
240- interface DirectColumnLineageRelationLineageResponseV1
241- extends BaseRelationLineageResponseV1 {
238+ interface DirectColumnLineageRelationLineageResponseV1 extends BaseRelationLineageResponseV1 {
242239 fields : { [ target_field : string ] : ColumnLineageFieldResponseV1 [ ] } ;
243240}
244241
245- interface IndirectColumnLineageRelationLineageResponseV1
246- extends BaseRelationLineageResponseV1 {
242+ interface IndirectColumnLineageRelationLineageResponseV1 extends BaseRelationLineageResponseV1 {
247243 fields : ColumnLineageFieldResponseV1 [ ] ;
248244}
249245
250- interface SymlinkRelationLineageResponseV1
251- extends BaseRelationLineageResponseV1 {
246+ interface SymlinkRelationLineageResponseV1 extends BaseRelationLineageResponseV1 {
252247 type : SymlinkRelationTypeLineageResponseV1 ;
253248}
254249
0 commit comments