@caido/sdk-frontend 0.54.2-beta.10 → 0.54.2-beta.11
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
|
@@ -1128,7 +1128,7 @@ export type DataImportResult = {
|
|
|
1128
1128
|
id: Scalars["ID"]["output"];
|
|
1129
1129
|
summary?: Maybe<DataImportSummary>;
|
|
1130
1130
|
};
|
|
1131
|
-
export type DataImportSummary = TamperSummary;
|
|
1131
|
+
export type DataImportSummary = FindingsSummary | TamperSummary;
|
|
1132
1132
|
export type DeleteAssistantSessionPayload = {
|
|
1133
1133
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1134
1134
|
};
|
|
@@ -1445,6 +1445,9 @@ export type FindingOrderInput = {
|
|
|
1445
1445
|
by: FindingOrderBy;
|
|
1446
1446
|
ordering: Ordering;
|
|
1447
1447
|
};
|
|
1448
|
+
export type FindingsSummary = {
|
|
1449
|
+
findingsImported: Scalars["Int"]["output"];
|
|
1450
|
+
};
|
|
1448
1451
|
export type FinishedBackupTaskCancelled = {
|
|
1449
1452
|
taskId: Scalars["ID"]["output"];
|
|
1450
1453
|
};
|
|
@@ -1558,8 +1561,15 @@ export type ImportCertificatePayload = {
|
|
|
1558
1561
|
error?: Maybe<ImportCertificateError>;
|
|
1559
1562
|
};
|
|
1560
1563
|
export type ImportDataInput = {
|
|
1564
|
+
findings: ImportFindingsInput;
|
|
1565
|
+
tamper?: never;
|
|
1566
|
+
} | {
|
|
1567
|
+
findings?: never;
|
|
1561
1568
|
tamper: ImportTamperRuleInput;
|
|
1562
1569
|
};
|
|
1570
|
+
export type ImportFindingsInput = {
|
|
1571
|
+
file: Scalars["Upload"]["input"];
|
|
1572
|
+
};
|
|
1563
1573
|
export type ImportTamperRuleInput = {
|
|
1564
1574
|
file: Scalars["Upload"]["input"];
|
|
1565
1575
|
};
|
|
@@ -3392,6 +3402,7 @@ export type SitemapEntryMetadataDomain = {
|
|
|
3392
3402
|
};
|
|
3393
3403
|
export declare const Source: {
|
|
3394
3404
|
readonly Automate: "AUTOMATE";
|
|
3405
|
+
readonly Import: "IMPORT";
|
|
3395
3406
|
readonly Intercept: "INTERCEPT";
|
|
3396
3407
|
readonly Plugin: "PLUGIN";
|
|
3397
3408
|
readonly Replay: "REPLAY";
|
|
@@ -16434,6 +16445,774 @@ export type MoveTamperRuleMutation = {
|
|
|
16434
16445
|
} | undefined | null;
|
|
16435
16446
|
};
|
|
16436
16447
|
};
|
|
16448
|
+
export type ExportTamperMutationVariables = Exact<{
|
|
16449
|
+
input: ExportTamperInput;
|
|
16450
|
+
}>;
|
|
16451
|
+
export type ExportTamperMutation = {
|
|
16452
|
+
exportTamper: {
|
|
16453
|
+
export?: {
|
|
16454
|
+
downloadUri: string;
|
|
16455
|
+
id: string;
|
|
16456
|
+
} | undefined | null;
|
|
16457
|
+
error?: {
|
|
16458
|
+
__typename: "OtherUserError";
|
|
16459
|
+
code: string;
|
|
16460
|
+
} | {
|
|
16461
|
+
__typename: "PermissionDeniedUserError";
|
|
16462
|
+
code: string;
|
|
16463
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
16464
|
+
} | undefined | null;
|
|
16465
|
+
};
|
|
16466
|
+
};
|
|
16467
|
+
export type ImportTamperMutationVariables = Exact<{
|
|
16468
|
+
input: ImportTamperRuleInput;
|
|
16469
|
+
}>;
|
|
16470
|
+
export type ImportTamperMutation = {
|
|
16471
|
+
importData: {
|
|
16472
|
+
id: string;
|
|
16473
|
+
errors: Array<string>;
|
|
16474
|
+
summary?: {
|
|
16475
|
+
collectionsCreated: number;
|
|
16476
|
+
rulesImported: number;
|
|
16477
|
+
} | {} | undefined | null;
|
|
16478
|
+
};
|
|
16479
|
+
};
|
|
16480
|
+
export type CreatedTamperRuleCollectionSubscriptionVariables = Exact<{
|
|
16481
|
+
[key: string]: never;
|
|
16482
|
+
}>;
|
|
16483
|
+
export type CreatedTamperRuleCollectionSubscription = {
|
|
16484
|
+
createdTamperRuleCollection: {
|
|
16485
|
+
snapshot: number;
|
|
16486
|
+
collectionEdge: {
|
|
16487
|
+
cursor: string;
|
|
16488
|
+
node: {
|
|
16489
|
+
__typename: "TamperRuleCollection";
|
|
16490
|
+
id: string;
|
|
16491
|
+
name: string;
|
|
16492
|
+
rules: Array<{
|
|
16493
|
+
__typename: "TamperRule";
|
|
16494
|
+
id: string;
|
|
16495
|
+
name: string;
|
|
16496
|
+
condition?: string | undefined | null;
|
|
16497
|
+
sources: Array<Source>;
|
|
16498
|
+
section: {
|
|
16499
|
+
__typename: "TamperSectionRequestAll";
|
|
16500
|
+
operation: {
|
|
16501
|
+
__typename: "TamperOperationAllRaw";
|
|
16502
|
+
matcher: {
|
|
16503
|
+
__typename: "TamperMatcherFull";
|
|
16504
|
+
} | {
|
|
16505
|
+
__typename: "TamperMatcherRegex";
|
|
16506
|
+
regex: string;
|
|
16507
|
+
} | {
|
|
16508
|
+
__typename: "TamperMatcherValue";
|
|
16509
|
+
value: string;
|
|
16510
|
+
};
|
|
16511
|
+
replacer: {
|
|
16512
|
+
__typename: "TamperReplacerTerm";
|
|
16513
|
+
term: string;
|
|
16514
|
+
} | {
|
|
16515
|
+
__typename: "TamperReplacerWorkflow";
|
|
16516
|
+
id: string;
|
|
16517
|
+
};
|
|
16518
|
+
};
|
|
16519
|
+
} | {
|
|
16520
|
+
__typename: "TamperSectionRequestBody";
|
|
16521
|
+
operation: {
|
|
16522
|
+
__typename: "TamperOperationBodyRaw";
|
|
16523
|
+
matcher: {
|
|
16524
|
+
__typename: "TamperMatcherFull";
|
|
16525
|
+
} | {
|
|
16526
|
+
__typename: "TamperMatcherRegex";
|
|
16527
|
+
regex: string;
|
|
16528
|
+
} | {
|
|
16529
|
+
__typename: "TamperMatcherValue";
|
|
16530
|
+
value: string;
|
|
16531
|
+
};
|
|
16532
|
+
replacer: {
|
|
16533
|
+
__typename: "TamperReplacerTerm";
|
|
16534
|
+
term: string;
|
|
16535
|
+
} | {
|
|
16536
|
+
__typename: "TamperReplacerWorkflow";
|
|
16537
|
+
id: string;
|
|
16538
|
+
};
|
|
16539
|
+
};
|
|
16540
|
+
} | {
|
|
16541
|
+
__typename: "TamperSectionRequestFirstLine";
|
|
16542
|
+
operation: {
|
|
16543
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
16544
|
+
matcher: {
|
|
16545
|
+
__typename: "TamperMatcherFull";
|
|
16546
|
+
} | {
|
|
16547
|
+
__typename: "TamperMatcherRegex";
|
|
16548
|
+
regex: string;
|
|
16549
|
+
} | {
|
|
16550
|
+
__typename: "TamperMatcherValue";
|
|
16551
|
+
value: string;
|
|
16552
|
+
};
|
|
16553
|
+
replacer: {
|
|
16554
|
+
__typename: "TamperReplacerTerm";
|
|
16555
|
+
term: string;
|
|
16556
|
+
} | {
|
|
16557
|
+
__typename: "TamperReplacerWorkflow";
|
|
16558
|
+
id: string;
|
|
16559
|
+
};
|
|
16560
|
+
};
|
|
16561
|
+
} | {
|
|
16562
|
+
__typename: "TamperSectionRequestHeader";
|
|
16563
|
+
operation: {
|
|
16564
|
+
__typename: "TamperOperationHeaderAdd";
|
|
16565
|
+
matcher: {
|
|
16566
|
+
__typename: "TamperMatcherName";
|
|
16567
|
+
name: string;
|
|
16568
|
+
};
|
|
16569
|
+
replacer: {
|
|
16570
|
+
__typename: "TamperReplacerTerm";
|
|
16571
|
+
term: string;
|
|
16572
|
+
} | {
|
|
16573
|
+
__typename: "TamperReplacerWorkflow";
|
|
16574
|
+
id: string;
|
|
16575
|
+
};
|
|
16576
|
+
} | {
|
|
16577
|
+
__typename: "TamperOperationHeaderRaw";
|
|
16578
|
+
matcher: {
|
|
16579
|
+
__typename: "TamperMatcherFull";
|
|
16580
|
+
} | {
|
|
16581
|
+
__typename: "TamperMatcherRegex";
|
|
16582
|
+
regex: string;
|
|
16583
|
+
} | {
|
|
16584
|
+
__typename: "TamperMatcherValue";
|
|
16585
|
+
value: string;
|
|
16586
|
+
};
|
|
16587
|
+
replacer: {
|
|
16588
|
+
__typename: "TamperReplacerTerm";
|
|
16589
|
+
term: string;
|
|
16590
|
+
} | {
|
|
16591
|
+
__typename: "TamperReplacerWorkflow";
|
|
16592
|
+
id: string;
|
|
16593
|
+
};
|
|
16594
|
+
} | {
|
|
16595
|
+
__typename: "TamperOperationHeaderRemove";
|
|
16596
|
+
matcher: {
|
|
16597
|
+
__typename: "TamperMatcherName";
|
|
16598
|
+
name: string;
|
|
16599
|
+
};
|
|
16600
|
+
} | {
|
|
16601
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
16602
|
+
matcher: {
|
|
16603
|
+
__typename: "TamperMatcherName";
|
|
16604
|
+
name: string;
|
|
16605
|
+
};
|
|
16606
|
+
replacer: {
|
|
16607
|
+
__typename: "TamperReplacerTerm";
|
|
16608
|
+
term: string;
|
|
16609
|
+
} | {
|
|
16610
|
+
__typename: "TamperReplacerWorkflow";
|
|
16611
|
+
id: string;
|
|
16612
|
+
};
|
|
16613
|
+
};
|
|
16614
|
+
} | {
|
|
16615
|
+
__typename: "TamperSectionRequestMethod";
|
|
16616
|
+
operation: {
|
|
16617
|
+
__typename: "TamperOperationMethodUpdate";
|
|
16618
|
+
replacer: {
|
|
16619
|
+
__typename: "TamperReplacerTerm";
|
|
16620
|
+
term: string;
|
|
16621
|
+
} | {
|
|
16622
|
+
__typename: "TamperReplacerWorkflow";
|
|
16623
|
+
id: string;
|
|
16624
|
+
};
|
|
16625
|
+
};
|
|
16626
|
+
} | {
|
|
16627
|
+
__typename: "TamperSectionRequestPath";
|
|
16628
|
+
operation: {
|
|
16629
|
+
__typename: "TamperOperationPathRaw";
|
|
16630
|
+
matcher: {
|
|
16631
|
+
__typename: "TamperMatcherFull";
|
|
16632
|
+
} | {
|
|
16633
|
+
__typename: "TamperMatcherRegex";
|
|
16634
|
+
regex: string;
|
|
16635
|
+
} | {
|
|
16636
|
+
__typename: "TamperMatcherValue";
|
|
16637
|
+
value: string;
|
|
16638
|
+
};
|
|
16639
|
+
replacer: {
|
|
16640
|
+
__typename: "TamperReplacerTerm";
|
|
16641
|
+
term: string;
|
|
16642
|
+
} | {
|
|
16643
|
+
__typename: "TamperReplacerWorkflow";
|
|
16644
|
+
id: string;
|
|
16645
|
+
};
|
|
16646
|
+
};
|
|
16647
|
+
} | {
|
|
16648
|
+
__typename: "TamperSectionRequestQuery";
|
|
16649
|
+
operation: {
|
|
16650
|
+
__typename: "TamperOperationQueryAdd";
|
|
16651
|
+
matcher: {
|
|
16652
|
+
__typename: "TamperMatcherName";
|
|
16653
|
+
name: string;
|
|
16654
|
+
};
|
|
16655
|
+
replacer: {
|
|
16656
|
+
__typename: "TamperReplacerTerm";
|
|
16657
|
+
term: string;
|
|
16658
|
+
} | {
|
|
16659
|
+
__typename: "TamperReplacerWorkflow";
|
|
16660
|
+
id: string;
|
|
16661
|
+
};
|
|
16662
|
+
} | {
|
|
16663
|
+
__typename: "TamperOperationQueryRaw";
|
|
16664
|
+
matcher: {
|
|
16665
|
+
__typename: "TamperMatcherFull";
|
|
16666
|
+
} | {
|
|
16667
|
+
__typename: "TamperMatcherRegex";
|
|
16668
|
+
regex: string;
|
|
16669
|
+
} | {
|
|
16670
|
+
__typename: "TamperMatcherValue";
|
|
16671
|
+
value: string;
|
|
16672
|
+
};
|
|
16673
|
+
replacer: {
|
|
16674
|
+
__typename: "TamperReplacerTerm";
|
|
16675
|
+
term: string;
|
|
16676
|
+
} | {
|
|
16677
|
+
__typename: "TamperReplacerWorkflow";
|
|
16678
|
+
id: string;
|
|
16679
|
+
};
|
|
16680
|
+
} | {
|
|
16681
|
+
__typename: "TamperOperationQueryRemove";
|
|
16682
|
+
matcher: {
|
|
16683
|
+
__typename: "TamperMatcherName";
|
|
16684
|
+
name: string;
|
|
16685
|
+
};
|
|
16686
|
+
} | {
|
|
16687
|
+
__typename: "TamperOperationQueryUpdate";
|
|
16688
|
+
matcher: {
|
|
16689
|
+
__typename: "TamperMatcherName";
|
|
16690
|
+
name: string;
|
|
16691
|
+
};
|
|
16692
|
+
replacer: {
|
|
16693
|
+
__typename: "TamperReplacerTerm";
|
|
16694
|
+
term: string;
|
|
16695
|
+
} | {
|
|
16696
|
+
__typename: "TamperReplacerWorkflow";
|
|
16697
|
+
id: string;
|
|
16698
|
+
};
|
|
16699
|
+
};
|
|
16700
|
+
} | {
|
|
16701
|
+
__typename: "TamperSectionRequestSNI";
|
|
16702
|
+
operation: {
|
|
16703
|
+
__typename: "TamperOperationSNIRaw";
|
|
16704
|
+
replacer: {
|
|
16705
|
+
__typename: "TamperReplacerTerm";
|
|
16706
|
+
term: string;
|
|
16707
|
+
} | {
|
|
16708
|
+
__typename: "TamperReplacerWorkflow";
|
|
16709
|
+
id: string;
|
|
16710
|
+
};
|
|
16711
|
+
};
|
|
16712
|
+
} | {
|
|
16713
|
+
__typename: "TamperSectionResponseAll";
|
|
16714
|
+
operation: {
|
|
16715
|
+
__typename: "TamperOperationAllRaw";
|
|
16716
|
+
matcher: {
|
|
16717
|
+
__typename: "TamperMatcherFull";
|
|
16718
|
+
} | {
|
|
16719
|
+
__typename: "TamperMatcherRegex";
|
|
16720
|
+
regex: string;
|
|
16721
|
+
} | {
|
|
16722
|
+
__typename: "TamperMatcherValue";
|
|
16723
|
+
value: string;
|
|
16724
|
+
};
|
|
16725
|
+
replacer: {
|
|
16726
|
+
__typename: "TamperReplacerTerm";
|
|
16727
|
+
term: string;
|
|
16728
|
+
} | {
|
|
16729
|
+
__typename: "TamperReplacerWorkflow";
|
|
16730
|
+
id: string;
|
|
16731
|
+
};
|
|
16732
|
+
};
|
|
16733
|
+
} | {
|
|
16734
|
+
__typename: "TamperSectionResponseBody";
|
|
16735
|
+
operation: {
|
|
16736
|
+
__typename: "TamperOperationBodyRaw";
|
|
16737
|
+
matcher: {
|
|
16738
|
+
__typename: "TamperMatcherFull";
|
|
16739
|
+
} | {
|
|
16740
|
+
__typename: "TamperMatcherRegex";
|
|
16741
|
+
regex: string;
|
|
16742
|
+
} | {
|
|
16743
|
+
__typename: "TamperMatcherValue";
|
|
16744
|
+
value: string;
|
|
16745
|
+
};
|
|
16746
|
+
replacer: {
|
|
16747
|
+
__typename: "TamperReplacerTerm";
|
|
16748
|
+
term: string;
|
|
16749
|
+
} | {
|
|
16750
|
+
__typename: "TamperReplacerWorkflow";
|
|
16751
|
+
id: string;
|
|
16752
|
+
};
|
|
16753
|
+
};
|
|
16754
|
+
} | {
|
|
16755
|
+
__typename: "TamperSectionResponseFirstLine";
|
|
16756
|
+
operation: {
|
|
16757
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
16758
|
+
matcher: {
|
|
16759
|
+
__typename: "TamperMatcherFull";
|
|
16760
|
+
} | {
|
|
16761
|
+
__typename: "TamperMatcherRegex";
|
|
16762
|
+
regex: string;
|
|
16763
|
+
} | {
|
|
16764
|
+
__typename: "TamperMatcherValue";
|
|
16765
|
+
value: string;
|
|
16766
|
+
};
|
|
16767
|
+
replacer: {
|
|
16768
|
+
__typename: "TamperReplacerTerm";
|
|
16769
|
+
term: string;
|
|
16770
|
+
} | {
|
|
16771
|
+
__typename: "TamperReplacerWorkflow";
|
|
16772
|
+
id: string;
|
|
16773
|
+
};
|
|
16774
|
+
};
|
|
16775
|
+
} | {
|
|
16776
|
+
__typename: "TamperSectionResponseHeader";
|
|
16777
|
+
operation: {
|
|
16778
|
+
__typename: "TamperOperationHeaderAdd";
|
|
16779
|
+
matcher: {
|
|
16780
|
+
__typename: "TamperMatcherName";
|
|
16781
|
+
name: string;
|
|
16782
|
+
};
|
|
16783
|
+
replacer: {
|
|
16784
|
+
__typename: "TamperReplacerTerm";
|
|
16785
|
+
term: string;
|
|
16786
|
+
} | {
|
|
16787
|
+
__typename: "TamperReplacerWorkflow";
|
|
16788
|
+
id: string;
|
|
16789
|
+
};
|
|
16790
|
+
} | {
|
|
16791
|
+
__typename: "TamperOperationHeaderRaw";
|
|
16792
|
+
matcher: {
|
|
16793
|
+
__typename: "TamperMatcherFull";
|
|
16794
|
+
} | {
|
|
16795
|
+
__typename: "TamperMatcherRegex";
|
|
16796
|
+
regex: string;
|
|
16797
|
+
} | {
|
|
16798
|
+
__typename: "TamperMatcherValue";
|
|
16799
|
+
value: string;
|
|
16800
|
+
};
|
|
16801
|
+
replacer: {
|
|
16802
|
+
__typename: "TamperReplacerTerm";
|
|
16803
|
+
term: string;
|
|
16804
|
+
} | {
|
|
16805
|
+
__typename: "TamperReplacerWorkflow";
|
|
16806
|
+
id: string;
|
|
16807
|
+
};
|
|
16808
|
+
} | {
|
|
16809
|
+
__typename: "TamperOperationHeaderRemove";
|
|
16810
|
+
matcher: {
|
|
16811
|
+
__typename: "TamperMatcherName";
|
|
16812
|
+
name: string;
|
|
16813
|
+
};
|
|
16814
|
+
} | {
|
|
16815
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
16816
|
+
matcher: {
|
|
16817
|
+
__typename: "TamperMatcherName";
|
|
16818
|
+
name: string;
|
|
16819
|
+
};
|
|
16820
|
+
replacer: {
|
|
16821
|
+
__typename: "TamperReplacerTerm";
|
|
16822
|
+
term: string;
|
|
16823
|
+
} | {
|
|
16824
|
+
__typename: "TamperReplacerWorkflow";
|
|
16825
|
+
id: string;
|
|
16826
|
+
};
|
|
16827
|
+
};
|
|
16828
|
+
} | {
|
|
16829
|
+
__typename: "TamperSectionResponseStatusCode";
|
|
16830
|
+
operation: {
|
|
16831
|
+
__typename: "TamperOperationStatusCodeUpdate";
|
|
16832
|
+
replacer: {
|
|
16833
|
+
__typename: "TamperReplacerTerm";
|
|
16834
|
+
term: string;
|
|
16835
|
+
} | {
|
|
16836
|
+
__typename: "TamperReplacerWorkflow";
|
|
16837
|
+
id: string;
|
|
16838
|
+
};
|
|
16839
|
+
};
|
|
16840
|
+
};
|
|
16841
|
+
enable?: {
|
|
16842
|
+
rank: string;
|
|
16843
|
+
} | undefined | null;
|
|
16844
|
+
collection: {
|
|
16845
|
+
id: string;
|
|
16846
|
+
};
|
|
16847
|
+
}>;
|
|
16848
|
+
};
|
|
16849
|
+
};
|
|
16850
|
+
};
|
|
16851
|
+
};
|
|
16852
|
+
export type CreatedTamperRuleSubscriptionVariables = Exact<{
|
|
16853
|
+
[key: string]: never;
|
|
16854
|
+
}>;
|
|
16855
|
+
export type CreatedTamperRuleSubscription = {
|
|
16856
|
+
createdTamperRule: {
|
|
16857
|
+
snapshot: number;
|
|
16858
|
+
rule: {
|
|
16859
|
+
__typename: "TamperRule";
|
|
16860
|
+
id: string;
|
|
16861
|
+
name: string;
|
|
16862
|
+
condition?: string | undefined | null;
|
|
16863
|
+
sources: Array<Source>;
|
|
16864
|
+
section: {
|
|
16865
|
+
__typename: "TamperSectionRequestAll";
|
|
16866
|
+
operation: {
|
|
16867
|
+
__typename: "TamperOperationAllRaw";
|
|
16868
|
+
matcher: {
|
|
16869
|
+
__typename: "TamperMatcherFull";
|
|
16870
|
+
} | {
|
|
16871
|
+
__typename: "TamperMatcherRegex";
|
|
16872
|
+
regex: string;
|
|
16873
|
+
} | {
|
|
16874
|
+
__typename: "TamperMatcherValue";
|
|
16875
|
+
value: string;
|
|
16876
|
+
};
|
|
16877
|
+
replacer: {
|
|
16878
|
+
__typename: "TamperReplacerTerm";
|
|
16879
|
+
term: string;
|
|
16880
|
+
} | {
|
|
16881
|
+
__typename: "TamperReplacerWorkflow";
|
|
16882
|
+
id: string;
|
|
16883
|
+
};
|
|
16884
|
+
};
|
|
16885
|
+
} | {
|
|
16886
|
+
__typename: "TamperSectionRequestBody";
|
|
16887
|
+
operation: {
|
|
16888
|
+
__typename: "TamperOperationBodyRaw";
|
|
16889
|
+
matcher: {
|
|
16890
|
+
__typename: "TamperMatcherFull";
|
|
16891
|
+
} | {
|
|
16892
|
+
__typename: "TamperMatcherRegex";
|
|
16893
|
+
regex: string;
|
|
16894
|
+
} | {
|
|
16895
|
+
__typename: "TamperMatcherValue";
|
|
16896
|
+
value: string;
|
|
16897
|
+
};
|
|
16898
|
+
replacer: {
|
|
16899
|
+
__typename: "TamperReplacerTerm";
|
|
16900
|
+
term: string;
|
|
16901
|
+
} | {
|
|
16902
|
+
__typename: "TamperReplacerWorkflow";
|
|
16903
|
+
id: string;
|
|
16904
|
+
};
|
|
16905
|
+
};
|
|
16906
|
+
} | {
|
|
16907
|
+
__typename: "TamperSectionRequestFirstLine";
|
|
16908
|
+
operation: {
|
|
16909
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
16910
|
+
matcher: {
|
|
16911
|
+
__typename: "TamperMatcherFull";
|
|
16912
|
+
} | {
|
|
16913
|
+
__typename: "TamperMatcherRegex";
|
|
16914
|
+
regex: string;
|
|
16915
|
+
} | {
|
|
16916
|
+
__typename: "TamperMatcherValue";
|
|
16917
|
+
value: string;
|
|
16918
|
+
};
|
|
16919
|
+
replacer: {
|
|
16920
|
+
__typename: "TamperReplacerTerm";
|
|
16921
|
+
term: string;
|
|
16922
|
+
} | {
|
|
16923
|
+
__typename: "TamperReplacerWorkflow";
|
|
16924
|
+
id: string;
|
|
16925
|
+
};
|
|
16926
|
+
};
|
|
16927
|
+
} | {
|
|
16928
|
+
__typename: "TamperSectionRequestHeader";
|
|
16929
|
+
operation: {
|
|
16930
|
+
__typename: "TamperOperationHeaderAdd";
|
|
16931
|
+
matcher: {
|
|
16932
|
+
__typename: "TamperMatcherName";
|
|
16933
|
+
name: string;
|
|
16934
|
+
};
|
|
16935
|
+
replacer: {
|
|
16936
|
+
__typename: "TamperReplacerTerm";
|
|
16937
|
+
term: string;
|
|
16938
|
+
} | {
|
|
16939
|
+
__typename: "TamperReplacerWorkflow";
|
|
16940
|
+
id: string;
|
|
16941
|
+
};
|
|
16942
|
+
} | {
|
|
16943
|
+
__typename: "TamperOperationHeaderRaw";
|
|
16944
|
+
matcher: {
|
|
16945
|
+
__typename: "TamperMatcherFull";
|
|
16946
|
+
} | {
|
|
16947
|
+
__typename: "TamperMatcherRegex";
|
|
16948
|
+
regex: string;
|
|
16949
|
+
} | {
|
|
16950
|
+
__typename: "TamperMatcherValue";
|
|
16951
|
+
value: string;
|
|
16952
|
+
};
|
|
16953
|
+
replacer: {
|
|
16954
|
+
__typename: "TamperReplacerTerm";
|
|
16955
|
+
term: string;
|
|
16956
|
+
} | {
|
|
16957
|
+
__typename: "TamperReplacerWorkflow";
|
|
16958
|
+
id: string;
|
|
16959
|
+
};
|
|
16960
|
+
} | {
|
|
16961
|
+
__typename: "TamperOperationHeaderRemove";
|
|
16962
|
+
matcher: {
|
|
16963
|
+
__typename: "TamperMatcherName";
|
|
16964
|
+
name: string;
|
|
16965
|
+
};
|
|
16966
|
+
} | {
|
|
16967
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
16968
|
+
matcher: {
|
|
16969
|
+
__typename: "TamperMatcherName";
|
|
16970
|
+
name: string;
|
|
16971
|
+
};
|
|
16972
|
+
replacer: {
|
|
16973
|
+
__typename: "TamperReplacerTerm";
|
|
16974
|
+
term: string;
|
|
16975
|
+
} | {
|
|
16976
|
+
__typename: "TamperReplacerWorkflow";
|
|
16977
|
+
id: string;
|
|
16978
|
+
};
|
|
16979
|
+
};
|
|
16980
|
+
} | {
|
|
16981
|
+
__typename: "TamperSectionRequestMethod";
|
|
16982
|
+
operation: {
|
|
16983
|
+
__typename: "TamperOperationMethodUpdate";
|
|
16984
|
+
replacer: {
|
|
16985
|
+
__typename: "TamperReplacerTerm";
|
|
16986
|
+
term: string;
|
|
16987
|
+
} | {
|
|
16988
|
+
__typename: "TamperReplacerWorkflow";
|
|
16989
|
+
id: string;
|
|
16990
|
+
};
|
|
16991
|
+
};
|
|
16992
|
+
} | {
|
|
16993
|
+
__typename: "TamperSectionRequestPath";
|
|
16994
|
+
operation: {
|
|
16995
|
+
__typename: "TamperOperationPathRaw";
|
|
16996
|
+
matcher: {
|
|
16997
|
+
__typename: "TamperMatcherFull";
|
|
16998
|
+
} | {
|
|
16999
|
+
__typename: "TamperMatcherRegex";
|
|
17000
|
+
regex: string;
|
|
17001
|
+
} | {
|
|
17002
|
+
__typename: "TamperMatcherValue";
|
|
17003
|
+
value: string;
|
|
17004
|
+
};
|
|
17005
|
+
replacer: {
|
|
17006
|
+
__typename: "TamperReplacerTerm";
|
|
17007
|
+
term: string;
|
|
17008
|
+
} | {
|
|
17009
|
+
__typename: "TamperReplacerWorkflow";
|
|
17010
|
+
id: string;
|
|
17011
|
+
};
|
|
17012
|
+
};
|
|
17013
|
+
} | {
|
|
17014
|
+
__typename: "TamperSectionRequestQuery";
|
|
17015
|
+
operation: {
|
|
17016
|
+
__typename: "TamperOperationQueryAdd";
|
|
17017
|
+
matcher: {
|
|
17018
|
+
__typename: "TamperMatcherName";
|
|
17019
|
+
name: string;
|
|
17020
|
+
};
|
|
17021
|
+
replacer: {
|
|
17022
|
+
__typename: "TamperReplacerTerm";
|
|
17023
|
+
term: string;
|
|
17024
|
+
} | {
|
|
17025
|
+
__typename: "TamperReplacerWorkflow";
|
|
17026
|
+
id: string;
|
|
17027
|
+
};
|
|
17028
|
+
} | {
|
|
17029
|
+
__typename: "TamperOperationQueryRaw";
|
|
17030
|
+
matcher: {
|
|
17031
|
+
__typename: "TamperMatcherFull";
|
|
17032
|
+
} | {
|
|
17033
|
+
__typename: "TamperMatcherRegex";
|
|
17034
|
+
regex: string;
|
|
17035
|
+
} | {
|
|
17036
|
+
__typename: "TamperMatcherValue";
|
|
17037
|
+
value: string;
|
|
17038
|
+
};
|
|
17039
|
+
replacer: {
|
|
17040
|
+
__typename: "TamperReplacerTerm";
|
|
17041
|
+
term: string;
|
|
17042
|
+
} | {
|
|
17043
|
+
__typename: "TamperReplacerWorkflow";
|
|
17044
|
+
id: string;
|
|
17045
|
+
};
|
|
17046
|
+
} | {
|
|
17047
|
+
__typename: "TamperOperationQueryRemove";
|
|
17048
|
+
matcher: {
|
|
17049
|
+
__typename: "TamperMatcherName";
|
|
17050
|
+
name: string;
|
|
17051
|
+
};
|
|
17052
|
+
} | {
|
|
17053
|
+
__typename: "TamperOperationQueryUpdate";
|
|
17054
|
+
matcher: {
|
|
17055
|
+
__typename: "TamperMatcherName";
|
|
17056
|
+
name: string;
|
|
17057
|
+
};
|
|
17058
|
+
replacer: {
|
|
17059
|
+
__typename: "TamperReplacerTerm";
|
|
17060
|
+
term: string;
|
|
17061
|
+
} | {
|
|
17062
|
+
__typename: "TamperReplacerWorkflow";
|
|
17063
|
+
id: string;
|
|
17064
|
+
};
|
|
17065
|
+
};
|
|
17066
|
+
} | {
|
|
17067
|
+
__typename: "TamperSectionRequestSNI";
|
|
17068
|
+
operation: {
|
|
17069
|
+
__typename: "TamperOperationSNIRaw";
|
|
17070
|
+
replacer: {
|
|
17071
|
+
__typename: "TamperReplacerTerm";
|
|
17072
|
+
term: string;
|
|
17073
|
+
} | {
|
|
17074
|
+
__typename: "TamperReplacerWorkflow";
|
|
17075
|
+
id: string;
|
|
17076
|
+
};
|
|
17077
|
+
};
|
|
17078
|
+
} | {
|
|
17079
|
+
__typename: "TamperSectionResponseAll";
|
|
17080
|
+
operation: {
|
|
17081
|
+
__typename: "TamperOperationAllRaw";
|
|
17082
|
+
matcher: {
|
|
17083
|
+
__typename: "TamperMatcherFull";
|
|
17084
|
+
} | {
|
|
17085
|
+
__typename: "TamperMatcherRegex";
|
|
17086
|
+
regex: string;
|
|
17087
|
+
} | {
|
|
17088
|
+
__typename: "TamperMatcherValue";
|
|
17089
|
+
value: string;
|
|
17090
|
+
};
|
|
17091
|
+
replacer: {
|
|
17092
|
+
__typename: "TamperReplacerTerm";
|
|
17093
|
+
term: string;
|
|
17094
|
+
} | {
|
|
17095
|
+
__typename: "TamperReplacerWorkflow";
|
|
17096
|
+
id: string;
|
|
17097
|
+
};
|
|
17098
|
+
};
|
|
17099
|
+
} | {
|
|
17100
|
+
__typename: "TamperSectionResponseBody";
|
|
17101
|
+
operation: {
|
|
17102
|
+
__typename: "TamperOperationBodyRaw";
|
|
17103
|
+
matcher: {
|
|
17104
|
+
__typename: "TamperMatcherFull";
|
|
17105
|
+
} | {
|
|
17106
|
+
__typename: "TamperMatcherRegex";
|
|
17107
|
+
regex: string;
|
|
17108
|
+
} | {
|
|
17109
|
+
__typename: "TamperMatcherValue";
|
|
17110
|
+
value: string;
|
|
17111
|
+
};
|
|
17112
|
+
replacer: {
|
|
17113
|
+
__typename: "TamperReplacerTerm";
|
|
17114
|
+
term: string;
|
|
17115
|
+
} | {
|
|
17116
|
+
__typename: "TamperReplacerWorkflow";
|
|
17117
|
+
id: string;
|
|
17118
|
+
};
|
|
17119
|
+
};
|
|
17120
|
+
} | {
|
|
17121
|
+
__typename: "TamperSectionResponseFirstLine";
|
|
17122
|
+
operation: {
|
|
17123
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
17124
|
+
matcher: {
|
|
17125
|
+
__typename: "TamperMatcherFull";
|
|
17126
|
+
} | {
|
|
17127
|
+
__typename: "TamperMatcherRegex";
|
|
17128
|
+
regex: string;
|
|
17129
|
+
} | {
|
|
17130
|
+
__typename: "TamperMatcherValue";
|
|
17131
|
+
value: string;
|
|
17132
|
+
};
|
|
17133
|
+
replacer: {
|
|
17134
|
+
__typename: "TamperReplacerTerm";
|
|
17135
|
+
term: string;
|
|
17136
|
+
} | {
|
|
17137
|
+
__typename: "TamperReplacerWorkflow";
|
|
17138
|
+
id: string;
|
|
17139
|
+
};
|
|
17140
|
+
};
|
|
17141
|
+
} | {
|
|
17142
|
+
__typename: "TamperSectionResponseHeader";
|
|
17143
|
+
operation: {
|
|
17144
|
+
__typename: "TamperOperationHeaderAdd";
|
|
17145
|
+
matcher: {
|
|
17146
|
+
__typename: "TamperMatcherName";
|
|
17147
|
+
name: string;
|
|
17148
|
+
};
|
|
17149
|
+
replacer: {
|
|
17150
|
+
__typename: "TamperReplacerTerm";
|
|
17151
|
+
term: string;
|
|
17152
|
+
} | {
|
|
17153
|
+
__typename: "TamperReplacerWorkflow";
|
|
17154
|
+
id: string;
|
|
17155
|
+
};
|
|
17156
|
+
} | {
|
|
17157
|
+
__typename: "TamperOperationHeaderRaw";
|
|
17158
|
+
matcher: {
|
|
17159
|
+
__typename: "TamperMatcherFull";
|
|
17160
|
+
} | {
|
|
17161
|
+
__typename: "TamperMatcherRegex";
|
|
17162
|
+
regex: string;
|
|
17163
|
+
} | {
|
|
17164
|
+
__typename: "TamperMatcherValue";
|
|
17165
|
+
value: string;
|
|
17166
|
+
};
|
|
17167
|
+
replacer: {
|
|
17168
|
+
__typename: "TamperReplacerTerm";
|
|
17169
|
+
term: string;
|
|
17170
|
+
} | {
|
|
17171
|
+
__typename: "TamperReplacerWorkflow";
|
|
17172
|
+
id: string;
|
|
17173
|
+
};
|
|
17174
|
+
} | {
|
|
17175
|
+
__typename: "TamperOperationHeaderRemove";
|
|
17176
|
+
matcher: {
|
|
17177
|
+
__typename: "TamperMatcherName";
|
|
17178
|
+
name: string;
|
|
17179
|
+
};
|
|
17180
|
+
} | {
|
|
17181
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
17182
|
+
matcher: {
|
|
17183
|
+
__typename: "TamperMatcherName";
|
|
17184
|
+
name: string;
|
|
17185
|
+
};
|
|
17186
|
+
replacer: {
|
|
17187
|
+
__typename: "TamperReplacerTerm";
|
|
17188
|
+
term: string;
|
|
17189
|
+
} | {
|
|
17190
|
+
__typename: "TamperReplacerWorkflow";
|
|
17191
|
+
id: string;
|
|
17192
|
+
};
|
|
17193
|
+
};
|
|
17194
|
+
} | {
|
|
17195
|
+
__typename: "TamperSectionResponseStatusCode";
|
|
17196
|
+
operation: {
|
|
17197
|
+
__typename: "TamperOperationStatusCodeUpdate";
|
|
17198
|
+
replacer: {
|
|
17199
|
+
__typename: "TamperReplacerTerm";
|
|
17200
|
+
term: string;
|
|
17201
|
+
} | {
|
|
17202
|
+
__typename: "TamperReplacerWorkflow";
|
|
17203
|
+
id: string;
|
|
17204
|
+
};
|
|
17205
|
+
};
|
|
17206
|
+
};
|
|
17207
|
+
enable?: {
|
|
17208
|
+
rank: string;
|
|
17209
|
+
} | undefined | null;
|
|
17210
|
+
collection: {
|
|
17211
|
+
id: string;
|
|
17212
|
+
};
|
|
17213
|
+
};
|
|
17214
|
+
};
|
|
17215
|
+
};
|
|
16437
17216
|
export type PageInfoFullFragment = {
|
|
16438
17217
|
__typename: "PageInfo";
|
|
16439
17218
|
hasPreviousPage: boolean;
|
|
@@ -24072,6 +24851,10 @@ export declare const TestTamperRuleDocument = "\n mutation testTamperRule($in
|
|
|
24072
24851
|
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 ";
|
|
24073
24852
|
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 ";
|
|
24074
24853
|
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 ";
|
|
24854
|
+
export declare const ExportTamperDocument = "\n mutation exportTamper($input: ExportTamperInput!) {\n exportTamper(input: $input) {\n export {\n ...dataExportOnDemandMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
24855
|
+
export declare const ImportTamperDocument = "\n mutation importTamper($input: ImportTamperRuleInput!) {\n importData(input: {tamper: $input}) {\n id\n errors\n summary {\n ... on TamperSummary {\n collectionsCreated\n rulesImported\n }\n }\n }\n}\n ";
|
|
24856
|
+
export declare const CreatedTamperRuleCollectionDocument = "\n subscription createdTamperRuleCollection {\n createdTamperRuleCollection {\n collectionEdge {\n cursor\n node {\n ...tamperRuleCollectionFull\n }\n }\n snapshot\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 ";
|
|
24857
|
+
export declare const CreatedTamperRuleDocument = "\n subscription createdTamperRule {\n createdTamperRule {\n rule {\n ...tamperRuleFull\n }\n snapshot\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 ";
|
|
24075
24858
|
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 ";
|
|
24076
24859
|
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 ";
|
|
24077
24860
|
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 ";
|
|
@@ -24388,6 +25171,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24388
25171
|
toggleTamperRule(variables: ToggleTamperRuleMutationVariables, options?: C): Promise<ToggleTamperRuleMutation>;
|
|
24389
25172
|
rankTamperRule(variables: RankTamperRuleMutationVariables, options?: C): Promise<RankTamperRuleMutation>;
|
|
24390
25173
|
moveTamperRule(variables: MoveTamperRuleMutationVariables, options?: C): Promise<MoveTamperRuleMutation>;
|
|
25174
|
+
exportTamper(variables: ExportTamperMutationVariables, options?: C): Promise<ExportTamperMutation>;
|
|
25175
|
+
importTamper(variables: ImportTamperMutationVariables, options?: C): Promise<ImportTamperMutation>;
|
|
25176
|
+
createdTamperRuleCollection(variables?: CreatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleCollectionSubscription>;
|
|
25177
|
+
createdTamperRule(variables?: CreatedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleSubscription>;
|
|
24391
25178
|
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
24392
25179
|
storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
|
|
24393
25180
|
installPluginPackage(variables: InstallPluginPackageMutationVariables, options?: C): Promise<InstallPluginPackageMutation>;
|