@@ -1404,7 +1404,6 @@ export const useDagServiceGetDagTags = <
1404
1404
* Get Event Log
1405
1405
* @param data The data for the request.
1406
1406
* @param data.eventLogId
1407
- * @param data.dagId
1408
1407
* @returns EventLogResponse Successful Response
1409
1408
* @throws ApiError
1410
1409
*/
@@ -1414,28 +1413,26 @@ export const useEventLogServiceGetEventLog = <
1414
1413
TQueryKey extends Array < unknown > = unknown [ ] ,
1415
1414
> (
1416
1415
{
1417
- dagId,
1418
1416
eventLogId,
1419
1417
} : {
1420
- dagId ?: string ;
1421
1418
eventLogId : number ;
1422
1419
} ,
1423
1420
queryKey ?: TQueryKey ,
1424
1421
options ?: Omit < UseQueryOptions < TData , TError > , "queryKey" | "queryFn" > ,
1425
1422
) =>
1426
1423
useQuery < TData , TError > ( {
1427
- queryKey : Common . UseEventLogServiceGetEventLogKeyFn ( { dagId , eventLogId } , queryKey ) ,
1428
- queryFn : ( ) => EventLogService . getEventLog ( { dagId , eventLogId } ) as TData ,
1424
+ queryKey : Common . UseEventLogServiceGetEventLogKeyFn ( { eventLogId } , queryKey ) ,
1425
+ queryFn : ( ) => EventLogService . getEventLog ( { eventLogId } ) as TData ,
1429
1426
...options ,
1430
1427
} ) ;
1431
1428
/**
1432
1429
* Get Event Logs
1433
1430
* Get all Event Logs.
1434
1431
* @param data The data for the request.
1435
- * @param data.dagId
1436
1432
* @param data.limit
1437
1433
* @param data.offset
1438
1434
* @param data.orderBy
1435
+ * @param data.dagId
1439
1436
* @param data.taskId
1440
1437
* @param data.runId
1441
1438
* @param data.mapIndex
@@ -4351,7 +4348,6 @@ export const useVariableServiceBulkVariables = <
4351
4348
* @param data The data for the request.
4352
4349
* @param data.assetId
4353
4350
* @param data.before
4354
- * @param data.dagId
4355
4351
* @returns void Successful Response
4356
4352
* @throws ApiError
4357
4353
*/
@@ -4367,7 +4363,6 @@ export const useAssetServiceDeleteAssetQueuedEvents = <
4367
4363
{
4368
4364
assetId : number ;
4369
4365
before ?: string ;
4370
- dagId ?: string ;
4371
4366
} ,
4372
4367
TContext
4373
4368
> ,
@@ -4380,12 +4375,11 @@ export const useAssetServiceDeleteAssetQueuedEvents = <
4380
4375
{
4381
4376
assetId : number ;
4382
4377
before ?: string ;
4383
- dagId ?: string ;
4384
4378
} ,
4385
4379
TContext
4386
4380
> ( {
4387
- mutationFn : ( { assetId, before, dagId } ) =>
4388
- AssetService . deleteAssetQueuedEvents ( { assetId, before, dagId } ) as unknown as Promise < TData > ,
4381
+ mutationFn : ( { assetId, before } ) =>
4382
+ AssetService . deleteAssetQueuedEvents ( { assetId, before } ) as unknown as Promise < TData > ,
4389
4383
...options ,
4390
4384
} ) ;
4391
4385
/**
0 commit comments