@@ -181,6 +181,7 @@ export interface LineagePKFilter {
181181export interface LineageItemBase {
182182 comment ?: string ;
183183 container : string ;
184+ containerPath : string ;
184185 cpasType ?: string ;
185186 created : string ;
186187 createdBy : string ;
@@ -211,7 +212,7 @@ export interface LineageRunStepBase {
211212 protocol : LineageItemBase ;
212213}
213214
214- export type LineageRunStep = LineageItemBase & LineageIOConfig & LineageRunStepBase ;
215+ export type LineageRunStep = LineageIOConfig & LineageItemBase & LineageRunStepBase ;
215216
216217export interface LineageNodeBase {
217218 absolutePath : string ;
@@ -227,11 +228,11 @@ export interface LineageNodeBase {
227228}
228229
229230/** The shape of a LineageNode is determined by the options specified on the lineage API. */
230- export type LineageNode = LineageItemBase & LineageIOConfig & LineageNodeBase ;
231+ export type LineageNode = LineageIOConfig & LineageItemBase & LineageNodeBase ;
231232
232233export interface LineageResponse {
233234 /** Object containing all lineage nodes in this lineage result. Keyed by node LSID. */
234- nodes : { [ lsid : string ] : LineageNode } ;
235+ nodes : Record < string , LineageNode > ;
235236 /**
236237 * When request is made with "lsid" option the response will include a singular "seed".
237238 * @deprecated since 19.3. Use "seeds" instead.
@@ -471,7 +472,7 @@ export function resolve(options: ResolveOptions): XMLHttpRequest {
471472
472473// formerly, _saveBatches
473474function requestSaveBatches < SuccessPayload > (
474- rawOptions : SaveBatchOptions & SaveBatchesOptions ,
475+ rawOptions : SaveBatchesOptions & SaveBatchOptions ,
475476 payloadProcessor : ( json : any ) => SuccessPayload
476477) : XMLHttpRequest {
477478 return request ( {
@@ -599,7 +600,7 @@ export function saveRuns(options: SaveRunsOptions): XMLHttpRequest {
599600
600601export interface EntitySequenceActionsOptions extends RequestCallbackOptions {
601602 containerPath ?: string ;
602- kindName ?: 'SampleSet ' | 'DataClass ' ;
603+ kindName ?: 'DataClass ' | 'SampleSet ' ;
603604 newValue ?: number ;
604605 rowId ?: number ;
605606 seqType : 'genId' | 'rootSampleCount' | 'sampleCount' ;
0 commit comments