@caido/sdk-frontend 0.53.0 → 0.53.2-beta.0
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.
package/package.json
CHANGED
|
@@ -842,6 +842,7 @@ export type CreateTamperRuleInput = {
|
|
|
842
842
|
condition?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
843
843
|
name: Scalars["String"]["input"];
|
|
844
844
|
section: TamperSectionInput;
|
|
845
|
+
sources: Array<Source>;
|
|
845
846
|
};
|
|
846
847
|
export type CreateTamperRulePayload = {
|
|
847
848
|
error?: Maybe<CreateTamperRuleError>;
|
|
@@ -3877,6 +3878,7 @@ export type TamperRule = {
|
|
|
3877
3878
|
id: Scalars["ID"]["output"];
|
|
3878
3879
|
name: Scalars["String"]["output"];
|
|
3879
3880
|
section: TamperSection;
|
|
3881
|
+
sources: Array<Source>;
|
|
3880
3882
|
};
|
|
3881
3883
|
export type TamperRuleCollection = {
|
|
3882
3884
|
id: Scalars["ID"]["output"];
|
|
@@ -4367,8 +4369,9 @@ export type UpdateScopePayload = {
|
|
|
4367
4369
|
export type UpdateTamperRuleError = InvalidHttpqlUserError | InvalidRegexUserError | OtherUserError | UnknownIdUserError;
|
|
4368
4370
|
export type UpdateTamperRuleInput = {
|
|
4369
4371
|
condition?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
4370
|
-
name
|
|
4371
|
-
section
|
|
4372
|
+
name?: InputMaybe<Scalars["String"]["input"]>;
|
|
4373
|
+
section?: InputMaybe<TamperSectionInput>;
|
|
4374
|
+
sources?: InputMaybe<Array<Source>>;
|
|
4372
4375
|
};
|
|
4373
4376
|
export type UpdateTamperRulePayload = {
|
|
4374
4377
|
error?: Maybe<UpdateTamperRuleError>;
|
|
@@ -12216,6 +12219,7 @@ export type TamperRuleCollectionFullFragment = {
|
|
|
12216
12219
|
id: string;
|
|
12217
12220
|
name: string;
|
|
12218
12221
|
condition?: string | undefined | null;
|
|
12222
|
+
sources: Array<Source>;
|
|
12219
12223
|
section: {
|
|
12220
12224
|
__typename: "TamperSectionRequestAll";
|
|
12221
12225
|
operation: {
|
|
@@ -12572,6 +12576,7 @@ export type TamperRuleFullFragment = {
|
|
|
12572
12576
|
id: string;
|
|
12573
12577
|
name: string;
|
|
12574
12578
|
condition?: string | undefined | null;
|
|
12579
|
+
sources: Array<Source>;
|
|
12575
12580
|
section: {
|
|
12576
12581
|
__typename: "TamperSectionRequestAll";
|
|
12577
12582
|
operation: {
|
|
@@ -12935,6 +12940,7 @@ export type TamperRuleCollectionsQuery = {
|
|
|
12935
12940
|
id: string;
|
|
12936
12941
|
name: string;
|
|
12937
12942
|
condition?: string | undefined | null;
|
|
12943
|
+
sources: Array<Source>;
|
|
12938
12944
|
section: {
|
|
12939
12945
|
__typename: "TamperSectionRequestAll";
|
|
12940
12946
|
operation: {
|
|
@@ -13302,6 +13308,7 @@ export type RenameTamperRuleCollectionMutation = {
|
|
|
13302
13308
|
id: string;
|
|
13303
13309
|
name: string;
|
|
13304
13310
|
condition?: string | undefined | null;
|
|
13311
|
+
sources: Array<Source>;
|
|
13305
13312
|
section: {
|
|
13306
13313
|
__typename: "TamperSectionRequestAll";
|
|
13307
13314
|
operation: {
|
|
@@ -13669,6 +13676,7 @@ export type CreateTamperRuleCollectionMutation = {
|
|
|
13669
13676
|
id: string;
|
|
13670
13677
|
name: string;
|
|
13671
13678
|
condition?: string | undefined | null;
|
|
13679
|
+
sources: Array<Source>;
|
|
13672
13680
|
section: {
|
|
13673
13681
|
__typename: "TamperSectionRequestAll";
|
|
13674
13682
|
operation: {
|
|
@@ -14052,6 +14060,7 @@ export type CreateTamperRuleMutation = {
|
|
|
14052
14060
|
id: string;
|
|
14053
14061
|
name: string;
|
|
14054
14062
|
condition?: string | undefined | null;
|
|
14063
|
+
sources: Array<Source>;
|
|
14055
14064
|
section: {
|
|
14056
14065
|
__typename: "TamperSectionRequestAll";
|
|
14057
14066
|
operation: {
|
|
@@ -14439,6 +14448,7 @@ export type UpdateTamperRuleMutation = {
|
|
|
14439
14448
|
id: string;
|
|
14440
14449
|
name: string;
|
|
14441
14450
|
condition?: string | undefined | null;
|
|
14451
|
+
sources: Array<Source>;
|
|
14442
14452
|
section: {
|
|
14443
14453
|
__typename: "TamperSectionRequestAll";
|
|
14444
14454
|
operation: {
|
|
@@ -14802,6 +14812,7 @@ export type RenameTamperRuleMutation = {
|
|
|
14802
14812
|
id: string;
|
|
14803
14813
|
name: string;
|
|
14804
14814
|
condition?: string | undefined | null;
|
|
14815
|
+
sources: Array<Source>;
|
|
14805
14816
|
section: {
|
|
14806
14817
|
__typename: "TamperSectionRequestAll";
|
|
14807
14818
|
operation: {
|
|
@@ -15181,6 +15192,7 @@ export type ToggleTamperRuleMutation = {
|
|
|
15181
15192
|
id: string;
|
|
15182
15193
|
name: string;
|
|
15183
15194
|
condition?: string | undefined | null;
|
|
15195
|
+
sources: Array<Source>;
|
|
15184
15196
|
section: {
|
|
15185
15197
|
__typename: "TamperSectionRequestAll";
|
|
15186
15198
|
operation: {
|
|
@@ -15544,6 +15556,7 @@ export type RankTamperRuleMutation = {
|
|
|
15544
15556
|
id: string;
|
|
15545
15557
|
name: string;
|
|
15546
15558
|
condition?: string | undefined | null;
|
|
15559
|
+
sources: Array<Source>;
|
|
15547
15560
|
section: {
|
|
15548
15561
|
__typename: "TamperSectionRequestAll";
|
|
15549
15562
|
operation: {
|
|
@@ -15907,6 +15920,7 @@ export type MoveTamperRuleMutation = {
|
|
|
15907
15920
|
id: string;
|
|
15908
15921
|
name: string;
|
|
15909
15922
|
condition?: string | undefined | null;
|
|
15923
|
+
sources: Array<Source>;
|
|
15910
15924
|
section: {
|
|
15911
15925
|
__typename: "TamperSectionRequestAll";
|
|
15912
15926
|
operation: {
|
|
@@ -23491,7 +23505,7 @@ export declare const TamperOperationSniFullFragmentDoc = "\n fragment tamperO
|
|
|
23491
23505
|
export declare const TamperOperationStatusCodeUpdateFullFragmentDoc = "\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
23492
23506
|
export declare const TamperOperationStatusCodeFullFragmentDoc = "\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n ";
|
|
23493
23507
|
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 ";
|
|
23494
|
-
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 ";
|
|
23508
|
+
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 sources\n}\n ";
|
|
23495
23509
|
export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
|
|
23496
23510
|
export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
23497
23511
|
export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
@@ -23706,18 +23720,18 @@ export declare const UpdatedInterceptStatusDocument = "\n subscription update
|
|
|
23706
23720
|
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 ";
|
|
23707
23721
|
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 ";
|
|
23708
23722
|
export declare const DeletedInterceptMessageDocument = "\n subscription deletedInterceptMessage {\n deletedInterceptMessage {\n deletedMessageId\n }\n}\n ";
|
|
23709
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23710
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23711
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23723
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23724
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23725
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23712
23726
|
export declare const DeleteTamperRuleCollectionDocument = "\n mutation deleteTamperRuleCollection($id: ID!) {\n deleteTamperRuleCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
23713
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23727
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23714
23728
|
export declare const DeleteTamperRuleDocument = "\n mutation deleteTamperRule($id: ID!) {\n deleteTamperRule(id: $id) {\n deletedId\n }\n}\n ";
|
|
23715
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23716
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23729
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23730
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23717
23731
|
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 ";
|
|
23718
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23719
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23720
|
-
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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23732
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23733
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23734
|
+
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 sources\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 TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\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 tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\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 ";
|
|
23721
23735
|
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 ";
|
|
23722
23736
|
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 ";
|
|
23723
23737
|
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 ";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { type MatchReplaceCollection, type MatchReplaceRule, type MatchReplaceSection } from "../types/matchReplace";
|
|
1
|
+
import { type MatchReplaceCollection, type MatchReplaceRule, type MatchReplaceSection, type Source } from "../types/matchReplace";
|
|
2
2
|
import type { HTTPQL, ID } from "../types/utils";
|
|
3
3
|
/**
|
|
4
4
|
* Utilities to interact with the Match and Replace page.
|
|
@@ -53,12 +53,14 @@ export type MatchReplaceSDK = {
|
|
|
53
53
|
* @param options.name - The name of the rule.
|
|
54
54
|
* @param options.query - The HTTPQL query to match the rule against.
|
|
55
55
|
* @param options.collectionId - The ID of the collection the rule belongs to.
|
|
56
|
+
* @param options.sources - The sources the rule belongs to.
|
|
56
57
|
*/
|
|
57
58
|
createRule: (options: {
|
|
58
59
|
name: string;
|
|
59
60
|
query: HTTPQL;
|
|
60
61
|
section: MatchReplaceSection;
|
|
61
62
|
collectionId: ID;
|
|
63
|
+
sources: Array<Source>;
|
|
62
64
|
}) => Promise<MatchReplaceRule>;
|
|
63
65
|
/**
|
|
64
66
|
* Update a rule.
|
|
@@ -67,11 +69,13 @@ export type MatchReplaceSDK = {
|
|
|
67
69
|
* @param options.name - The new name of the rule.
|
|
68
70
|
* @param options.query - The new HTTPQL query of the rule.
|
|
69
71
|
* @param options.section - The new section of the rule.
|
|
72
|
+
* @param options.sources - The new sources of the rule.
|
|
70
73
|
*/
|
|
71
74
|
updateRule: (id: ID, options: {
|
|
72
75
|
name: string;
|
|
73
76
|
query?: HTTPQL;
|
|
74
77
|
section: MatchReplaceSection;
|
|
78
|
+
sources: Array<Source>;
|
|
75
79
|
}) => Promise<MatchReplaceRule>;
|
|
76
80
|
/**
|
|
77
81
|
* Toggle a rule.
|
|
@@ -30,6 +30,15 @@ export type MatchReplaceRule = {
|
|
|
30
30
|
*/
|
|
31
31
|
collectionId: ID;
|
|
32
32
|
};
|
|
33
|
+
export declare const Source: {
|
|
34
|
+
readonly Automate: "AUTOMATE";
|
|
35
|
+
readonly Intercept: "INTERCEPT";
|
|
36
|
+
readonly Plugin: "PLUGIN";
|
|
37
|
+
readonly Replay: "REPLAY";
|
|
38
|
+
readonly Sample: "SAMPLE";
|
|
39
|
+
readonly Workflow: "WORKFLOW";
|
|
40
|
+
};
|
|
41
|
+
export type Source = (typeof Source)[keyof typeof Source];
|
|
33
42
|
export type MatchReplaceSection = MatchReplaceSectionRequestAll | MatchReplaceSectionRequestBody | MatchReplaceSectionRequestFirstLine | MatchReplaceSectionRequestHeader | MatchReplaceSectionRequestMethod | MatchReplaceSectionRequestPath | MatchReplaceSectionRequestQuery | MatchReplaceSectionRequestSNI | MatchReplaceSectionResponseAll | MatchReplaceSectionResponseBody | MatchReplaceSectionResponseFirstLine | MatchReplaceSectionResponseHeader | MatchReplaceSectionResponseStatusCode;
|
|
34
43
|
export type MatchReplaceSectionRequestAll = {
|
|
35
44
|
kind: "SectionRequestAll";
|