@@ -16,6 +16,8 @@ type Mutation {
16
16
c2_id : Int !
17
17
file_uuid : String !
18
18
host_url : String !
19
+ alert_on_download : Boolean
20
+ remove : Boolean
19
21
): c2HostFileOutput
20
22
}
21
23
@@ -149,6 +151,7 @@ type Mutation {
149
151
type Mutation {
150
152
createTask (
151
153
command : String !
154
+ payload_type : String
152
155
params : String !
153
156
files : [String ]
154
157
callback_id : Int
@@ -230,6 +233,12 @@ type Mutation {
230
233
): dynamicQueryOutput
231
234
}
232
235
236
+ type Query {
237
+ eventingTestFile (
238
+ file_contents : String !
239
+ ): eventingTestFileOutput
240
+ }
241
+
233
242
type Mutation {
234
243
eventingTriggerCancel (
235
244
eventgroupinstance_id : Int !
@@ -255,6 +264,13 @@ type Mutation {
255
264
): eventingTriggerRetryOutput
256
265
}
257
266
267
+ type Mutation {
268
+ eventingTriggerRetryFromStep (
269
+ eventstepinstance_id : Int !
270
+ retry_all_groups : Boolean
271
+ ): eventingTriggerRetryFromStepOutput
272
+ }
273
+
258
274
type Mutation {
259
275
eventingTriggerRunAgain (
260
276
eventgroupinstance_id : Int !
@@ -387,6 +403,12 @@ type Mutation {
387
403
): startStopOutput
388
404
}
389
405
406
+ type Mutation {
407
+ testProxy (
408
+ callbackport_id : Int !
409
+ ): testProxyOutput
410
+ }
411
+
390
412
type Mutation {
391
413
toggleProxy (
392
414
callbackport_id : Int !
@@ -439,6 +461,8 @@ type Mutation {
439
461
webhook : String
440
462
admin_id : Int
441
463
deleted : Boolean
464
+ banner_text : String
465
+ banner_color : String
442
466
): updateOperationOutput
443
467
}
444
468
@@ -481,6 +505,7 @@ type Mutation {
481
505
input OperatorInput {
482
506
username : String !
483
507
password : String
508
+ email : String
484
509
bot : Boolean
485
510
}
486
511
@@ -556,6 +581,7 @@ type createAPITokenResponse {
556
581
operator_id : Int
557
582
name : String
558
583
created_by : Int
584
+ token_type : String
559
585
}
560
586
561
587
type OperatorOutput {
@@ -575,6 +601,7 @@ type OperatorOutput {
575
601
failed_login_count : Int
576
602
last_failed_login_timestamp : String
577
603
account_type : String
604
+ email : String
578
605
}
579
606
580
607
type createPayloadOutput {
@@ -715,6 +742,10 @@ type updateCurrentOperationOutput {
715
742
status : String !
716
743
error : String
717
744
operation_id : Int
745
+ name : String
746
+ complete : Boolean
747
+ banner_text : String
748
+ banner_color : String
718
749
}
719
750
720
751
type deleteBlockListOutput {
@@ -745,6 +776,10 @@ type generateReportOutput {
745
776
type previewFileOutput {
746
777
status : String !
747
778
error : String
779
+ size : Int
780
+ host : String
781
+ full_remote_path : String
782
+ filename : String
748
783
contents : String
749
784
}
750
785
@@ -845,6 +880,8 @@ type updateOperationOutput {
845
880
webhook : String
846
881
admin_id : Int
847
882
deleted : Boolean
883
+ banner_text : String
884
+ banner_color : String
848
885
id : Int
849
886
}
850
887
@@ -924,6 +961,7 @@ type globalSettingsOutput {
924
961
type exportCallbackConfigOutput {
925
962
status : String !
926
963
error : String
964
+ agent_callback_id : String
927
965
config : String
928
966
}
929
967
@@ -1036,3 +1074,18 @@ type containerWriteFileOutput {
1036
1074
version : String
1037
1075
}
1038
1076
1077
+ type eventingTriggerRetryFromStepOutput {
1078
+ status : String !
1079
+ error : String
1080
+ }
1081
+
1082
+ type testProxyOutput {
1083
+ status : String !
1084
+ error : String
1085
+ }
1086
+
1087
+ type eventingTestFileOutput {
1088
+ status : String !
1089
+ error : String
1090
+ }
1091
+
0 commit comments