File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
indexer-common/src/indexer-management Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -261,6 +261,7 @@ export async function executeApprovedActions(
261
261
reason
262
262
transaction
263
263
failureReason
264
+ isLegacy
264
265
}
265
266
}
266
267
` ,
@@ -297,6 +298,7 @@ export async function approveActions(
297
298
transaction
298
299
status
299
300
protocolNetwork
301
+ isLegacy
300
302
}
301
303
}
302
304
` ,
@@ -333,6 +335,7 @@ export async function cancelActions(
333
335
priority
334
336
transaction
335
337
status
338
+ isLegacy
336
339
}
337
340
}
338
341
` ,
@@ -369,6 +372,7 @@ export async function fetchAction(
369
372
priority
370
373
transaction
371
374
status
375
+ isLegacy
372
376
}
373
377
}
374
378
` ,
@@ -419,6 +423,7 @@ export async function fetchActions(
419
423
transaction
420
424
status
421
425
failureReason
426
+ isLegacy
422
427
}
423
428
}
424
429
` ,
@@ -456,6 +461,7 @@ export async function deleteActions(
456
461
transaction
457
462
status
458
463
failureReason
464
+ isLegacy
459
465
}
460
466
}
461
467
` ,
@@ -494,6 +500,7 @@ export async function updateActions(
494
500
status
495
501
failureReason
496
502
protocolNetwork
503
+ isLegacy
497
504
}
498
505
}
499
506
` ,
Original file line number Diff line number Diff line change @@ -49,6 +49,7 @@ const actionFields: (keyof Action)[] = [
49
49
'failureReason' ,
50
50
'transaction' ,
51
51
'reason' ,
52
+ 'isLegacy' ,
52
53
]
53
54
54
55
/// Validates input for the `--fieds` option.
Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ const SCHEMA_SDL = gql`
139
139
createdAt: BigInt!
140
140
updatedAt: BigInt
141
141
protocolNetwork: String!
142
+ isLegacy: Boolean!
142
143
}
143
144
144
145
input ActionInput {
@@ -153,6 +154,7 @@ const SCHEMA_SDL = gql`
153
154
reason: String!
154
155
priority: Int!
155
156
protocolNetwork: String!
157
+ isLegacy: Boolean!
156
158
}
157
159
158
160
input ActionUpdateInput {
@@ -200,6 +202,7 @@ const SCHEMA_SDL = gql`
200
202
failureReason: String
201
203
priority: Int
202
204
protocolNetwork: String!
205
+ isLegacy: Boolean!
203
206
}
204
207
205
208
input ActionFilter {
You can’t perform that action at this time.
0 commit comments