@caido/sdk-frontend 0.51.2-beta.10 → 0.51.2-beta.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -152,9 +152,11 @@ export type AiProviderGoogleInput = {
|
|
|
152
152
|
};
|
|
153
153
|
export type AiProviderOpenAi = {
|
|
154
154
|
apiKey: Scalars["Sensitive"]["output"];
|
|
155
|
+
url?: Maybe<Scalars["Url"]["output"]>;
|
|
155
156
|
};
|
|
156
157
|
export type AiProviderOpenAiInput = {
|
|
157
158
|
apiKey: Scalars["Sensitive"]["input"];
|
|
159
|
+
url?: InputMaybe<Scalars["Url"]["input"]>;
|
|
158
160
|
};
|
|
159
161
|
export type AiProviderOpenRouter = {
|
|
160
162
|
apiKey: Scalars["Sensitive"]["output"];
|
|
@@ -3647,6 +3649,18 @@ export type TamperMatcherValue = {
|
|
|
3647
3649
|
export type TamperMatcherValueInput = {
|
|
3648
3650
|
value: Scalars["String"]["input"];
|
|
3649
3651
|
};
|
|
3652
|
+
export type TamperOperationAll = TamperOperationAllRaw;
|
|
3653
|
+
export type TamperOperationAllInput = {
|
|
3654
|
+
raw: TamperOperationAllRawInput;
|
|
3655
|
+
};
|
|
3656
|
+
export type TamperOperationAllRaw = {
|
|
3657
|
+
matcher: TamperMatcherRaw;
|
|
3658
|
+
replacer: TamperReplacer;
|
|
3659
|
+
};
|
|
3660
|
+
export type TamperOperationAllRawInput = {
|
|
3661
|
+
matcher: TamperMatcherRawInput;
|
|
3662
|
+
replacer: TamperReplacerInput;
|
|
3663
|
+
};
|
|
3650
3664
|
export type TamperOperationBody = TamperOperationBodyRaw;
|
|
3651
3665
|
export type TamperOperationBodyInput = {
|
|
3652
3666
|
raw: TamperOperationBodyRawInput;
|
|
@@ -3850,118 +3864,170 @@ export type TamperRuleCollectionEdge = {
|
|
|
3850
3864
|
export type TamperRuleEnable = {
|
|
3851
3865
|
rank: Scalars["Rank"]["output"];
|
|
3852
3866
|
};
|
|
3853
|
-
export type TamperSection = TamperSectionRequestBody | TamperSectionRequestFirstLine | TamperSectionRequestHeader | TamperSectionRequestMethod | TamperSectionRequestPath | TamperSectionRequestQuery | TamperSectionResponseBody | TamperSectionResponseFirstLine | TamperSectionResponseHeader | TamperSectionResponseStatusCode;
|
|
3867
|
+
export type TamperSection = TamperSectionRequestAll | TamperSectionRequestBody | TamperSectionRequestFirstLine | TamperSectionRequestHeader | TamperSectionRequestMethod | TamperSectionRequestPath | TamperSectionRequestQuery | TamperSectionResponseAll | TamperSectionResponseBody | TamperSectionResponseFirstLine | TamperSectionResponseHeader | TamperSectionResponseStatusCode;
|
|
3854
3868
|
export type TamperSectionInput = {
|
|
3869
|
+
requestAll: TamperSectionRequestAllInput;
|
|
3870
|
+
requestBody?: never;
|
|
3871
|
+
requestFirstLine?: never;
|
|
3872
|
+
requestHeader?: never;
|
|
3873
|
+
requestMethod?: never;
|
|
3874
|
+
requestPath?: never;
|
|
3875
|
+
requestQuery?: never;
|
|
3876
|
+
responseAll?: never;
|
|
3877
|
+
responseBody?: never;
|
|
3878
|
+
responseFirstLine?: never;
|
|
3879
|
+
responseHeader?: never;
|
|
3880
|
+
responseStatusCode?: never;
|
|
3881
|
+
} | {
|
|
3882
|
+
requestAll?: never;
|
|
3855
3883
|
requestBody: TamperSectionRequestBodyInput;
|
|
3856
3884
|
requestFirstLine?: never;
|
|
3857
3885
|
requestHeader?: never;
|
|
3858
3886
|
requestMethod?: never;
|
|
3859
3887
|
requestPath?: never;
|
|
3860
3888
|
requestQuery?: never;
|
|
3889
|
+
responseAll?: never;
|
|
3861
3890
|
responseBody?: never;
|
|
3862
3891
|
responseFirstLine?: never;
|
|
3863
3892
|
responseHeader?: never;
|
|
3864
3893
|
responseStatusCode?: never;
|
|
3865
3894
|
} | {
|
|
3895
|
+
requestAll?: never;
|
|
3866
3896
|
requestBody?: never;
|
|
3867
3897
|
requestFirstLine: TamperSectionRequestFirstLineInput;
|
|
3868
3898
|
requestHeader?: never;
|
|
3869
3899
|
requestMethod?: never;
|
|
3870
3900
|
requestPath?: never;
|
|
3871
3901
|
requestQuery?: never;
|
|
3902
|
+
responseAll?: never;
|
|
3872
3903
|
responseBody?: never;
|
|
3873
3904
|
responseFirstLine?: never;
|
|
3874
3905
|
responseHeader?: never;
|
|
3875
3906
|
responseStatusCode?: never;
|
|
3876
3907
|
} | {
|
|
3908
|
+
requestAll?: never;
|
|
3877
3909
|
requestBody?: never;
|
|
3878
3910
|
requestFirstLine?: never;
|
|
3879
3911
|
requestHeader: TamperSectionRequestHeaderInput;
|
|
3880
3912
|
requestMethod?: never;
|
|
3881
3913
|
requestPath?: never;
|
|
3882
3914
|
requestQuery?: never;
|
|
3915
|
+
responseAll?: never;
|
|
3883
3916
|
responseBody?: never;
|
|
3884
3917
|
responseFirstLine?: never;
|
|
3885
3918
|
responseHeader?: never;
|
|
3886
3919
|
responseStatusCode?: never;
|
|
3887
3920
|
} | {
|
|
3921
|
+
requestAll?: never;
|
|
3888
3922
|
requestBody?: never;
|
|
3889
3923
|
requestFirstLine?: never;
|
|
3890
3924
|
requestHeader?: never;
|
|
3891
3925
|
requestMethod: TamperSectionRequestMethodInput;
|
|
3892
3926
|
requestPath?: never;
|
|
3893
3927
|
requestQuery?: never;
|
|
3928
|
+
responseAll?: never;
|
|
3894
3929
|
responseBody?: never;
|
|
3895
3930
|
responseFirstLine?: never;
|
|
3896
3931
|
responseHeader?: never;
|
|
3897
3932
|
responseStatusCode?: never;
|
|
3898
3933
|
} | {
|
|
3934
|
+
requestAll?: never;
|
|
3899
3935
|
requestBody?: never;
|
|
3900
3936
|
requestFirstLine?: never;
|
|
3901
3937
|
requestHeader?: never;
|
|
3902
3938
|
requestMethod?: never;
|
|
3903
3939
|
requestPath: TamperSectionRequestPathInput;
|
|
3904
3940
|
requestQuery?: never;
|
|
3941
|
+
responseAll?: never;
|
|
3905
3942
|
responseBody?: never;
|
|
3906
3943
|
responseFirstLine?: never;
|
|
3907
3944
|
responseHeader?: never;
|
|
3908
3945
|
responseStatusCode?: never;
|
|
3909
3946
|
} | {
|
|
3947
|
+
requestAll?: never;
|
|
3910
3948
|
requestBody?: never;
|
|
3911
3949
|
requestFirstLine?: never;
|
|
3912
3950
|
requestHeader?: never;
|
|
3913
3951
|
requestMethod?: never;
|
|
3914
3952
|
requestPath?: never;
|
|
3915
3953
|
requestQuery: TamperSectionRequestQueryInput;
|
|
3954
|
+
responseAll?: never;
|
|
3955
|
+
responseBody?: never;
|
|
3956
|
+
responseFirstLine?: never;
|
|
3957
|
+
responseHeader?: never;
|
|
3958
|
+
responseStatusCode?: never;
|
|
3959
|
+
} | {
|
|
3960
|
+
requestAll?: never;
|
|
3961
|
+
requestBody?: never;
|
|
3962
|
+
requestFirstLine?: never;
|
|
3963
|
+
requestHeader?: never;
|
|
3964
|
+
requestMethod?: never;
|
|
3965
|
+
requestPath?: never;
|
|
3966
|
+
requestQuery?: never;
|
|
3967
|
+
responseAll: TamperSectionResponseAllInput;
|
|
3916
3968
|
responseBody?: never;
|
|
3917
3969
|
responseFirstLine?: never;
|
|
3918
3970
|
responseHeader?: never;
|
|
3919
3971
|
responseStatusCode?: never;
|
|
3920
3972
|
} | {
|
|
3973
|
+
requestAll?: never;
|
|
3921
3974
|
requestBody?: never;
|
|
3922
3975
|
requestFirstLine?: never;
|
|
3923
3976
|
requestHeader?: never;
|
|
3924
3977
|
requestMethod?: never;
|
|
3925
3978
|
requestPath?: never;
|
|
3926
3979
|
requestQuery?: never;
|
|
3980
|
+
responseAll?: never;
|
|
3927
3981
|
responseBody: TamperSectionResponseBodyInput;
|
|
3928
3982
|
responseFirstLine?: never;
|
|
3929
3983
|
responseHeader?: never;
|
|
3930
3984
|
responseStatusCode?: never;
|
|
3931
3985
|
} | {
|
|
3986
|
+
requestAll?: never;
|
|
3932
3987
|
requestBody?: never;
|
|
3933
3988
|
requestFirstLine?: never;
|
|
3934
3989
|
requestHeader?: never;
|
|
3935
3990
|
requestMethod?: never;
|
|
3936
3991
|
requestPath?: never;
|
|
3937
3992
|
requestQuery?: never;
|
|
3993
|
+
responseAll?: never;
|
|
3938
3994
|
responseBody?: never;
|
|
3939
3995
|
responseFirstLine: TamperSectionResponseFirstLineInput;
|
|
3940
3996
|
responseHeader?: never;
|
|
3941
3997
|
responseStatusCode?: never;
|
|
3942
3998
|
} | {
|
|
3999
|
+
requestAll?: never;
|
|
3943
4000
|
requestBody?: never;
|
|
3944
4001
|
requestFirstLine?: never;
|
|
3945
4002
|
requestHeader?: never;
|
|
3946
4003
|
requestMethod?: never;
|
|
3947
4004
|
requestPath?: never;
|
|
3948
4005
|
requestQuery?: never;
|
|
4006
|
+
responseAll?: never;
|
|
3949
4007
|
responseBody?: never;
|
|
3950
4008
|
responseFirstLine?: never;
|
|
3951
4009
|
responseHeader: TamperSectionResponseHeaderInput;
|
|
3952
4010
|
responseStatusCode?: never;
|
|
3953
4011
|
} | {
|
|
4012
|
+
requestAll?: never;
|
|
3954
4013
|
requestBody?: never;
|
|
3955
4014
|
requestFirstLine?: never;
|
|
3956
4015
|
requestHeader?: never;
|
|
3957
4016
|
requestMethod?: never;
|
|
3958
4017
|
requestPath?: never;
|
|
3959
4018
|
requestQuery?: never;
|
|
4019
|
+
responseAll?: never;
|
|
3960
4020
|
responseBody?: never;
|
|
3961
4021
|
responseFirstLine?: never;
|
|
3962
4022
|
responseHeader?: never;
|
|
3963
4023
|
responseStatusCode: TamperSectionResponseStatusCodeInput;
|
|
3964
4024
|
};
|
|
4025
|
+
export type TamperSectionRequestAll = {
|
|
4026
|
+
operation: TamperOperationAll;
|
|
4027
|
+
};
|
|
4028
|
+
export type TamperSectionRequestAllInput = {
|
|
4029
|
+
operation: TamperOperationAllInput;
|
|
4030
|
+
};
|
|
3965
4031
|
export type TamperSectionRequestBody = {
|
|
3966
4032
|
operation: TamperOperationBody;
|
|
3967
4033
|
};
|
|
@@ -3998,6 +4064,12 @@ export type TamperSectionRequestQuery = {
|
|
|
3998
4064
|
export type TamperSectionRequestQueryInput = {
|
|
3999
4065
|
operation: TamperOperationQueryInput;
|
|
4000
4066
|
};
|
|
4067
|
+
export type TamperSectionResponseAll = {
|
|
4068
|
+
operation: TamperOperationAll;
|
|
4069
|
+
};
|
|
4070
|
+
export type TamperSectionResponseAllInput = {
|
|
4071
|
+
operation: TamperOperationAllInput;
|
|
4072
|
+
};
|
|
4001
4073
|
export type TamperSectionResponseBody = {
|
|
4002
4074
|
operation: TamperOperationBody;
|
|
4003
4075
|
};
|
|
@@ -11212,6 +11284,44 @@ type TamperMatcherRawFull_TamperMatcherValue_Fragment = {
|
|
|
11212
11284
|
value: string;
|
|
11213
11285
|
};
|
|
11214
11286
|
export type TamperMatcherRawFullFragment = TamperMatcherRawFull_TamperMatcherFull_Fragment | TamperMatcherRawFull_TamperMatcherRegex_Fragment | TamperMatcherRawFull_TamperMatcherValue_Fragment;
|
|
11287
|
+
export type TamperOperationAllRawFullFragment = {
|
|
11288
|
+
__typename: "TamperOperationAllRaw";
|
|
11289
|
+
matcher: {
|
|
11290
|
+
__typename: "TamperMatcherFull";
|
|
11291
|
+
} | {
|
|
11292
|
+
__typename: "TamperMatcherRegex";
|
|
11293
|
+
regex: string;
|
|
11294
|
+
} | {
|
|
11295
|
+
__typename: "TamperMatcherValue";
|
|
11296
|
+
value: string;
|
|
11297
|
+
};
|
|
11298
|
+
replacer: {
|
|
11299
|
+
__typename: "TamperReplacerTerm";
|
|
11300
|
+
term: string;
|
|
11301
|
+
} | {
|
|
11302
|
+
__typename: "TamperReplacerWorkflow";
|
|
11303
|
+
id: string;
|
|
11304
|
+
};
|
|
11305
|
+
};
|
|
11306
|
+
export type TamperOperationAllFullFragment = {
|
|
11307
|
+
__typename: "TamperOperationAllRaw";
|
|
11308
|
+
matcher: {
|
|
11309
|
+
__typename: "TamperMatcherFull";
|
|
11310
|
+
} | {
|
|
11311
|
+
__typename: "TamperMatcherRegex";
|
|
11312
|
+
regex: string;
|
|
11313
|
+
} | {
|
|
11314
|
+
__typename: "TamperMatcherValue";
|
|
11315
|
+
value: string;
|
|
11316
|
+
};
|
|
11317
|
+
replacer: {
|
|
11318
|
+
__typename: "TamperReplacerTerm";
|
|
11319
|
+
term: string;
|
|
11320
|
+
} | {
|
|
11321
|
+
__typename: "TamperReplacerWorkflow";
|
|
11322
|
+
id: string;
|
|
11323
|
+
};
|
|
11324
|
+
};
|
|
11215
11325
|
export type TamperOperationPathRawFullFragment = {
|
|
11216
11326
|
__typename: "TamperOperationPathRaw";
|
|
11217
11327
|
matcher: {
|
|
@@ -11584,6 +11694,28 @@ export type TamperOperationStatusCodeFullFragment = {
|
|
|
11584
11694
|
id: string;
|
|
11585
11695
|
};
|
|
11586
11696
|
};
|
|
11697
|
+
type TamperSectionFull_TamperSectionRequestAll_Fragment = {
|
|
11698
|
+
__typename: "TamperSectionRequestAll";
|
|
11699
|
+
operation: {
|
|
11700
|
+
__typename: "TamperOperationAllRaw";
|
|
11701
|
+
matcher: {
|
|
11702
|
+
__typename: "TamperMatcherFull";
|
|
11703
|
+
} | {
|
|
11704
|
+
__typename: "TamperMatcherRegex";
|
|
11705
|
+
regex: string;
|
|
11706
|
+
} | {
|
|
11707
|
+
__typename: "TamperMatcherValue";
|
|
11708
|
+
value: string;
|
|
11709
|
+
};
|
|
11710
|
+
replacer: {
|
|
11711
|
+
__typename: "TamperReplacerTerm";
|
|
11712
|
+
term: string;
|
|
11713
|
+
} | {
|
|
11714
|
+
__typename: "TamperReplacerWorkflow";
|
|
11715
|
+
id: string;
|
|
11716
|
+
};
|
|
11717
|
+
};
|
|
11718
|
+
};
|
|
11587
11719
|
type TamperSectionFull_TamperSectionRequestBody_Fragment = {
|
|
11588
11720
|
__typename: "TamperSectionRequestBody";
|
|
11589
11721
|
operation: {
|
|
@@ -11771,6 +11903,28 @@ type TamperSectionFull_TamperSectionRequestQuery_Fragment = {
|
|
|
11771
11903
|
};
|
|
11772
11904
|
};
|
|
11773
11905
|
};
|
|
11906
|
+
type TamperSectionFull_TamperSectionResponseAll_Fragment = {
|
|
11907
|
+
__typename: "TamperSectionResponseAll";
|
|
11908
|
+
operation: {
|
|
11909
|
+
__typename: "TamperOperationAllRaw";
|
|
11910
|
+
matcher: {
|
|
11911
|
+
__typename: "TamperMatcherFull";
|
|
11912
|
+
} | {
|
|
11913
|
+
__typename: "TamperMatcherRegex";
|
|
11914
|
+
regex: string;
|
|
11915
|
+
} | {
|
|
11916
|
+
__typename: "TamperMatcherValue";
|
|
11917
|
+
value: string;
|
|
11918
|
+
};
|
|
11919
|
+
replacer: {
|
|
11920
|
+
__typename: "TamperReplacerTerm";
|
|
11921
|
+
term: string;
|
|
11922
|
+
} | {
|
|
11923
|
+
__typename: "TamperReplacerWorkflow";
|
|
11924
|
+
id: string;
|
|
11925
|
+
};
|
|
11926
|
+
};
|
|
11927
|
+
};
|
|
11774
11928
|
type TamperSectionFull_TamperSectionResponseBody_Fragment = {
|
|
11775
11929
|
__typename: "TamperSectionResponseBody";
|
|
11776
11930
|
operation: {
|
|
@@ -11882,7 +12036,7 @@ type TamperSectionFull_TamperSectionResponseStatusCode_Fragment = {
|
|
|
11882
12036
|
};
|
|
11883
12037
|
};
|
|
11884
12038
|
};
|
|
11885
|
-
export type TamperSectionFullFragment = TamperSectionFull_TamperSectionRequestBody_Fragment | TamperSectionFull_TamperSectionRequestFirstLine_Fragment | TamperSectionFull_TamperSectionRequestHeader_Fragment | TamperSectionFull_TamperSectionRequestMethod_Fragment | TamperSectionFull_TamperSectionRequestPath_Fragment | TamperSectionFull_TamperSectionRequestQuery_Fragment | TamperSectionFull_TamperSectionResponseBody_Fragment | TamperSectionFull_TamperSectionResponseFirstLine_Fragment | TamperSectionFull_TamperSectionResponseHeader_Fragment | TamperSectionFull_TamperSectionResponseStatusCode_Fragment;
|
|
12039
|
+
export type TamperSectionFullFragment = TamperSectionFull_TamperSectionRequestAll_Fragment | TamperSectionFull_TamperSectionRequestBody_Fragment | TamperSectionFull_TamperSectionRequestFirstLine_Fragment | TamperSectionFull_TamperSectionRequestHeader_Fragment | TamperSectionFull_TamperSectionRequestMethod_Fragment | TamperSectionFull_TamperSectionRequestPath_Fragment | TamperSectionFull_TamperSectionRequestQuery_Fragment | TamperSectionFull_TamperSectionResponseAll_Fragment | TamperSectionFull_TamperSectionResponseBody_Fragment | TamperSectionFull_TamperSectionResponseFirstLine_Fragment | TamperSectionFull_TamperSectionResponseHeader_Fragment | TamperSectionFull_TamperSectionResponseStatusCode_Fragment;
|
|
11886
12040
|
export type TamperRuleCollectionFullFragment = {
|
|
11887
12041
|
__typename: "TamperRuleCollection";
|
|
11888
12042
|
id: string;
|
|
@@ -11893,6 +12047,27 @@ export type TamperRuleCollectionFullFragment = {
|
|
|
11893
12047
|
name: string;
|
|
11894
12048
|
condition?: string | undefined | null;
|
|
11895
12049
|
section: {
|
|
12050
|
+
__typename: "TamperSectionRequestAll";
|
|
12051
|
+
operation: {
|
|
12052
|
+
__typename: "TamperOperationAllRaw";
|
|
12053
|
+
matcher: {
|
|
12054
|
+
__typename: "TamperMatcherFull";
|
|
12055
|
+
} | {
|
|
12056
|
+
__typename: "TamperMatcherRegex";
|
|
12057
|
+
regex: string;
|
|
12058
|
+
} | {
|
|
12059
|
+
__typename: "TamperMatcherValue";
|
|
12060
|
+
value: string;
|
|
12061
|
+
};
|
|
12062
|
+
replacer: {
|
|
12063
|
+
__typename: "TamperReplacerTerm";
|
|
12064
|
+
term: string;
|
|
12065
|
+
} | {
|
|
12066
|
+
__typename: "TamperReplacerWorkflow";
|
|
12067
|
+
id: string;
|
|
12068
|
+
};
|
|
12069
|
+
};
|
|
12070
|
+
} | {
|
|
11896
12071
|
__typename: "TamperSectionRequestBody";
|
|
11897
12072
|
operation: {
|
|
11898
12073
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12073,6 +12248,27 @@ export type TamperRuleCollectionFullFragment = {
|
|
|
12073
12248
|
id: string;
|
|
12074
12249
|
};
|
|
12075
12250
|
};
|
|
12251
|
+
} | {
|
|
12252
|
+
__typename: "TamperSectionResponseAll";
|
|
12253
|
+
operation: {
|
|
12254
|
+
__typename: "TamperOperationAllRaw";
|
|
12255
|
+
matcher: {
|
|
12256
|
+
__typename: "TamperMatcherFull";
|
|
12257
|
+
} | {
|
|
12258
|
+
__typename: "TamperMatcherRegex";
|
|
12259
|
+
regex: string;
|
|
12260
|
+
} | {
|
|
12261
|
+
__typename: "TamperMatcherValue";
|
|
12262
|
+
value: string;
|
|
12263
|
+
};
|
|
12264
|
+
replacer: {
|
|
12265
|
+
__typename: "TamperReplacerTerm";
|
|
12266
|
+
term: string;
|
|
12267
|
+
} | {
|
|
12268
|
+
__typename: "TamperReplacerWorkflow";
|
|
12269
|
+
id: string;
|
|
12270
|
+
};
|
|
12271
|
+
};
|
|
12076
12272
|
} | {
|
|
12077
12273
|
__typename: "TamperSectionResponseBody";
|
|
12078
12274
|
operation: {
|
|
@@ -12195,6 +12391,27 @@ export type TamperRuleFullFragment = {
|
|
|
12195
12391
|
name: string;
|
|
12196
12392
|
condition?: string | undefined | null;
|
|
12197
12393
|
section: {
|
|
12394
|
+
__typename: "TamperSectionRequestAll";
|
|
12395
|
+
operation: {
|
|
12396
|
+
__typename: "TamperOperationAllRaw";
|
|
12397
|
+
matcher: {
|
|
12398
|
+
__typename: "TamperMatcherFull";
|
|
12399
|
+
} | {
|
|
12400
|
+
__typename: "TamperMatcherRegex";
|
|
12401
|
+
regex: string;
|
|
12402
|
+
} | {
|
|
12403
|
+
__typename: "TamperMatcherValue";
|
|
12404
|
+
value: string;
|
|
12405
|
+
};
|
|
12406
|
+
replacer: {
|
|
12407
|
+
__typename: "TamperReplacerTerm";
|
|
12408
|
+
term: string;
|
|
12409
|
+
} | {
|
|
12410
|
+
__typename: "TamperReplacerWorkflow";
|
|
12411
|
+
id: string;
|
|
12412
|
+
};
|
|
12413
|
+
};
|
|
12414
|
+
} | {
|
|
12198
12415
|
__typename: "TamperSectionRequestBody";
|
|
12199
12416
|
operation: {
|
|
12200
12417
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12375,6 +12592,27 @@ export type TamperRuleFullFragment = {
|
|
|
12375
12592
|
id: string;
|
|
12376
12593
|
};
|
|
12377
12594
|
};
|
|
12595
|
+
} | {
|
|
12596
|
+
__typename: "TamperSectionResponseAll";
|
|
12597
|
+
operation: {
|
|
12598
|
+
__typename: "TamperOperationAllRaw";
|
|
12599
|
+
matcher: {
|
|
12600
|
+
__typename: "TamperMatcherFull";
|
|
12601
|
+
} | {
|
|
12602
|
+
__typename: "TamperMatcherRegex";
|
|
12603
|
+
regex: string;
|
|
12604
|
+
} | {
|
|
12605
|
+
__typename: "TamperMatcherValue";
|
|
12606
|
+
value: string;
|
|
12607
|
+
};
|
|
12608
|
+
replacer: {
|
|
12609
|
+
__typename: "TamperReplacerTerm";
|
|
12610
|
+
term: string;
|
|
12611
|
+
} | {
|
|
12612
|
+
__typename: "TamperReplacerWorkflow";
|
|
12613
|
+
id: string;
|
|
12614
|
+
};
|
|
12615
|
+
};
|
|
12378
12616
|
} | {
|
|
12379
12617
|
__typename: "TamperSectionResponseBody";
|
|
12380
12618
|
operation: {
|
|
@@ -12504,6 +12742,27 @@ export type TamperRuleCollectionsQuery = {
|
|
|
12504
12742
|
name: string;
|
|
12505
12743
|
condition?: string | undefined | null;
|
|
12506
12744
|
section: {
|
|
12745
|
+
__typename: "TamperSectionRequestAll";
|
|
12746
|
+
operation: {
|
|
12747
|
+
__typename: "TamperOperationAllRaw";
|
|
12748
|
+
matcher: {
|
|
12749
|
+
__typename: "TamperMatcherFull";
|
|
12750
|
+
} | {
|
|
12751
|
+
__typename: "TamperMatcherRegex";
|
|
12752
|
+
regex: string;
|
|
12753
|
+
} | {
|
|
12754
|
+
__typename: "TamperMatcherValue";
|
|
12755
|
+
value: string;
|
|
12756
|
+
};
|
|
12757
|
+
replacer: {
|
|
12758
|
+
__typename: "TamperReplacerTerm";
|
|
12759
|
+
term: string;
|
|
12760
|
+
} | {
|
|
12761
|
+
__typename: "TamperReplacerWorkflow";
|
|
12762
|
+
id: string;
|
|
12763
|
+
};
|
|
12764
|
+
};
|
|
12765
|
+
} | {
|
|
12507
12766
|
__typename: "TamperSectionRequestBody";
|
|
12508
12767
|
operation: {
|
|
12509
12768
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12684,6 +12943,27 @@ export type TamperRuleCollectionsQuery = {
|
|
|
12684
12943
|
id: string;
|
|
12685
12944
|
};
|
|
12686
12945
|
};
|
|
12946
|
+
} | {
|
|
12947
|
+
__typename: "TamperSectionResponseAll";
|
|
12948
|
+
operation: {
|
|
12949
|
+
__typename: "TamperOperationAllRaw";
|
|
12950
|
+
matcher: {
|
|
12951
|
+
__typename: "TamperMatcherFull";
|
|
12952
|
+
} | {
|
|
12953
|
+
__typename: "TamperMatcherRegex";
|
|
12954
|
+
regex: string;
|
|
12955
|
+
} | {
|
|
12956
|
+
__typename: "TamperMatcherValue";
|
|
12957
|
+
value: string;
|
|
12958
|
+
};
|
|
12959
|
+
replacer: {
|
|
12960
|
+
__typename: "TamperReplacerTerm";
|
|
12961
|
+
term: string;
|
|
12962
|
+
} | {
|
|
12963
|
+
__typename: "TamperReplacerWorkflow";
|
|
12964
|
+
id: string;
|
|
12965
|
+
};
|
|
12966
|
+
};
|
|
12687
12967
|
} | {
|
|
12688
12968
|
__typename: "TamperSectionResponseBody";
|
|
12689
12969
|
operation: {
|
|
@@ -12817,6 +13097,27 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
12817
13097
|
name: string;
|
|
12818
13098
|
condition?: string | undefined | null;
|
|
12819
13099
|
section: {
|
|
13100
|
+
__typename: "TamperSectionRequestAll";
|
|
13101
|
+
operation: {
|
|
13102
|
+
__typename: "TamperOperationAllRaw";
|
|
13103
|
+
matcher: {
|
|
13104
|
+
__typename: "TamperMatcherFull";
|
|
13105
|
+
} | {
|
|
13106
|
+
__typename: "TamperMatcherRegex";
|
|
13107
|
+
regex: string;
|
|
13108
|
+
} | {
|
|
13109
|
+
__typename: "TamperMatcherValue";
|
|
13110
|
+
value: string;
|
|
13111
|
+
};
|
|
13112
|
+
replacer: {
|
|
13113
|
+
__typename: "TamperReplacerTerm";
|
|
13114
|
+
term: string;
|
|
13115
|
+
} | {
|
|
13116
|
+
__typename: "TamperReplacerWorkflow";
|
|
13117
|
+
id: string;
|
|
13118
|
+
};
|
|
13119
|
+
};
|
|
13120
|
+
} | {
|
|
12820
13121
|
__typename: "TamperSectionRequestBody";
|
|
12821
13122
|
operation: {
|
|
12822
13123
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -12998,9 +13299,9 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
12998
13299
|
};
|
|
12999
13300
|
};
|
|
13000
13301
|
} | {
|
|
13001
|
-
__typename: "
|
|
13302
|
+
__typename: "TamperSectionResponseAll";
|
|
13002
13303
|
operation: {
|
|
13003
|
-
__typename: "
|
|
13304
|
+
__typename: "TamperOperationAllRaw";
|
|
13004
13305
|
matcher: {
|
|
13005
13306
|
__typename: "TamperMatcherFull";
|
|
13006
13307
|
} | {
|
|
@@ -13019,9 +13320,9 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
13019
13320
|
};
|
|
13020
13321
|
};
|
|
13021
13322
|
} | {
|
|
13022
|
-
__typename: "
|
|
13323
|
+
__typename: "TamperSectionResponseBody";
|
|
13023
13324
|
operation: {
|
|
13024
|
-
__typename: "
|
|
13325
|
+
__typename: "TamperOperationBodyRaw";
|
|
13025
13326
|
matcher: {
|
|
13026
13327
|
__typename: "TamperMatcherFull";
|
|
13027
13328
|
} | {
|
|
@@ -13040,18 +13341,39 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
13040
13341
|
};
|
|
13041
13342
|
};
|
|
13042
13343
|
} | {
|
|
13043
|
-
__typename: "
|
|
13344
|
+
__typename: "TamperSectionResponseFirstLine";
|
|
13044
13345
|
operation: {
|
|
13045
|
-
__typename: "
|
|
13346
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
13046
13347
|
matcher: {
|
|
13047
|
-
__typename: "
|
|
13048
|
-
name: string;
|
|
13049
|
-
};
|
|
13050
|
-
replacer: {
|
|
13051
|
-
__typename: "TamperReplacerTerm";
|
|
13052
|
-
term: string;
|
|
13348
|
+
__typename: "TamperMatcherFull";
|
|
13053
13349
|
} | {
|
|
13054
|
-
__typename: "
|
|
13350
|
+
__typename: "TamperMatcherRegex";
|
|
13351
|
+
regex: string;
|
|
13352
|
+
} | {
|
|
13353
|
+
__typename: "TamperMatcherValue";
|
|
13354
|
+
value: string;
|
|
13355
|
+
};
|
|
13356
|
+
replacer: {
|
|
13357
|
+
__typename: "TamperReplacerTerm";
|
|
13358
|
+
term: string;
|
|
13359
|
+
} | {
|
|
13360
|
+
__typename: "TamperReplacerWorkflow";
|
|
13361
|
+
id: string;
|
|
13362
|
+
};
|
|
13363
|
+
};
|
|
13364
|
+
} | {
|
|
13365
|
+
__typename: "TamperSectionResponseHeader";
|
|
13366
|
+
operation: {
|
|
13367
|
+
__typename: "TamperOperationHeaderAdd";
|
|
13368
|
+
matcher: {
|
|
13369
|
+
__typename: "TamperMatcherName";
|
|
13370
|
+
name: string;
|
|
13371
|
+
};
|
|
13372
|
+
replacer: {
|
|
13373
|
+
__typename: "TamperReplacerTerm";
|
|
13374
|
+
term: string;
|
|
13375
|
+
} | {
|
|
13376
|
+
__typename: "TamperReplacerWorkflow";
|
|
13055
13377
|
id: string;
|
|
13056
13378
|
};
|
|
13057
13379
|
} | {
|
|
@@ -13130,6 +13452,27 @@ export type CreateTamperRuleCollectionMutation = {
|
|
|
13130
13452
|
name: string;
|
|
13131
13453
|
condition?: string | undefined | null;
|
|
13132
13454
|
section: {
|
|
13455
|
+
__typename: "TamperSectionRequestAll";
|
|
13456
|
+
operation: {
|
|
13457
|
+
__typename: "TamperOperationAllRaw";
|
|
13458
|
+
matcher: {
|
|
13459
|
+
__typename: "TamperMatcherFull";
|
|
13460
|
+
} | {
|
|
13461
|
+
__typename: "TamperMatcherRegex";
|
|
13462
|
+
regex: string;
|
|
13463
|
+
} | {
|
|
13464
|
+
__typename: "TamperMatcherValue";
|
|
13465
|
+
value: string;
|
|
13466
|
+
};
|
|
13467
|
+
replacer: {
|
|
13468
|
+
__typename: "TamperReplacerTerm";
|
|
13469
|
+
term: string;
|
|
13470
|
+
} | {
|
|
13471
|
+
__typename: "TamperReplacerWorkflow";
|
|
13472
|
+
id: string;
|
|
13473
|
+
};
|
|
13474
|
+
};
|
|
13475
|
+
} | {
|
|
13133
13476
|
__typename: "TamperSectionRequestBody";
|
|
13134
13477
|
operation: {
|
|
13135
13478
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -13310,6 +13653,27 @@ export type CreateTamperRuleCollectionMutation = {
|
|
|
13310
13653
|
id: string;
|
|
13311
13654
|
};
|
|
13312
13655
|
};
|
|
13656
|
+
} | {
|
|
13657
|
+
__typename: "TamperSectionResponseAll";
|
|
13658
|
+
operation: {
|
|
13659
|
+
__typename: "TamperOperationAllRaw";
|
|
13660
|
+
matcher: {
|
|
13661
|
+
__typename: "TamperMatcherFull";
|
|
13662
|
+
} | {
|
|
13663
|
+
__typename: "TamperMatcherRegex";
|
|
13664
|
+
regex: string;
|
|
13665
|
+
} | {
|
|
13666
|
+
__typename: "TamperMatcherValue";
|
|
13667
|
+
value: string;
|
|
13668
|
+
};
|
|
13669
|
+
replacer: {
|
|
13670
|
+
__typename: "TamperReplacerTerm";
|
|
13671
|
+
term: string;
|
|
13672
|
+
} | {
|
|
13673
|
+
__typename: "TamperReplacerWorkflow";
|
|
13674
|
+
id: string;
|
|
13675
|
+
};
|
|
13676
|
+
};
|
|
13313
13677
|
} | {
|
|
13314
13678
|
__typename: "TamperSectionResponseBody";
|
|
13315
13679
|
operation: {
|
|
@@ -13459,6 +13823,27 @@ export type CreateTamperRuleMutation = {
|
|
|
13459
13823
|
name: string;
|
|
13460
13824
|
condition?: string | undefined | null;
|
|
13461
13825
|
section: {
|
|
13826
|
+
__typename: "TamperSectionRequestAll";
|
|
13827
|
+
operation: {
|
|
13828
|
+
__typename: "TamperOperationAllRaw";
|
|
13829
|
+
matcher: {
|
|
13830
|
+
__typename: "TamperMatcherFull";
|
|
13831
|
+
} | {
|
|
13832
|
+
__typename: "TamperMatcherRegex";
|
|
13833
|
+
regex: string;
|
|
13834
|
+
} | {
|
|
13835
|
+
__typename: "TamperMatcherValue";
|
|
13836
|
+
value: string;
|
|
13837
|
+
};
|
|
13838
|
+
replacer: {
|
|
13839
|
+
__typename: "TamperReplacerTerm";
|
|
13840
|
+
term: string;
|
|
13841
|
+
} | {
|
|
13842
|
+
__typename: "TamperReplacerWorkflow";
|
|
13843
|
+
id: string;
|
|
13844
|
+
};
|
|
13845
|
+
};
|
|
13846
|
+
} | {
|
|
13462
13847
|
__typename: "TamperSectionRequestBody";
|
|
13463
13848
|
operation: {
|
|
13464
13849
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -13639,6 +14024,27 @@ export type CreateTamperRuleMutation = {
|
|
|
13639
14024
|
id: string;
|
|
13640
14025
|
};
|
|
13641
14026
|
};
|
|
14027
|
+
} | {
|
|
14028
|
+
__typename: "TamperSectionResponseAll";
|
|
14029
|
+
operation: {
|
|
14030
|
+
__typename: "TamperOperationAllRaw";
|
|
14031
|
+
matcher: {
|
|
14032
|
+
__typename: "TamperMatcherFull";
|
|
14033
|
+
} | {
|
|
14034
|
+
__typename: "TamperMatcherRegex";
|
|
14035
|
+
regex: string;
|
|
14036
|
+
} | {
|
|
14037
|
+
__typename: "TamperMatcherValue";
|
|
14038
|
+
value: string;
|
|
14039
|
+
};
|
|
14040
|
+
replacer: {
|
|
14041
|
+
__typename: "TamperReplacerTerm";
|
|
14042
|
+
term: string;
|
|
14043
|
+
} | {
|
|
14044
|
+
__typename: "TamperReplacerWorkflow";
|
|
14045
|
+
id: string;
|
|
14046
|
+
};
|
|
14047
|
+
};
|
|
13642
14048
|
} | {
|
|
13643
14049
|
__typename: "TamperSectionResponseBody";
|
|
13644
14050
|
operation: {
|
|
@@ -13792,6 +14198,27 @@ export type UpdateTamperRuleMutation = {
|
|
|
13792
14198
|
name: string;
|
|
13793
14199
|
condition?: string | undefined | null;
|
|
13794
14200
|
section: {
|
|
14201
|
+
__typename: "TamperSectionRequestAll";
|
|
14202
|
+
operation: {
|
|
14203
|
+
__typename: "TamperOperationAllRaw";
|
|
14204
|
+
matcher: {
|
|
14205
|
+
__typename: "TamperMatcherFull";
|
|
14206
|
+
} | {
|
|
14207
|
+
__typename: "TamperMatcherRegex";
|
|
14208
|
+
regex: string;
|
|
14209
|
+
} | {
|
|
14210
|
+
__typename: "TamperMatcherValue";
|
|
14211
|
+
value: string;
|
|
14212
|
+
};
|
|
14213
|
+
replacer: {
|
|
14214
|
+
__typename: "TamperReplacerTerm";
|
|
14215
|
+
term: string;
|
|
14216
|
+
} | {
|
|
14217
|
+
__typename: "TamperReplacerWorkflow";
|
|
14218
|
+
id: string;
|
|
14219
|
+
};
|
|
14220
|
+
};
|
|
14221
|
+
} | {
|
|
13795
14222
|
__typename: "TamperSectionRequestBody";
|
|
13796
14223
|
operation: {
|
|
13797
14224
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -13972,6 +14399,27 @@ export type UpdateTamperRuleMutation = {
|
|
|
13972
14399
|
id: string;
|
|
13973
14400
|
};
|
|
13974
14401
|
};
|
|
14402
|
+
} | {
|
|
14403
|
+
__typename: "TamperSectionResponseAll";
|
|
14404
|
+
operation: {
|
|
14405
|
+
__typename: "TamperOperationAllRaw";
|
|
14406
|
+
matcher: {
|
|
14407
|
+
__typename: "TamperMatcherFull";
|
|
14408
|
+
} | {
|
|
14409
|
+
__typename: "TamperMatcherRegex";
|
|
14410
|
+
regex: string;
|
|
14411
|
+
} | {
|
|
14412
|
+
__typename: "TamperMatcherValue";
|
|
14413
|
+
value: string;
|
|
14414
|
+
};
|
|
14415
|
+
replacer: {
|
|
14416
|
+
__typename: "TamperReplacerTerm";
|
|
14417
|
+
term: string;
|
|
14418
|
+
} | {
|
|
14419
|
+
__typename: "TamperReplacerWorkflow";
|
|
14420
|
+
id: string;
|
|
14421
|
+
};
|
|
14422
|
+
};
|
|
13975
14423
|
} | {
|
|
13976
14424
|
__typename: "TamperSectionResponseBody";
|
|
13977
14425
|
operation: {
|
|
@@ -14101,6 +14549,27 @@ export type RenameTamperRuleMutation = {
|
|
|
14101
14549
|
name: string;
|
|
14102
14550
|
condition?: string | undefined | null;
|
|
14103
14551
|
section: {
|
|
14552
|
+
__typename: "TamperSectionRequestAll";
|
|
14553
|
+
operation: {
|
|
14554
|
+
__typename: "TamperOperationAllRaw";
|
|
14555
|
+
matcher: {
|
|
14556
|
+
__typename: "TamperMatcherFull";
|
|
14557
|
+
} | {
|
|
14558
|
+
__typename: "TamperMatcherRegex";
|
|
14559
|
+
regex: string;
|
|
14560
|
+
} | {
|
|
14561
|
+
__typename: "TamperMatcherValue";
|
|
14562
|
+
value: string;
|
|
14563
|
+
};
|
|
14564
|
+
replacer: {
|
|
14565
|
+
__typename: "TamperReplacerTerm";
|
|
14566
|
+
term: string;
|
|
14567
|
+
} | {
|
|
14568
|
+
__typename: "TamperReplacerWorkflow";
|
|
14569
|
+
id: string;
|
|
14570
|
+
};
|
|
14571
|
+
};
|
|
14572
|
+
} | {
|
|
14104
14573
|
__typename: "TamperSectionRequestBody";
|
|
14105
14574
|
operation: {
|
|
14106
14575
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -14281,6 +14750,27 @@ export type RenameTamperRuleMutation = {
|
|
|
14281
14750
|
id: string;
|
|
14282
14751
|
};
|
|
14283
14752
|
};
|
|
14753
|
+
} | {
|
|
14754
|
+
__typename: "TamperSectionResponseAll";
|
|
14755
|
+
operation: {
|
|
14756
|
+
__typename: "TamperOperationAllRaw";
|
|
14757
|
+
matcher: {
|
|
14758
|
+
__typename: "TamperMatcherFull";
|
|
14759
|
+
} | {
|
|
14760
|
+
__typename: "TamperMatcherRegex";
|
|
14761
|
+
regex: string;
|
|
14762
|
+
} | {
|
|
14763
|
+
__typename: "TamperMatcherValue";
|
|
14764
|
+
value: string;
|
|
14765
|
+
};
|
|
14766
|
+
replacer: {
|
|
14767
|
+
__typename: "TamperReplacerTerm";
|
|
14768
|
+
term: string;
|
|
14769
|
+
} | {
|
|
14770
|
+
__typename: "TamperReplacerWorkflow";
|
|
14771
|
+
id: string;
|
|
14772
|
+
};
|
|
14773
|
+
};
|
|
14284
14774
|
} | {
|
|
14285
14775
|
__typename: "TamperSectionResponseBody";
|
|
14286
14776
|
operation: {
|
|
@@ -14426,6 +14916,27 @@ export type ToggleTamperRuleMutation = {
|
|
|
14426
14916
|
name: string;
|
|
14427
14917
|
condition?: string | undefined | null;
|
|
14428
14918
|
section: {
|
|
14919
|
+
__typename: "TamperSectionRequestAll";
|
|
14920
|
+
operation: {
|
|
14921
|
+
__typename: "TamperOperationAllRaw";
|
|
14922
|
+
matcher: {
|
|
14923
|
+
__typename: "TamperMatcherFull";
|
|
14924
|
+
} | {
|
|
14925
|
+
__typename: "TamperMatcherRegex";
|
|
14926
|
+
regex: string;
|
|
14927
|
+
} | {
|
|
14928
|
+
__typename: "TamperMatcherValue";
|
|
14929
|
+
value: string;
|
|
14930
|
+
};
|
|
14931
|
+
replacer: {
|
|
14932
|
+
__typename: "TamperReplacerTerm";
|
|
14933
|
+
term: string;
|
|
14934
|
+
} | {
|
|
14935
|
+
__typename: "TamperReplacerWorkflow";
|
|
14936
|
+
id: string;
|
|
14937
|
+
};
|
|
14938
|
+
};
|
|
14939
|
+
} | {
|
|
14429
14940
|
__typename: "TamperSectionRequestBody";
|
|
14430
14941
|
operation: {
|
|
14431
14942
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -14606,6 +15117,27 @@ export type ToggleTamperRuleMutation = {
|
|
|
14606
15117
|
id: string;
|
|
14607
15118
|
};
|
|
14608
15119
|
};
|
|
15120
|
+
} | {
|
|
15121
|
+
__typename: "TamperSectionResponseAll";
|
|
15122
|
+
operation: {
|
|
15123
|
+
__typename: "TamperOperationAllRaw";
|
|
15124
|
+
matcher: {
|
|
15125
|
+
__typename: "TamperMatcherFull";
|
|
15126
|
+
} | {
|
|
15127
|
+
__typename: "TamperMatcherRegex";
|
|
15128
|
+
regex: string;
|
|
15129
|
+
} | {
|
|
15130
|
+
__typename: "TamperMatcherValue";
|
|
15131
|
+
value: string;
|
|
15132
|
+
};
|
|
15133
|
+
replacer: {
|
|
15134
|
+
__typename: "TamperReplacerTerm";
|
|
15135
|
+
term: string;
|
|
15136
|
+
} | {
|
|
15137
|
+
__typename: "TamperReplacerWorkflow";
|
|
15138
|
+
id: string;
|
|
15139
|
+
};
|
|
15140
|
+
};
|
|
14609
15141
|
} | {
|
|
14610
15142
|
__typename: "TamperSectionResponseBody";
|
|
14611
15143
|
operation: {
|
|
@@ -14735,6 +15267,27 @@ export type RankTamperRuleMutation = {
|
|
|
14735
15267
|
name: string;
|
|
14736
15268
|
condition?: string | undefined | null;
|
|
14737
15269
|
section: {
|
|
15270
|
+
__typename: "TamperSectionRequestAll";
|
|
15271
|
+
operation: {
|
|
15272
|
+
__typename: "TamperOperationAllRaw";
|
|
15273
|
+
matcher: {
|
|
15274
|
+
__typename: "TamperMatcherFull";
|
|
15275
|
+
} | {
|
|
15276
|
+
__typename: "TamperMatcherRegex";
|
|
15277
|
+
regex: string;
|
|
15278
|
+
} | {
|
|
15279
|
+
__typename: "TamperMatcherValue";
|
|
15280
|
+
value: string;
|
|
15281
|
+
};
|
|
15282
|
+
replacer: {
|
|
15283
|
+
__typename: "TamperReplacerTerm";
|
|
15284
|
+
term: string;
|
|
15285
|
+
} | {
|
|
15286
|
+
__typename: "TamperReplacerWorkflow";
|
|
15287
|
+
id: string;
|
|
15288
|
+
};
|
|
15289
|
+
};
|
|
15290
|
+
} | {
|
|
14738
15291
|
__typename: "TamperSectionRequestBody";
|
|
14739
15292
|
operation: {
|
|
14740
15293
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -14915,6 +15468,27 @@ export type RankTamperRuleMutation = {
|
|
|
14915
15468
|
id: string;
|
|
14916
15469
|
};
|
|
14917
15470
|
};
|
|
15471
|
+
} | {
|
|
15472
|
+
__typename: "TamperSectionResponseAll";
|
|
15473
|
+
operation: {
|
|
15474
|
+
__typename: "TamperOperationAllRaw";
|
|
15475
|
+
matcher: {
|
|
15476
|
+
__typename: "TamperMatcherFull";
|
|
15477
|
+
} | {
|
|
15478
|
+
__typename: "TamperMatcherRegex";
|
|
15479
|
+
regex: string;
|
|
15480
|
+
} | {
|
|
15481
|
+
__typename: "TamperMatcherValue";
|
|
15482
|
+
value: string;
|
|
15483
|
+
};
|
|
15484
|
+
replacer: {
|
|
15485
|
+
__typename: "TamperReplacerTerm";
|
|
15486
|
+
term: string;
|
|
15487
|
+
} | {
|
|
15488
|
+
__typename: "TamperReplacerWorkflow";
|
|
15489
|
+
id: string;
|
|
15490
|
+
};
|
|
15491
|
+
};
|
|
14918
15492
|
} | {
|
|
14919
15493
|
__typename: "TamperSectionResponseBody";
|
|
14920
15494
|
operation: {
|
|
@@ -15044,6 +15618,27 @@ export type MoveTamperRuleMutation = {
|
|
|
15044
15618
|
name: string;
|
|
15045
15619
|
condition?: string | undefined | null;
|
|
15046
15620
|
section: {
|
|
15621
|
+
__typename: "TamperSectionRequestAll";
|
|
15622
|
+
operation: {
|
|
15623
|
+
__typename: "TamperOperationAllRaw";
|
|
15624
|
+
matcher: {
|
|
15625
|
+
__typename: "TamperMatcherFull";
|
|
15626
|
+
} | {
|
|
15627
|
+
__typename: "TamperMatcherRegex";
|
|
15628
|
+
regex: string;
|
|
15629
|
+
} | {
|
|
15630
|
+
__typename: "TamperMatcherValue";
|
|
15631
|
+
value: string;
|
|
15632
|
+
};
|
|
15633
|
+
replacer: {
|
|
15634
|
+
__typename: "TamperReplacerTerm";
|
|
15635
|
+
term: string;
|
|
15636
|
+
} | {
|
|
15637
|
+
__typename: "TamperReplacerWorkflow";
|
|
15638
|
+
id: string;
|
|
15639
|
+
};
|
|
15640
|
+
};
|
|
15641
|
+
} | {
|
|
15047
15642
|
__typename: "TamperSectionRequestBody";
|
|
15048
15643
|
operation: {
|
|
15049
15644
|
__typename: "TamperOperationBodyRaw";
|
|
@@ -15224,6 +15819,27 @@ export type MoveTamperRuleMutation = {
|
|
|
15224
15819
|
id: string;
|
|
15225
15820
|
};
|
|
15226
15821
|
};
|
|
15822
|
+
} | {
|
|
15823
|
+
__typename: "TamperSectionResponseAll";
|
|
15824
|
+
operation: {
|
|
15825
|
+
__typename: "TamperOperationAllRaw";
|
|
15826
|
+
matcher: {
|
|
15827
|
+
__typename: "TamperMatcherFull";
|
|
15828
|
+
} | {
|
|
15829
|
+
__typename: "TamperMatcherRegex";
|
|
15830
|
+
regex: string;
|
|
15831
|
+
} | {
|
|
15832
|
+
__typename: "TamperMatcherValue";
|
|
15833
|
+
value: string;
|
|
15834
|
+
};
|
|
15835
|
+
replacer: {
|
|
15836
|
+
__typename: "TamperReplacerTerm";
|
|
15837
|
+
term: string;
|
|
15838
|
+
} | {
|
|
15839
|
+
__typename: "TamperReplacerWorkflow";
|
|
15840
|
+
id: string;
|
|
15841
|
+
};
|
|
15842
|
+
};
|
|
15227
15843
|
} | {
|
|
15228
15844
|
__typename: "TamperSectionResponseBody";
|
|
15229
15845
|
operation: {
|
|
@@ -22503,6 +23119,8 @@ export declare const TamperMatcherRawFullFragmentDoc = "\n fragment tamperMat
|
|
|
22503
23119
|
export declare const TamperReplacerTermFullFragmentDoc = "\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n ";
|
|
22504
23120
|
export declare const TamperReplacerWorkflowFullFragmentDoc = "\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n ";
|
|
22505
23121
|
export declare const TamperReplacerFullFragmentDoc = "\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n ";
|
|
23122
|
+
export declare const TamperOperationAllRawFullFragmentDoc = "\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23123
|
+
export declare const TamperOperationAllFullFragmentDoc = "\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n ";
|
|
22506
23124
|
export declare const TamperOperationPathRawFullFragmentDoc = "\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22507
23125
|
export declare const TamperOperationPathFullFragmentDoc = "\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n ";
|
|
22508
23126
|
export declare const TamperOperationMethodUpdateFullFragmentDoc = "\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
@@ -22524,7 +23142,7 @@ export declare const TamperOperationBodyRawFullFragmentDoc = "\n fragment tam
|
|
|
22524
23142
|
export declare const TamperOperationBodyFullFragmentDoc = "\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n ";
|
|
22525
23143
|
export declare const TamperOperationStatusCodeUpdateFullFragmentDoc = "\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22526
23144
|
export declare const TamperOperationStatusCodeFullFragmentDoc = "\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n ";
|
|
22527
|
-
export declare const TamperSectionFullFragmentDoc = "\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n ";
|
|
23145
|
+
export declare const TamperSectionFullFragmentDoc = "\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n ";
|
|
22528
23146
|
export declare const TamperRuleFullFragmentDoc = "\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n ";
|
|
22529
23147
|
export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
|
|
22530
23148
|
export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
@@ -22740,18 +23358,18 @@ export declare const UpdatedInterceptStatusDocument = "\n subscription update
|
|
|
22740
23358
|
export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
22741
23359
|
export declare const UpdatedInterceptOptionsDocument = "\n subscription updatedInterceptOptions {\n updatedInterceptOptions {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
22742
23360
|
export declare const DeletedInterceptMessageDocument = "\n subscription deletedInterceptMessage {\n deletedInterceptMessage {\n deletedMessageId\n }\n}\n ";
|
|
22743
|
-
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n ...tamperRuleCollectionFull\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22744
|
-
export declare const RenameTamperRuleCollectionDocument = "\n mutation renameTamperRuleCollection($id: ID!, $name: String!) {\n renameTamperRuleCollection(id: $id, name: $name) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22745
|
-
export declare const CreateTamperRuleCollectionDocument = "\n mutation createTamperRuleCollection($input: CreateTamperRuleCollectionInput!) {\n createTamperRuleCollection(input: $input) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23361
|
+
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n ...tamperRuleCollectionFull\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23362
|
+
export declare const RenameTamperRuleCollectionDocument = "\n mutation renameTamperRuleCollection($id: ID!, $name: String!) {\n renameTamperRuleCollection(id: $id, name: $name) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23363
|
+
export declare const CreateTamperRuleCollectionDocument = "\n mutation createTamperRuleCollection($input: CreateTamperRuleCollectionInput!) {\n createTamperRuleCollection(input: $input) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22746
23364
|
export declare const DeleteTamperRuleCollectionDocument = "\n mutation deleteTamperRuleCollection($id: ID!) {\n deleteTamperRuleCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
22747
|
-
export declare const CreateTamperRuleDocument = "\n mutation createTamperRule($input: CreateTamperRuleInput!) {\n createTamperRule(input: $input) {\n error {\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23365
|
+
export declare const CreateTamperRuleDocument = "\n mutation createTamperRule($input: CreateTamperRuleInput!) {\n createTamperRule(input: $input) {\n error {\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22748
23366
|
export declare const DeleteTamperRuleDocument = "\n mutation deleteTamperRule($id: ID!) {\n deleteTamperRule(id: $id) {\n deletedId\n }\n}\n ";
|
|
22749
|
-
export declare const UpdateTamperRuleDocument = "\n mutation updateTamperRule($id: ID!, $input: UpdateTamperRuleInput!) {\n updateTamperRule(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22750
|
-
export declare const RenameTamperRuleDocument = "\n mutation renameTamperRule($id: ID!, $name: String!) {\n renameTamperRule(id: $id, name: $name) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23367
|
+
export declare const UpdateTamperRuleDocument = "\n mutation updateTamperRule($id: ID!, $input: UpdateTamperRuleInput!) {\n updateTamperRule(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on InvalidHTTPQLUserError {\n ...invalidHTTPQLUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23368
|
+
export declare const RenameTamperRuleDocument = "\n mutation renameTamperRule($id: ID!, $name: String!) {\n renameTamperRule(id: $id, name: $name) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22751
23369
|
export declare const TestTamperRuleDocument = "\n mutation testTamperRule($input: TestTamperRuleInput!) {\n testTamperRule(input: $input) {\n raw\n error {\n ... on InvalidRegexUserError {\n ...invalidRegexUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment invalidRegexUserErrorFull on InvalidRegexUserError {\n ...userErrorFull\n term\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22752
|
-
export declare const ToggleTamperRuleDocument = "\n mutation toggleTamperRule($id: ID!, $enabled: Boolean!) {\n toggleTamperRule(id: $id, enabled: $enabled) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22753
|
-
export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id: ID!, $input: RankTamperRuleInput!) {\n rankTamperRule(id: $id, input: $input) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
22754
|
-
export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment
|
|
23370
|
+
export declare const ToggleTamperRuleDocument = "\n mutation toggleTamperRule($id: ID!, $enabled: Boolean!) {\n toggleTamperRule(id: $id, enabled: $enabled) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23371
|
+
export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id: ID!, $input: RankTamperRuleInput!) {\n rankTamperRule(id: $id, input: $input) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23372
|
+
export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
22755
23373
|
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
22756
23374
|
export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n official\n}\n ";
|
|
22757
23375
|
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|