@caido/sdk-frontend 0.54.2-beta.8 → 0.55.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 +2 -2
- package/src/types/__generated__/graphql-sdk.d.ts +1047 -223
- package/src/types/index.d.ts +2 -0
- package/src/types/private/analytics.d.ts +29 -0
- package/src/types/sdks/index.d.ts +11 -0
- package/src/types/sdks/intercept.d.ts +6 -0
- package/src/types/sdks/replay.d.ts +6 -0
- package/src/types/sdks/settings.d.ts +22 -0
- package/src/types/types/ai.d.ts +2 -2
- package/src/types/types/request.d.ts +4 -0
- package/src/types/types/response.d.ts +5 -0
- package/src/types/types/settings.d.ts +25 -0
|
@@ -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";
|
|
@@ -4822,6 +4833,14 @@ export type Workspace = {
|
|
|
4822
4833
|
id: Scalars["ID"]["output"];
|
|
4823
4834
|
name: Scalars["String"]["output"];
|
|
4824
4835
|
};
|
|
4836
|
+
export type TrackMutationVariables = Exact<{
|
|
4837
|
+
input: TrackInput;
|
|
4838
|
+
}>;
|
|
4839
|
+
export type TrackMutation = {
|
|
4840
|
+
track: {
|
|
4841
|
+
success: boolean;
|
|
4842
|
+
};
|
|
4843
|
+
};
|
|
4825
4844
|
export type AssistantMessageFullFragment = {
|
|
4826
4845
|
__typename: "AssistantMessage";
|
|
4827
4846
|
id: string;
|
|
@@ -9801,6 +9820,18 @@ export type ExportFindingsMutation = {
|
|
|
9801
9820
|
} | undefined | null;
|
|
9802
9821
|
};
|
|
9803
9822
|
};
|
|
9823
|
+
export type ImportFindingMutationVariables = Exact<{
|
|
9824
|
+
input: ImportFindingsInput;
|
|
9825
|
+
}>;
|
|
9826
|
+
export type ImportFindingMutation = {
|
|
9827
|
+
importData: {
|
|
9828
|
+
id: string;
|
|
9829
|
+
errors: Array<string>;
|
|
9830
|
+
summary?: {
|
|
9831
|
+
findingsImported: number;
|
|
9832
|
+
} | {} | undefined | null;
|
|
9833
|
+
};
|
|
9834
|
+
};
|
|
9804
9835
|
export type InterceptEntryFullFragment = {
|
|
9805
9836
|
__typename: "InterceptEntry";
|
|
9806
9837
|
id: string;
|
|
@@ -16426,236 +16457,1004 @@ export type MoveTamperRuleMutation = {
|
|
|
16426
16457
|
} | undefined | null;
|
|
16427
16458
|
};
|
|
16428
16459
|
};
|
|
16429
|
-
export type
|
|
16430
|
-
|
|
16431
|
-
|
|
16432
|
-
|
|
16433
|
-
|
|
16434
|
-
|
|
16435
|
-
|
|
16436
|
-
export type CountFullFragment = {
|
|
16437
|
-
__typename: "Count";
|
|
16438
|
-
value: number;
|
|
16439
|
-
snapshot: number;
|
|
16440
|
-
};
|
|
16441
|
-
type PluginMeta_PluginBackend_Fragment = {
|
|
16442
|
-
__typename: "PluginBackend";
|
|
16443
|
-
id: string;
|
|
16444
|
-
name?: string | undefined | null;
|
|
16445
|
-
enabled: boolean;
|
|
16446
|
-
manifestId: string;
|
|
16447
|
-
package: {
|
|
16448
|
-
id: string;
|
|
16449
|
-
};
|
|
16450
|
-
};
|
|
16451
|
-
type PluginMeta_PluginFrontend_Fragment = {
|
|
16452
|
-
__typename: "PluginFrontend";
|
|
16453
|
-
id: string;
|
|
16454
|
-
name?: string | undefined | null;
|
|
16455
|
-
enabled: boolean;
|
|
16456
|
-
manifestId: string;
|
|
16457
|
-
package: {
|
|
16458
|
-
id: string;
|
|
16459
|
-
};
|
|
16460
|
-
};
|
|
16461
|
-
type PluginMeta_PluginWorkflow_Fragment = {
|
|
16462
|
-
__typename: "PluginWorkflow";
|
|
16463
|
-
id: string;
|
|
16464
|
-
name?: string | undefined | null;
|
|
16465
|
-
enabled: boolean;
|
|
16466
|
-
manifestId: string;
|
|
16467
|
-
package: {
|
|
16468
|
-
id: string;
|
|
16469
|
-
};
|
|
16470
|
-
};
|
|
16471
|
-
export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment | PluginMeta_PluginWorkflow_Fragment;
|
|
16472
|
-
export type PluginBackendMetaFragment = {
|
|
16473
|
-
__typename: "PluginBackend";
|
|
16474
|
-
id: string;
|
|
16475
|
-
};
|
|
16476
|
-
export type PluginBackendFullFragment = {
|
|
16477
|
-
__typename: "PluginBackend";
|
|
16478
|
-
runtime: PluginRuntime;
|
|
16479
|
-
id: string;
|
|
16480
|
-
name?: string | undefined | null;
|
|
16481
|
-
enabled: boolean;
|
|
16482
|
-
manifestId: string;
|
|
16483
|
-
state: {
|
|
16484
|
-
error?: string | undefined | null;
|
|
16485
|
-
running: boolean;
|
|
16486
|
-
};
|
|
16487
|
-
package: {
|
|
16488
|
-
id: string;
|
|
16489
|
-
};
|
|
16490
|
-
};
|
|
16491
|
-
export type PluginFrontendFullFragment = {
|
|
16492
|
-
__typename: "PluginFrontend";
|
|
16493
|
-
entrypoint?: string | undefined | null;
|
|
16494
|
-
style?: string | undefined | null;
|
|
16495
|
-
data?: unknown | undefined | null;
|
|
16496
|
-
id: string;
|
|
16497
|
-
name?: string | undefined | null;
|
|
16498
|
-
enabled: boolean;
|
|
16499
|
-
manifestId: string;
|
|
16500
|
-
backend?: {
|
|
16501
|
-
__typename: "PluginBackend";
|
|
16502
|
-
id: string;
|
|
16503
|
-
} | undefined | null;
|
|
16504
|
-
package: {
|
|
16505
|
-
id: string;
|
|
16506
|
-
};
|
|
16507
|
-
};
|
|
16508
|
-
export type PluginWorkflowFullFragment = {
|
|
16509
|
-
__typename: "PluginWorkflow";
|
|
16510
|
-
name?: string | undefined | null;
|
|
16511
|
-
id: string;
|
|
16512
|
-
enabled: boolean;
|
|
16513
|
-
manifestId: string;
|
|
16514
|
-
workflow?: {
|
|
16515
|
-
__typename: "Workflow";
|
|
16516
|
-
id: string;
|
|
16517
|
-
kind: WorkflowKind;
|
|
16518
|
-
name: string;
|
|
16519
|
-
enabled: boolean;
|
|
16520
|
-
global: boolean;
|
|
16521
|
-
readOnly: boolean;
|
|
16522
|
-
} | undefined | null;
|
|
16523
|
-
package: {
|
|
16524
|
-
id: string;
|
|
16525
|
-
};
|
|
16526
|
-
};
|
|
16527
|
-
export type PluginAuthorFullFragment = {
|
|
16528
|
-
name?: string | undefined | null;
|
|
16529
|
-
email?: string | undefined | null;
|
|
16530
|
-
url?: string | undefined | null;
|
|
16531
|
-
};
|
|
16532
|
-
export type PluginLinksFullFragment = {
|
|
16533
|
-
sponsor?: string | undefined | null;
|
|
16534
|
-
};
|
|
16535
|
-
export type PluginPackageMetaFragment = {
|
|
16536
|
-
id: string;
|
|
16537
|
-
name?: string | undefined | null;
|
|
16538
|
-
description?: string | undefined | null;
|
|
16539
|
-
version: string;
|
|
16540
|
-
installedAt: Date;
|
|
16541
|
-
manifestId: string;
|
|
16542
|
-
author?: {
|
|
16543
|
-
name?: string | undefined | null;
|
|
16544
|
-
email?: string | undefined | null;
|
|
16545
|
-
url?: string | undefined | null;
|
|
16546
|
-
} | undefined | null;
|
|
16547
|
-
links?: {
|
|
16548
|
-
sponsor?: string | undefined | null;
|
|
16549
|
-
} | undefined | null;
|
|
16550
|
-
};
|
|
16551
|
-
export type PluginPackageFullFragment = {
|
|
16552
|
-
id: string;
|
|
16553
|
-
name?: string | undefined | null;
|
|
16554
|
-
description?: string | undefined | null;
|
|
16555
|
-
version: string;
|
|
16556
|
-
installedAt: Date;
|
|
16557
|
-
manifestId: string;
|
|
16558
|
-
plugins: Array<{
|
|
16559
|
-
__typename: "PluginBackend";
|
|
16560
|
-
runtime: PluginRuntime;
|
|
16561
|
-
id: string;
|
|
16562
|
-
name?: string | undefined | null;
|
|
16563
|
-
enabled: boolean;
|
|
16564
|
-
manifestId: string;
|
|
16565
|
-
state: {
|
|
16566
|
-
error?: string | undefined | null;
|
|
16567
|
-
running: boolean;
|
|
16568
|
-
};
|
|
16569
|
-
package: {
|
|
16570
|
-
id: string;
|
|
16571
|
-
};
|
|
16572
|
-
} | {
|
|
16573
|
-
__typename: "PluginFrontend";
|
|
16574
|
-
entrypoint?: string | undefined | null;
|
|
16575
|
-
style?: string | undefined | null;
|
|
16576
|
-
data?: unknown | undefined | null;
|
|
16577
|
-
id: string;
|
|
16578
|
-
name?: string | undefined | null;
|
|
16579
|
-
enabled: boolean;
|
|
16580
|
-
manifestId: string;
|
|
16581
|
-
backend?: {
|
|
16582
|
-
__typename: "PluginBackend";
|
|
16460
|
+
export type ExportTamperMutationVariables = Exact<{
|
|
16461
|
+
input: ExportTamperInput;
|
|
16462
|
+
}>;
|
|
16463
|
+
export type ExportTamperMutation = {
|
|
16464
|
+
exportTamper: {
|
|
16465
|
+
export?: {
|
|
16466
|
+
downloadUri: string;
|
|
16583
16467
|
id: string;
|
|
16584
16468
|
} | undefined | null;
|
|
16585
|
-
|
|
16586
|
-
|
|
16587
|
-
|
|
16588
|
-
|
|
16589
|
-
|
|
16590
|
-
|
|
16591
|
-
|
|
16592
|
-
enabled: boolean;
|
|
16593
|
-
manifestId: string;
|
|
16594
|
-
workflow?: {
|
|
16595
|
-
__typename: "Workflow";
|
|
16596
|
-
id: string;
|
|
16597
|
-
kind: WorkflowKind;
|
|
16598
|
-
name: string;
|
|
16599
|
-
enabled: boolean;
|
|
16600
|
-
global: boolean;
|
|
16601
|
-
readOnly: boolean;
|
|
16469
|
+
error?: {
|
|
16470
|
+
__typename: "OtherUserError";
|
|
16471
|
+
code: string;
|
|
16472
|
+
} | {
|
|
16473
|
+
__typename: "PermissionDeniedUserError";
|
|
16474
|
+
code: string;
|
|
16475
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
16602
16476
|
} | undefined | null;
|
|
16603
|
-
|
|
16604
|
-
id: string;
|
|
16605
|
-
};
|
|
16606
|
-
}>;
|
|
16607
|
-
author?: {
|
|
16608
|
-
name?: string | undefined | null;
|
|
16609
|
-
email?: string | undefined | null;
|
|
16610
|
-
url?: string | undefined | null;
|
|
16611
|
-
} | undefined | null;
|
|
16612
|
-
links?: {
|
|
16613
|
-
sponsor?: string | undefined | null;
|
|
16614
|
-
} | undefined | null;
|
|
16477
|
+
};
|
|
16615
16478
|
};
|
|
16616
|
-
export type
|
|
16617
|
-
|
|
16618
|
-
|
|
16619
|
-
|
|
16620
|
-
|
|
16621
|
-
|
|
16622
|
-
|
|
16623
|
-
|
|
16624
|
-
|
|
16625
|
-
|
|
16626
|
-
|
|
16627
|
-
|
|
16628
|
-
url?: string | undefined | null;
|
|
16629
|
-
} | undefined | null;
|
|
16479
|
+
export type ImportTamperMutationVariables = Exact<{
|
|
16480
|
+
input: ImportTamperRuleInput;
|
|
16481
|
+
}>;
|
|
16482
|
+
export type ImportTamperMutation = {
|
|
16483
|
+
importData: {
|
|
16484
|
+
id: string;
|
|
16485
|
+
errors: Array<string>;
|
|
16486
|
+
summary?: {
|
|
16487
|
+
collectionsCreated: number;
|
|
16488
|
+
rulesImported: number;
|
|
16489
|
+
} | {} | undefined | null;
|
|
16490
|
+
};
|
|
16630
16491
|
};
|
|
16631
|
-
export type
|
|
16492
|
+
export type CreatedTamperRuleCollectionSubscriptionVariables = Exact<{
|
|
16632
16493
|
[key: string]: never;
|
|
16633
16494
|
}>;
|
|
16634
|
-
export type
|
|
16635
|
-
|
|
16636
|
-
|
|
16637
|
-
|
|
16638
|
-
|
|
16639
|
-
|
|
16640
|
-
|
|
16641
|
-
manifestId: string;
|
|
16642
|
-
plugins: Array<{
|
|
16643
|
-
__typename: "PluginBackend";
|
|
16644
|
-
runtime: PluginRuntime;
|
|
16645
|
-
id: string;
|
|
16646
|
-
name?: string | undefined | null;
|
|
16647
|
-
enabled: boolean;
|
|
16648
|
-
manifestId: string;
|
|
16649
|
-
state: {
|
|
16650
|
-
error?: string | undefined | null;
|
|
16651
|
-
running: boolean;
|
|
16652
|
-
};
|
|
16653
|
-
package: {
|
|
16495
|
+
export type CreatedTamperRuleCollectionSubscription = {
|
|
16496
|
+
createdTamperRuleCollection: {
|
|
16497
|
+
snapshot: number;
|
|
16498
|
+
collectionEdge: {
|
|
16499
|
+
cursor: string;
|
|
16500
|
+
node: {
|
|
16501
|
+
__typename: "TamperRuleCollection";
|
|
16654
16502
|
id: string;
|
|
16655
|
-
|
|
16656
|
-
|
|
16657
|
-
|
|
16658
|
-
|
|
16503
|
+
name: string;
|
|
16504
|
+
rules: Array<{
|
|
16505
|
+
__typename: "TamperRule";
|
|
16506
|
+
id: string;
|
|
16507
|
+
name: string;
|
|
16508
|
+
condition?: string | undefined | null;
|
|
16509
|
+
sources: Array<Source>;
|
|
16510
|
+
section: {
|
|
16511
|
+
__typename: "TamperSectionRequestAll";
|
|
16512
|
+
operation: {
|
|
16513
|
+
__typename: "TamperOperationAllRaw";
|
|
16514
|
+
matcher: {
|
|
16515
|
+
__typename: "TamperMatcherFull";
|
|
16516
|
+
} | {
|
|
16517
|
+
__typename: "TamperMatcherRegex";
|
|
16518
|
+
regex: string;
|
|
16519
|
+
} | {
|
|
16520
|
+
__typename: "TamperMatcherValue";
|
|
16521
|
+
value: string;
|
|
16522
|
+
};
|
|
16523
|
+
replacer: {
|
|
16524
|
+
__typename: "TamperReplacerTerm";
|
|
16525
|
+
term: string;
|
|
16526
|
+
} | {
|
|
16527
|
+
__typename: "TamperReplacerWorkflow";
|
|
16528
|
+
id: string;
|
|
16529
|
+
};
|
|
16530
|
+
};
|
|
16531
|
+
} | {
|
|
16532
|
+
__typename: "TamperSectionRequestBody";
|
|
16533
|
+
operation: {
|
|
16534
|
+
__typename: "TamperOperationBodyRaw";
|
|
16535
|
+
matcher: {
|
|
16536
|
+
__typename: "TamperMatcherFull";
|
|
16537
|
+
} | {
|
|
16538
|
+
__typename: "TamperMatcherRegex";
|
|
16539
|
+
regex: string;
|
|
16540
|
+
} | {
|
|
16541
|
+
__typename: "TamperMatcherValue";
|
|
16542
|
+
value: string;
|
|
16543
|
+
};
|
|
16544
|
+
replacer: {
|
|
16545
|
+
__typename: "TamperReplacerTerm";
|
|
16546
|
+
term: string;
|
|
16547
|
+
} | {
|
|
16548
|
+
__typename: "TamperReplacerWorkflow";
|
|
16549
|
+
id: string;
|
|
16550
|
+
};
|
|
16551
|
+
};
|
|
16552
|
+
} | {
|
|
16553
|
+
__typename: "TamperSectionRequestFirstLine";
|
|
16554
|
+
operation: {
|
|
16555
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
16556
|
+
matcher: {
|
|
16557
|
+
__typename: "TamperMatcherFull";
|
|
16558
|
+
} | {
|
|
16559
|
+
__typename: "TamperMatcherRegex";
|
|
16560
|
+
regex: string;
|
|
16561
|
+
} | {
|
|
16562
|
+
__typename: "TamperMatcherValue";
|
|
16563
|
+
value: string;
|
|
16564
|
+
};
|
|
16565
|
+
replacer: {
|
|
16566
|
+
__typename: "TamperReplacerTerm";
|
|
16567
|
+
term: string;
|
|
16568
|
+
} | {
|
|
16569
|
+
__typename: "TamperReplacerWorkflow";
|
|
16570
|
+
id: string;
|
|
16571
|
+
};
|
|
16572
|
+
};
|
|
16573
|
+
} | {
|
|
16574
|
+
__typename: "TamperSectionRequestHeader";
|
|
16575
|
+
operation: {
|
|
16576
|
+
__typename: "TamperOperationHeaderAdd";
|
|
16577
|
+
matcher: {
|
|
16578
|
+
__typename: "TamperMatcherName";
|
|
16579
|
+
name: string;
|
|
16580
|
+
};
|
|
16581
|
+
replacer: {
|
|
16582
|
+
__typename: "TamperReplacerTerm";
|
|
16583
|
+
term: string;
|
|
16584
|
+
} | {
|
|
16585
|
+
__typename: "TamperReplacerWorkflow";
|
|
16586
|
+
id: string;
|
|
16587
|
+
};
|
|
16588
|
+
} | {
|
|
16589
|
+
__typename: "TamperOperationHeaderRaw";
|
|
16590
|
+
matcher: {
|
|
16591
|
+
__typename: "TamperMatcherFull";
|
|
16592
|
+
} | {
|
|
16593
|
+
__typename: "TamperMatcherRegex";
|
|
16594
|
+
regex: string;
|
|
16595
|
+
} | {
|
|
16596
|
+
__typename: "TamperMatcherValue";
|
|
16597
|
+
value: string;
|
|
16598
|
+
};
|
|
16599
|
+
replacer: {
|
|
16600
|
+
__typename: "TamperReplacerTerm";
|
|
16601
|
+
term: string;
|
|
16602
|
+
} | {
|
|
16603
|
+
__typename: "TamperReplacerWorkflow";
|
|
16604
|
+
id: string;
|
|
16605
|
+
};
|
|
16606
|
+
} | {
|
|
16607
|
+
__typename: "TamperOperationHeaderRemove";
|
|
16608
|
+
matcher: {
|
|
16609
|
+
__typename: "TamperMatcherName";
|
|
16610
|
+
name: string;
|
|
16611
|
+
};
|
|
16612
|
+
} | {
|
|
16613
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
16614
|
+
matcher: {
|
|
16615
|
+
__typename: "TamperMatcherName";
|
|
16616
|
+
name: string;
|
|
16617
|
+
};
|
|
16618
|
+
replacer: {
|
|
16619
|
+
__typename: "TamperReplacerTerm";
|
|
16620
|
+
term: string;
|
|
16621
|
+
} | {
|
|
16622
|
+
__typename: "TamperReplacerWorkflow";
|
|
16623
|
+
id: string;
|
|
16624
|
+
};
|
|
16625
|
+
};
|
|
16626
|
+
} | {
|
|
16627
|
+
__typename: "TamperSectionRequestMethod";
|
|
16628
|
+
operation: {
|
|
16629
|
+
__typename: "TamperOperationMethodUpdate";
|
|
16630
|
+
replacer: {
|
|
16631
|
+
__typename: "TamperReplacerTerm";
|
|
16632
|
+
term: string;
|
|
16633
|
+
} | {
|
|
16634
|
+
__typename: "TamperReplacerWorkflow";
|
|
16635
|
+
id: string;
|
|
16636
|
+
};
|
|
16637
|
+
};
|
|
16638
|
+
} | {
|
|
16639
|
+
__typename: "TamperSectionRequestPath";
|
|
16640
|
+
operation: {
|
|
16641
|
+
__typename: "TamperOperationPathRaw";
|
|
16642
|
+
matcher: {
|
|
16643
|
+
__typename: "TamperMatcherFull";
|
|
16644
|
+
} | {
|
|
16645
|
+
__typename: "TamperMatcherRegex";
|
|
16646
|
+
regex: string;
|
|
16647
|
+
} | {
|
|
16648
|
+
__typename: "TamperMatcherValue";
|
|
16649
|
+
value: string;
|
|
16650
|
+
};
|
|
16651
|
+
replacer: {
|
|
16652
|
+
__typename: "TamperReplacerTerm";
|
|
16653
|
+
term: string;
|
|
16654
|
+
} | {
|
|
16655
|
+
__typename: "TamperReplacerWorkflow";
|
|
16656
|
+
id: string;
|
|
16657
|
+
};
|
|
16658
|
+
};
|
|
16659
|
+
} | {
|
|
16660
|
+
__typename: "TamperSectionRequestQuery";
|
|
16661
|
+
operation: {
|
|
16662
|
+
__typename: "TamperOperationQueryAdd";
|
|
16663
|
+
matcher: {
|
|
16664
|
+
__typename: "TamperMatcherName";
|
|
16665
|
+
name: string;
|
|
16666
|
+
};
|
|
16667
|
+
replacer: {
|
|
16668
|
+
__typename: "TamperReplacerTerm";
|
|
16669
|
+
term: string;
|
|
16670
|
+
} | {
|
|
16671
|
+
__typename: "TamperReplacerWorkflow";
|
|
16672
|
+
id: string;
|
|
16673
|
+
};
|
|
16674
|
+
} | {
|
|
16675
|
+
__typename: "TamperOperationQueryRaw";
|
|
16676
|
+
matcher: {
|
|
16677
|
+
__typename: "TamperMatcherFull";
|
|
16678
|
+
} | {
|
|
16679
|
+
__typename: "TamperMatcherRegex";
|
|
16680
|
+
regex: string;
|
|
16681
|
+
} | {
|
|
16682
|
+
__typename: "TamperMatcherValue";
|
|
16683
|
+
value: string;
|
|
16684
|
+
};
|
|
16685
|
+
replacer: {
|
|
16686
|
+
__typename: "TamperReplacerTerm";
|
|
16687
|
+
term: string;
|
|
16688
|
+
} | {
|
|
16689
|
+
__typename: "TamperReplacerWorkflow";
|
|
16690
|
+
id: string;
|
|
16691
|
+
};
|
|
16692
|
+
} | {
|
|
16693
|
+
__typename: "TamperOperationQueryRemove";
|
|
16694
|
+
matcher: {
|
|
16695
|
+
__typename: "TamperMatcherName";
|
|
16696
|
+
name: string;
|
|
16697
|
+
};
|
|
16698
|
+
} | {
|
|
16699
|
+
__typename: "TamperOperationQueryUpdate";
|
|
16700
|
+
matcher: {
|
|
16701
|
+
__typename: "TamperMatcherName";
|
|
16702
|
+
name: string;
|
|
16703
|
+
};
|
|
16704
|
+
replacer: {
|
|
16705
|
+
__typename: "TamperReplacerTerm";
|
|
16706
|
+
term: string;
|
|
16707
|
+
} | {
|
|
16708
|
+
__typename: "TamperReplacerWorkflow";
|
|
16709
|
+
id: string;
|
|
16710
|
+
};
|
|
16711
|
+
};
|
|
16712
|
+
} | {
|
|
16713
|
+
__typename: "TamperSectionRequestSNI";
|
|
16714
|
+
operation: {
|
|
16715
|
+
__typename: "TamperOperationSNIRaw";
|
|
16716
|
+
replacer: {
|
|
16717
|
+
__typename: "TamperReplacerTerm";
|
|
16718
|
+
term: string;
|
|
16719
|
+
} | {
|
|
16720
|
+
__typename: "TamperReplacerWorkflow";
|
|
16721
|
+
id: string;
|
|
16722
|
+
};
|
|
16723
|
+
};
|
|
16724
|
+
} | {
|
|
16725
|
+
__typename: "TamperSectionResponseAll";
|
|
16726
|
+
operation: {
|
|
16727
|
+
__typename: "TamperOperationAllRaw";
|
|
16728
|
+
matcher: {
|
|
16729
|
+
__typename: "TamperMatcherFull";
|
|
16730
|
+
} | {
|
|
16731
|
+
__typename: "TamperMatcherRegex";
|
|
16732
|
+
regex: string;
|
|
16733
|
+
} | {
|
|
16734
|
+
__typename: "TamperMatcherValue";
|
|
16735
|
+
value: string;
|
|
16736
|
+
};
|
|
16737
|
+
replacer: {
|
|
16738
|
+
__typename: "TamperReplacerTerm";
|
|
16739
|
+
term: string;
|
|
16740
|
+
} | {
|
|
16741
|
+
__typename: "TamperReplacerWorkflow";
|
|
16742
|
+
id: string;
|
|
16743
|
+
};
|
|
16744
|
+
};
|
|
16745
|
+
} | {
|
|
16746
|
+
__typename: "TamperSectionResponseBody";
|
|
16747
|
+
operation: {
|
|
16748
|
+
__typename: "TamperOperationBodyRaw";
|
|
16749
|
+
matcher: {
|
|
16750
|
+
__typename: "TamperMatcherFull";
|
|
16751
|
+
} | {
|
|
16752
|
+
__typename: "TamperMatcherRegex";
|
|
16753
|
+
regex: string;
|
|
16754
|
+
} | {
|
|
16755
|
+
__typename: "TamperMatcherValue";
|
|
16756
|
+
value: string;
|
|
16757
|
+
};
|
|
16758
|
+
replacer: {
|
|
16759
|
+
__typename: "TamperReplacerTerm";
|
|
16760
|
+
term: string;
|
|
16761
|
+
} | {
|
|
16762
|
+
__typename: "TamperReplacerWorkflow";
|
|
16763
|
+
id: string;
|
|
16764
|
+
};
|
|
16765
|
+
};
|
|
16766
|
+
} | {
|
|
16767
|
+
__typename: "TamperSectionResponseFirstLine";
|
|
16768
|
+
operation: {
|
|
16769
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
16770
|
+
matcher: {
|
|
16771
|
+
__typename: "TamperMatcherFull";
|
|
16772
|
+
} | {
|
|
16773
|
+
__typename: "TamperMatcherRegex";
|
|
16774
|
+
regex: string;
|
|
16775
|
+
} | {
|
|
16776
|
+
__typename: "TamperMatcherValue";
|
|
16777
|
+
value: string;
|
|
16778
|
+
};
|
|
16779
|
+
replacer: {
|
|
16780
|
+
__typename: "TamperReplacerTerm";
|
|
16781
|
+
term: string;
|
|
16782
|
+
} | {
|
|
16783
|
+
__typename: "TamperReplacerWorkflow";
|
|
16784
|
+
id: string;
|
|
16785
|
+
};
|
|
16786
|
+
};
|
|
16787
|
+
} | {
|
|
16788
|
+
__typename: "TamperSectionResponseHeader";
|
|
16789
|
+
operation: {
|
|
16790
|
+
__typename: "TamperOperationHeaderAdd";
|
|
16791
|
+
matcher: {
|
|
16792
|
+
__typename: "TamperMatcherName";
|
|
16793
|
+
name: string;
|
|
16794
|
+
};
|
|
16795
|
+
replacer: {
|
|
16796
|
+
__typename: "TamperReplacerTerm";
|
|
16797
|
+
term: string;
|
|
16798
|
+
} | {
|
|
16799
|
+
__typename: "TamperReplacerWorkflow";
|
|
16800
|
+
id: string;
|
|
16801
|
+
};
|
|
16802
|
+
} | {
|
|
16803
|
+
__typename: "TamperOperationHeaderRaw";
|
|
16804
|
+
matcher: {
|
|
16805
|
+
__typename: "TamperMatcherFull";
|
|
16806
|
+
} | {
|
|
16807
|
+
__typename: "TamperMatcherRegex";
|
|
16808
|
+
regex: string;
|
|
16809
|
+
} | {
|
|
16810
|
+
__typename: "TamperMatcherValue";
|
|
16811
|
+
value: string;
|
|
16812
|
+
};
|
|
16813
|
+
replacer: {
|
|
16814
|
+
__typename: "TamperReplacerTerm";
|
|
16815
|
+
term: string;
|
|
16816
|
+
} | {
|
|
16817
|
+
__typename: "TamperReplacerWorkflow";
|
|
16818
|
+
id: string;
|
|
16819
|
+
};
|
|
16820
|
+
} | {
|
|
16821
|
+
__typename: "TamperOperationHeaderRemove";
|
|
16822
|
+
matcher: {
|
|
16823
|
+
__typename: "TamperMatcherName";
|
|
16824
|
+
name: string;
|
|
16825
|
+
};
|
|
16826
|
+
} | {
|
|
16827
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
16828
|
+
matcher: {
|
|
16829
|
+
__typename: "TamperMatcherName";
|
|
16830
|
+
name: string;
|
|
16831
|
+
};
|
|
16832
|
+
replacer: {
|
|
16833
|
+
__typename: "TamperReplacerTerm";
|
|
16834
|
+
term: string;
|
|
16835
|
+
} | {
|
|
16836
|
+
__typename: "TamperReplacerWorkflow";
|
|
16837
|
+
id: string;
|
|
16838
|
+
};
|
|
16839
|
+
};
|
|
16840
|
+
} | {
|
|
16841
|
+
__typename: "TamperSectionResponseStatusCode";
|
|
16842
|
+
operation: {
|
|
16843
|
+
__typename: "TamperOperationStatusCodeUpdate";
|
|
16844
|
+
replacer: {
|
|
16845
|
+
__typename: "TamperReplacerTerm";
|
|
16846
|
+
term: string;
|
|
16847
|
+
} | {
|
|
16848
|
+
__typename: "TamperReplacerWorkflow";
|
|
16849
|
+
id: string;
|
|
16850
|
+
};
|
|
16851
|
+
};
|
|
16852
|
+
};
|
|
16853
|
+
enable?: {
|
|
16854
|
+
rank: string;
|
|
16855
|
+
} | undefined | null;
|
|
16856
|
+
collection: {
|
|
16857
|
+
id: string;
|
|
16858
|
+
};
|
|
16859
|
+
}>;
|
|
16860
|
+
};
|
|
16861
|
+
};
|
|
16862
|
+
};
|
|
16863
|
+
};
|
|
16864
|
+
export type CreatedTamperRuleSubscriptionVariables = Exact<{
|
|
16865
|
+
[key: string]: never;
|
|
16866
|
+
}>;
|
|
16867
|
+
export type CreatedTamperRuleSubscription = {
|
|
16868
|
+
createdTamperRule: {
|
|
16869
|
+
snapshot: number;
|
|
16870
|
+
rule: {
|
|
16871
|
+
__typename: "TamperRule";
|
|
16872
|
+
id: string;
|
|
16873
|
+
name: string;
|
|
16874
|
+
condition?: string | undefined | null;
|
|
16875
|
+
sources: Array<Source>;
|
|
16876
|
+
section: {
|
|
16877
|
+
__typename: "TamperSectionRequestAll";
|
|
16878
|
+
operation: {
|
|
16879
|
+
__typename: "TamperOperationAllRaw";
|
|
16880
|
+
matcher: {
|
|
16881
|
+
__typename: "TamperMatcherFull";
|
|
16882
|
+
} | {
|
|
16883
|
+
__typename: "TamperMatcherRegex";
|
|
16884
|
+
regex: string;
|
|
16885
|
+
} | {
|
|
16886
|
+
__typename: "TamperMatcherValue";
|
|
16887
|
+
value: string;
|
|
16888
|
+
};
|
|
16889
|
+
replacer: {
|
|
16890
|
+
__typename: "TamperReplacerTerm";
|
|
16891
|
+
term: string;
|
|
16892
|
+
} | {
|
|
16893
|
+
__typename: "TamperReplacerWorkflow";
|
|
16894
|
+
id: string;
|
|
16895
|
+
};
|
|
16896
|
+
};
|
|
16897
|
+
} | {
|
|
16898
|
+
__typename: "TamperSectionRequestBody";
|
|
16899
|
+
operation: {
|
|
16900
|
+
__typename: "TamperOperationBodyRaw";
|
|
16901
|
+
matcher: {
|
|
16902
|
+
__typename: "TamperMatcherFull";
|
|
16903
|
+
} | {
|
|
16904
|
+
__typename: "TamperMatcherRegex";
|
|
16905
|
+
regex: string;
|
|
16906
|
+
} | {
|
|
16907
|
+
__typename: "TamperMatcherValue";
|
|
16908
|
+
value: string;
|
|
16909
|
+
};
|
|
16910
|
+
replacer: {
|
|
16911
|
+
__typename: "TamperReplacerTerm";
|
|
16912
|
+
term: string;
|
|
16913
|
+
} | {
|
|
16914
|
+
__typename: "TamperReplacerWorkflow";
|
|
16915
|
+
id: string;
|
|
16916
|
+
};
|
|
16917
|
+
};
|
|
16918
|
+
} | {
|
|
16919
|
+
__typename: "TamperSectionRequestFirstLine";
|
|
16920
|
+
operation: {
|
|
16921
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
16922
|
+
matcher: {
|
|
16923
|
+
__typename: "TamperMatcherFull";
|
|
16924
|
+
} | {
|
|
16925
|
+
__typename: "TamperMatcherRegex";
|
|
16926
|
+
regex: string;
|
|
16927
|
+
} | {
|
|
16928
|
+
__typename: "TamperMatcherValue";
|
|
16929
|
+
value: string;
|
|
16930
|
+
};
|
|
16931
|
+
replacer: {
|
|
16932
|
+
__typename: "TamperReplacerTerm";
|
|
16933
|
+
term: string;
|
|
16934
|
+
} | {
|
|
16935
|
+
__typename: "TamperReplacerWorkflow";
|
|
16936
|
+
id: string;
|
|
16937
|
+
};
|
|
16938
|
+
};
|
|
16939
|
+
} | {
|
|
16940
|
+
__typename: "TamperSectionRequestHeader";
|
|
16941
|
+
operation: {
|
|
16942
|
+
__typename: "TamperOperationHeaderAdd";
|
|
16943
|
+
matcher: {
|
|
16944
|
+
__typename: "TamperMatcherName";
|
|
16945
|
+
name: string;
|
|
16946
|
+
};
|
|
16947
|
+
replacer: {
|
|
16948
|
+
__typename: "TamperReplacerTerm";
|
|
16949
|
+
term: string;
|
|
16950
|
+
} | {
|
|
16951
|
+
__typename: "TamperReplacerWorkflow";
|
|
16952
|
+
id: string;
|
|
16953
|
+
};
|
|
16954
|
+
} | {
|
|
16955
|
+
__typename: "TamperOperationHeaderRaw";
|
|
16956
|
+
matcher: {
|
|
16957
|
+
__typename: "TamperMatcherFull";
|
|
16958
|
+
} | {
|
|
16959
|
+
__typename: "TamperMatcherRegex";
|
|
16960
|
+
regex: string;
|
|
16961
|
+
} | {
|
|
16962
|
+
__typename: "TamperMatcherValue";
|
|
16963
|
+
value: string;
|
|
16964
|
+
};
|
|
16965
|
+
replacer: {
|
|
16966
|
+
__typename: "TamperReplacerTerm";
|
|
16967
|
+
term: string;
|
|
16968
|
+
} | {
|
|
16969
|
+
__typename: "TamperReplacerWorkflow";
|
|
16970
|
+
id: string;
|
|
16971
|
+
};
|
|
16972
|
+
} | {
|
|
16973
|
+
__typename: "TamperOperationHeaderRemove";
|
|
16974
|
+
matcher: {
|
|
16975
|
+
__typename: "TamperMatcherName";
|
|
16976
|
+
name: string;
|
|
16977
|
+
};
|
|
16978
|
+
} | {
|
|
16979
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
16980
|
+
matcher: {
|
|
16981
|
+
__typename: "TamperMatcherName";
|
|
16982
|
+
name: string;
|
|
16983
|
+
};
|
|
16984
|
+
replacer: {
|
|
16985
|
+
__typename: "TamperReplacerTerm";
|
|
16986
|
+
term: string;
|
|
16987
|
+
} | {
|
|
16988
|
+
__typename: "TamperReplacerWorkflow";
|
|
16989
|
+
id: string;
|
|
16990
|
+
};
|
|
16991
|
+
};
|
|
16992
|
+
} | {
|
|
16993
|
+
__typename: "TamperSectionRequestMethod";
|
|
16994
|
+
operation: {
|
|
16995
|
+
__typename: "TamperOperationMethodUpdate";
|
|
16996
|
+
replacer: {
|
|
16997
|
+
__typename: "TamperReplacerTerm";
|
|
16998
|
+
term: string;
|
|
16999
|
+
} | {
|
|
17000
|
+
__typename: "TamperReplacerWorkflow";
|
|
17001
|
+
id: string;
|
|
17002
|
+
};
|
|
17003
|
+
};
|
|
17004
|
+
} | {
|
|
17005
|
+
__typename: "TamperSectionRequestPath";
|
|
17006
|
+
operation: {
|
|
17007
|
+
__typename: "TamperOperationPathRaw";
|
|
17008
|
+
matcher: {
|
|
17009
|
+
__typename: "TamperMatcherFull";
|
|
17010
|
+
} | {
|
|
17011
|
+
__typename: "TamperMatcherRegex";
|
|
17012
|
+
regex: string;
|
|
17013
|
+
} | {
|
|
17014
|
+
__typename: "TamperMatcherValue";
|
|
17015
|
+
value: string;
|
|
17016
|
+
};
|
|
17017
|
+
replacer: {
|
|
17018
|
+
__typename: "TamperReplacerTerm";
|
|
17019
|
+
term: string;
|
|
17020
|
+
} | {
|
|
17021
|
+
__typename: "TamperReplacerWorkflow";
|
|
17022
|
+
id: string;
|
|
17023
|
+
};
|
|
17024
|
+
};
|
|
17025
|
+
} | {
|
|
17026
|
+
__typename: "TamperSectionRequestQuery";
|
|
17027
|
+
operation: {
|
|
17028
|
+
__typename: "TamperOperationQueryAdd";
|
|
17029
|
+
matcher: {
|
|
17030
|
+
__typename: "TamperMatcherName";
|
|
17031
|
+
name: string;
|
|
17032
|
+
};
|
|
17033
|
+
replacer: {
|
|
17034
|
+
__typename: "TamperReplacerTerm";
|
|
17035
|
+
term: string;
|
|
17036
|
+
} | {
|
|
17037
|
+
__typename: "TamperReplacerWorkflow";
|
|
17038
|
+
id: string;
|
|
17039
|
+
};
|
|
17040
|
+
} | {
|
|
17041
|
+
__typename: "TamperOperationQueryRaw";
|
|
17042
|
+
matcher: {
|
|
17043
|
+
__typename: "TamperMatcherFull";
|
|
17044
|
+
} | {
|
|
17045
|
+
__typename: "TamperMatcherRegex";
|
|
17046
|
+
regex: string;
|
|
17047
|
+
} | {
|
|
17048
|
+
__typename: "TamperMatcherValue";
|
|
17049
|
+
value: string;
|
|
17050
|
+
};
|
|
17051
|
+
replacer: {
|
|
17052
|
+
__typename: "TamperReplacerTerm";
|
|
17053
|
+
term: string;
|
|
17054
|
+
} | {
|
|
17055
|
+
__typename: "TamperReplacerWorkflow";
|
|
17056
|
+
id: string;
|
|
17057
|
+
};
|
|
17058
|
+
} | {
|
|
17059
|
+
__typename: "TamperOperationQueryRemove";
|
|
17060
|
+
matcher: {
|
|
17061
|
+
__typename: "TamperMatcherName";
|
|
17062
|
+
name: string;
|
|
17063
|
+
};
|
|
17064
|
+
} | {
|
|
17065
|
+
__typename: "TamperOperationQueryUpdate";
|
|
17066
|
+
matcher: {
|
|
17067
|
+
__typename: "TamperMatcherName";
|
|
17068
|
+
name: string;
|
|
17069
|
+
};
|
|
17070
|
+
replacer: {
|
|
17071
|
+
__typename: "TamperReplacerTerm";
|
|
17072
|
+
term: string;
|
|
17073
|
+
} | {
|
|
17074
|
+
__typename: "TamperReplacerWorkflow";
|
|
17075
|
+
id: string;
|
|
17076
|
+
};
|
|
17077
|
+
};
|
|
17078
|
+
} | {
|
|
17079
|
+
__typename: "TamperSectionRequestSNI";
|
|
17080
|
+
operation: {
|
|
17081
|
+
__typename: "TamperOperationSNIRaw";
|
|
17082
|
+
replacer: {
|
|
17083
|
+
__typename: "TamperReplacerTerm";
|
|
17084
|
+
term: string;
|
|
17085
|
+
} | {
|
|
17086
|
+
__typename: "TamperReplacerWorkflow";
|
|
17087
|
+
id: string;
|
|
17088
|
+
};
|
|
17089
|
+
};
|
|
17090
|
+
} | {
|
|
17091
|
+
__typename: "TamperSectionResponseAll";
|
|
17092
|
+
operation: {
|
|
17093
|
+
__typename: "TamperOperationAllRaw";
|
|
17094
|
+
matcher: {
|
|
17095
|
+
__typename: "TamperMatcherFull";
|
|
17096
|
+
} | {
|
|
17097
|
+
__typename: "TamperMatcherRegex";
|
|
17098
|
+
regex: string;
|
|
17099
|
+
} | {
|
|
17100
|
+
__typename: "TamperMatcherValue";
|
|
17101
|
+
value: string;
|
|
17102
|
+
};
|
|
17103
|
+
replacer: {
|
|
17104
|
+
__typename: "TamperReplacerTerm";
|
|
17105
|
+
term: string;
|
|
17106
|
+
} | {
|
|
17107
|
+
__typename: "TamperReplacerWorkflow";
|
|
17108
|
+
id: string;
|
|
17109
|
+
};
|
|
17110
|
+
};
|
|
17111
|
+
} | {
|
|
17112
|
+
__typename: "TamperSectionResponseBody";
|
|
17113
|
+
operation: {
|
|
17114
|
+
__typename: "TamperOperationBodyRaw";
|
|
17115
|
+
matcher: {
|
|
17116
|
+
__typename: "TamperMatcherFull";
|
|
17117
|
+
} | {
|
|
17118
|
+
__typename: "TamperMatcherRegex";
|
|
17119
|
+
regex: string;
|
|
17120
|
+
} | {
|
|
17121
|
+
__typename: "TamperMatcherValue";
|
|
17122
|
+
value: string;
|
|
17123
|
+
};
|
|
17124
|
+
replacer: {
|
|
17125
|
+
__typename: "TamperReplacerTerm";
|
|
17126
|
+
term: string;
|
|
17127
|
+
} | {
|
|
17128
|
+
__typename: "TamperReplacerWorkflow";
|
|
17129
|
+
id: string;
|
|
17130
|
+
};
|
|
17131
|
+
};
|
|
17132
|
+
} | {
|
|
17133
|
+
__typename: "TamperSectionResponseFirstLine";
|
|
17134
|
+
operation: {
|
|
17135
|
+
__typename: "TamperOperationFirstLineRaw";
|
|
17136
|
+
matcher: {
|
|
17137
|
+
__typename: "TamperMatcherFull";
|
|
17138
|
+
} | {
|
|
17139
|
+
__typename: "TamperMatcherRegex";
|
|
17140
|
+
regex: string;
|
|
17141
|
+
} | {
|
|
17142
|
+
__typename: "TamperMatcherValue";
|
|
17143
|
+
value: string;
|
|
17144
|
+
};
|
|
17145
|
+
replacer: {
|
|
17146
|
+
__typename: "TamperReplacerTerm";
|
|
17147
|
+
term: string;
|
|
17148
|
+
} | {
|
|
17149
|
+
__typename: "TamperReplacerWorkflow";
|
|
17150
|
+
id: string;
|
|
17151
|
+
};
|
|
17152
|
+
};
|
|
17153
|
+
} | {
|
|
17154
|
+
__typename: "TamperSectionResponseHeader";
|
|
17155
|
+
operation: {
|
|
17156
|
+
__typename: "TamperOperationHeaderAdd";
|
|
17157
|
+
matcher: {
|
|
17158
|
+
__typename: "TamperMatcherName";
|
|
17159
|
+
name: string;
|
|
17160
|
+
};
|
|
17161
|
+
replacer: {
|
|
17162
|
+
__typename: "TamperReplacerTerm";
|
|
17163
|
+
term: string;
|
|
17164
|
+
} | {
|
|
17165
|
+
__typename: "TamperReplacerWorkflow";
|
|
17166
|
+
id: string;
|
|
17167
|
+
};
|
|
17168
|
+
} | {
|
|
17169
|
+
__typename: "TamperOperationHeaderRaw";
|
|
17170
|
+
matcher: {
|
|
17171
|
+
__typename: "TamperMatcherFull";
|
|
17172
|
+
} | {
|
|
17173
|
+
__typename: "TamperMatcherRegex";
|
|
17174
|
+
regex: string;
|
|
17175
|
+
} | {
|
|
17176
|
+
__typename: "TamperMatcherValue";
|
|
17177
|
+
value: string;
|
|
17178
|
+
};
|
|
17179
|
+
replacer: {
|
|
17180
|
+
__typename: "TamperReplacerTerm";
|
|
17181
|
+
term: string;
|
|
17182
|
+
} | {
|
|
17183
|
+
__typename: "TamperReplacerWorkflow";
|
|
17184
|
+
id: string;
|
|
17185
|
+
};
|
|
17186
|
+
} | {
|
|
17187
|
+
__typename: "TamperOperationHeaderRemove";
|
|
17188
|
+
matcher: {
|
|
17189
|
+
__typename: "TamperMatcherName";
|
|
17190
|
+
name: string;
|
|
17191
|
+
};
|
|
17192
|
+
} | {
|
|
17193
|
+
__typename: "TamperOperationHeaderUpdate";
|
|
17194
|
+
matcher: {
|
|
17195
|
+
__typename: "TamperMatcherName";
|
|
17196
|
+
name: string;
|
|
17197
|
+
};
|
|
17198
|
+
replacer: {
|
|
17199
|
+
__typename: "TamperReplacerTerm";
|
|
17200
|
+
term: string;
|
|
17201
|
+
} | {
|
|
17202
|
+
__typename: "TamperReplacerWorkflow";
|
|
17203
|
+
id: string;
|
|
17204
|
+
};
|
|
17205
|
+
};
|
|
17206
|
+
} | {
|
|
17207
|
+
__typename: "TamperSectionResponseStatusCode";
|
|
17208
|
+
operation: {
|
|
17209
|
+
__typename: "TamperOperationStatusCodeUpdate";
|
|
17210
|
+
replacer: {
|
|
17211
|
+
__typename: "TamperReplacerTerm";
|
|
17212
|
+
term: string;
|
|
17213
|
+
} | {
|
|
17214
|
+
__typename: "TamperReplacerWorkflow";
|
|
17215
|
+
id: string;
|
|
17216
|
+
};
|
|
17217
|
+
};
|
|
17218
|
+
};
|
|
17219
|
+
enable?: {
|
|
17220
|
+
rank: string;
|
|
17221
|
+
} | undefined | null;
|
|
17222
|
+
collection: {
|
|
17223
|
+
id: string;
|
|
17224
|
+
};
|
|
17225
|
+
};
|
|
17226
|
+
};
|
|
17227
|
+
};
|
|
17228
|
+
export type PageInfoFullFragment = {
|
|
17229
|
+
__typename: "PageInfo";
|
|
17230
|
+
hasPreviousPage: boolean;
|
|
17231
|
+
hasNextPage: boolean;
|
|
17232
|
+
startCursor?: string | undefined | null;
|
|
17233
|
+
endCursor?: string | undefined | null;
|
|
17234
|
+
};
|
|
17235
|
+
export type CountFullFragment = {
|
|
17236
|
+
__typename: "Count";
|
|
17237
|
+
value: number;
|
|
17238
|
+
snapshot: number;
|
|
17239
|
+
};
|
|
17240
|
+
type PluginMeta_PluginBackend_Fragment = {
|
|
17241
|
+
__typename: "PluginBackend";
|
|
17242
|
+
id: string;
|
|
17243
|
+
name?: string | undefined | null;
|
|
17244
|
+
enabled: boolean;
|
|
17245
|
+
manifestId: string;
|
|
17246
|
+
package: {
|
|
17247
|
+
id: string;
|
|
17248
|
+
};
|
|
17249
|
+
};
|
|
17250
|
+
type PluginMeta_PluginFrontend_Fragment = {
|
|
17251
|
+
__typename: "PluginFrontend";
|
|
17252
|
+
id: string;
|
|
17253
|
+
name?: string | undefined | null;
|
|
17254
|
+
enabled: boolean;
|
|
17255
|
+
manifestId: string;
|
|
17256
|
+
package: {
|
|
17257
|
+
id: string;
|
|
17258
|
+
};
|
|
17259
|
+
};
|
|
17260
|
+
type PluginMeta_PluginWorkflow_Fragment = {
|
|
17261
|
+
__typename: "PluginWorkflow";
|
|
17262
|
+
id: string;
|
|
17263
|
+
name?: string | undefined | null;
|
|
17264
|
+
enabled: boolean;
|
|
17265
|
+
manifestId: string;
|
|
17266
|
+
package: {
|
|
17267
|
+
id: string;
|
|
17268
|
+
};
|
|
17269
|
+
};
|
|
17270
|
+
export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment | PluginMeta_PluginWorkflow_Fragment;
|
|
17271
|
+
export type PluginBackendMetaFragment = {
|
|
17272
|
+
__typename: "PluginBackend";
|
|
17273
|
+
id: string;
|
|
17274
|
+
};
|
|
17275
|
+
export type PluginBackendFullFragment = {
|
|
17276
|
+
__typename: "PluginBackend";
|
|
17277
|
+
runtime: PluginRuntime;
|
|
17278
|
+
id: string;
|
|
17279
|
+
name?: string | undefined | null;
|
|
17280
|
+
enabled: boolean;
|
|
17281
|
+
manifestId: string;
|
|
17282
|
+
state: {
|
|
17283
|
+
error?: string | undefined | null;
|
|
17284
|
+
running: boolean;
|
|
17285
|
+
};
|
|
17286
|
+
package: {
|
|
17287
|
+
id: string;
|
|
17288
|
+
};
|
|
17289
|
+
};
|
|
17290
|
+
export type PluginFrontendFullFragment = {
|
|
17291
|
+
__typename: "PluginFrontend";
|
|
17292
|
+
entrypoint?: string | undefined | null;
|
|
17293
|
+
style?: string | undefined | null;
|
|
17294
|
+
data?: unknown | undefined | null;
|
|
17295
|
+
id: string;
|
|
17296
|
+
name?: string | undefined | null;
|
|
17297
|
+
enabled: boolean;
|
|
17298
|
+
manifestId: string;
|
|
17299
|
+
backend?: {
|
|
17300
|
+
__typename: "PluginBackend";
|
|
17301
|
+
id: string;
|
|
17302
|
+
} | undefined | null;
|
|
17303
|
+
package: {
|
|
17304
|
+
id: string;
|
|
17305
|
+
};
|
|
17306
|
+
};
|
|
17307
|
+
export type PluginWorkflowFullFragment = {
|
|
17308
|
+
__typename: "PluginWorkflow";
|
|
17309
|
+
name?: string | undefined | null;
|
|
17310
|
+
id: string;
|
|
17311
|
+
enabled: boolean;
|
|
17312
|
+
manifestId: string;
|
|
17313
|
+
workflow?: {
|
|
17314
|
+
__typename: "Workflow";
|
|
17315
|
+
id: string;
|
|
17316
|
+
kind: WorkflowKind;
|
|
17317
|
+
name: string;
|
|
17318
|
+
enabled: boolean;
|
|
17319
|
+
global: boolean;
|
|
17320
|
+
readOnly: boolean;
|
|
17321
|
+
} | undefined | null;
|
|
17322
|
+
package: {
|
|
17323
|
+
id: string;
|
|
17324
|
+
};
|
|
17325
|
+
};
|
|
17326
|
+
export type PluginAuthorFullFragment = {
|
|
17327
|
+
name?: string | undefined | null;
|
|
17328
|
+
email?: string | undefined | null;
|
|
17329
|
+
url?: string | undefined | null;
|
|
17330
|
+
};
|
|
17331
|
+
export type PluginLinksFullFragment = {
|
|
17332
|
+
sponsor?: string | undefined | null;
|
|
17333
|
+
};
|
|
17334
|
+
export type PluginPackageMetaFragment = {
|
|
17335
|
+
id: string;
|
|
17336
|
+
name?: string | undefined | null;
|
|
17337
|
+
description?: string | undefined | null;
|
|
17338
|
+
version: string;
|
|
17339
|
+
installedAt: Date;
|
|
17340
|
+
manifestId: string;
|
|
17341
|
+
author?: {
|
|
17342
|
+
name?: string | undefined | null;
|
|
17343
|
+
email?: string | undefined | null;
|
|
17344
|
+
url?: string | undefined | null;
|
|
17345
|
+
} | undefined | null;
|
|
17346
|
+
links?: {
|
|
17347
|
+
sponsor?: string | undefined | null;
|
|
17348
|
+
} | undefined | null;
|
|
17349
|
+
};
|
|
17350
|
+
export type PluginPackageFullFragment = {
|
|
17351
|
+
id: string;
|
|
17352
|
+
name?: string | undefined | null;
|
|
17353
|
+
description?: string | undefined | null;
|
|
17354
|
+
version: string;
|
|
17355
|
+
installedAt: Date;
|
|
17356
|
+
manifestId: string;
|
|
17357
|
+
plugins: Array<{
|
|
17358
|
+
__typename: "PluginBackend";
|
|
17359
|
+
runtime: PluginRuntime;
|
|
17360
|
+
id: string;
|
|
17361
|
+
name?: string | undefined | null;
|
|
17362
|
+
enabled: boolean;
|
|
17363
|
+
manifestId: string;
|
|
17364
|
+
state: {
|
|
17365
|
+
error?: string | undefined | null;
|
|
17366
|
+
running: boolean;
|
|
17367
|
+
};
|
|
17368
|
+
package: {
|
|
17369
|
+
id: string;
|
|
17370
|
+
};
|
|
17371
|
+
} | {
|
|
17372
|
+
__typename: "PluginFrontend";
|
|
17373
|
+
entrypoint?: string | undefined | null;
|
|
17374
|
+
style?: string | undefined | null;
|
|
17375
|
+
data?: unknown | undefined | null;
|
|
17376
|
+
id: string;
|
|
17377
|
+
name?: string | undefined | null;
|
|
17378
|
+
enabled: boolean;
|
|
17379
|
+
manifestId: string;
|
|
17380
|
+
backend?: {
|
|
17381
|
+
__typename: "PluginBackend";
|
|
17382
|
+
id: string;
|
|
17383
|
+
} | undefined | null;
|
|
17384
|
+
package: {
|
|
17385
|
+
id: string;
|
|
17386
|
+
};
|
|
17387
|
+
} | {
|
|
17388
|
+
__typename: "PluginWorkflow";
|
|
17389
|
+
name?: string | undefined | null;
|
|
17390
|
+
id: string;
|
|
17391
|
+
enabled: boolean;
|
|
17392
|
+
manifestId: string;
|
|
17393
|
+
workflow?: {
|
|
17394
|
+
__typename: "Workflow";
|
|
17395
|
+
id: string;
|
|
17396
|
+
kind: WorkflowKind;
|
|
17397
|
+
name: string;
|
|
17398
|
+
enabled: boolean;
|
|
17399
|
+
global: boolean;
|
|
17400
|
+
readOnly: boolean;
|
|
17401
|
+
} | undefined | null;
|
|
17402
|
+
package: {
|
|
17403
|
+
id: string;
|
|
17404
|
+
};
|
|
17405
|
+
}>;
|
|
17406
|
+
author?: {
|
|
17407
|
+
name?: string | undefined | null;
|
|
17408
|
+
email?: string | undefined | null;
|
|
17409
|
+
url?: string | undefined | null;
|
|
17410
|
+
} | undefined | null;
|
|
17411
|
+
links?: {
|
|
17412
|
+
sponsor?: string | undefined | null;
|
|
17413
|
+
} | undefined | null;
|
|
17414
|
+
};
|
|
17415
|
+
export type StorePluginPackageFullFragment = {
|
|
17416
|
+
description?: string | undefined | null;
|
|
17417
|
+
downloads: number;
|
|
17418
|
+
license: string;
|
|
17419
|
+
manifestId: string;
|
|
17420
|
+
name?: string | undefined | null;
|
|
17421
|
+
repository: string;
|
|
17422
|
+
version: string;
|
|
17423
|
+
official: boolean;
|
|
17424
|
+
author?: {
|
|
17425
|
+
email?: string | undefined | null;
|
|
17426
|
+
name?: string | undefined | null;
|
|
17427
|
+
url?: string | undefined | null;
|
|
17428
|
+
} | undefined | null;
|
|
17429
|
+
};
|
|
17430
|
+
export type PluginPackagesQueryVariables = Exact<{
|
|
17431
|
+
[key: string]: never;
|
|
17432
|
+
}>;
|
|
17433
|
+
export type PluginPackagesQuery = {
|
|
17434
|
+
pluginPackages: Array<{
|
|
17435
|
+
id: string;
|
|
17436
|
+
name?: string | undefined | null;
|
|
17437
|
+
description?: string | undefined | null;
|
|
17438
|
+
version: string;
|
|
17439
|
+
installedAt: Date;
|
|
17440
|
+
manifestId: string;
|
|
17441
|
+
plugins: Array<{
|
|
17442
|
+
__typename: "PluginBackend";
|
|
17443
|
+
runtime: PluginRuntime;
|
|
17444
|
+
id: string;
|
|
17445
|
+
name?: string | undefined | null;
|
|
17446
|
+
enabled: boolean;
|
|
17447
|
+
manifestId: string;
|
|
17448
|
+
state: {
|
|
17449
|
+
error?: string | undefined | null;
|
|
17450
|
+
running: boolean;
|
|
17451
|
+
};
|
|
17452
|
+
package: {
|
|
17453
|
+
id: string;
|
|
17454
|
+
};
|
|
17455
|
+
} | {
|
|
17456
|
+
__typename: "PluginFrontend";
|
|
17457
|
+
entrypoint?: string | undefined | null;
|
|
16659
17458
|
style?: string | undefined | null;
|
|
16660
17459
|
data?: unknown | undefined | null;
|
|
16661
17460
|
id: string;
|
|
@@ -21035,6 +21834,17 @@ export type CreatedLogLinesSubscription = {
|
|
|
21035
21834
|
}>;
|
|
21036
21835
|
};
|
|
21037
21836
|
};
|
|
21837
|
+
export type UpdatedCloudStatusSubscriptionVariables = Exact<{
|
|
21838
|
+
[key: string]: never;
|
|
21839
|
+
}>;
|
|
21840
|
+
export type UpdatedCloudStatusSubscription = {
|
|
21841
|
+
updatedCloudStatus: {
|
|
21842
|
+
cloudStatus: {
|
|
21843
|
+
__typename: "CloudStatus";
|
|
21844
|
+
sync: boolean;
|
|
21845
|
+
};
|
|
21846
|
+
};
|
|
21847
|
+
};
|
|
21038
21848
|
export type ScopeFullFragment = {
|
|
21039
21849
|
__typename: "Scope";
|
|
21040
21850
|
id: string;
|
|
@@ -23890,6 +24700,7 @@ export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on W
|
|
|
23890
24700
|
export declare const WorkflowEdgeFullFragmentDoc = "\n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n ";
|
|
23891
24701
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
23892
24702
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
24703
|
+
export declare const TrackDocument = "\n mutation track($input: TrackInput!) {\n track(input: $input) {\n success\n }\n}\n ";
|
|
23893
24704
|
export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
23894
24705
|
export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
23895
24706
|
export declare const AssistantCloudStateDocument = "\n query assistantCloudState {\n viewer {\n __typename\n ... on CloudUser {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n }\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n \n\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
@@ -24015,6 +24826,7 @@ export declare const CreateFindingDocument = "\n mutation createFinding($requ
|
|
|
24015
24826
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
|
|
24016
24827
|
export declare const UpdateFindingDocument = "\n mutation updateFinding($id: ID!, $input: UpdateFindingInput!) {\n updateFinding(id: $id, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
24017
24828
|
export declare const ExportFindingsDocument = "\n mutation exportFindings($input: ExportFindingsInput!) {\n exportFindings(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 ";
|
|
24829
|
+
export declare const ImportFindingDocument = "\n mutation importFinding($input: ImportFindingsInput!) {\n importData(input: {findings: $input}) {\n id\n errors\n summary {\n ... on FindingsSummary {\n findingsImported\n }\n }\n }\n}\n ";
|
|
24018
24830
|
export declare const InterceptEntriesDocument = "\n query interceptEntries($after: String, $first: Int, $before: String, $last: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntries(\n after: $after\n first: $first\n before: $before\n last: $last\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
24019
24831
|
export declare const InterceptEntriesByOffsetDocument = "\n query interceptEntriesByOffset($limit: Int, $offset: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntriesByOffset(\n limit: $limit\n offset: $offset\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
24020
24832
|
export declare const InterceptEntryDocument = "\n query interceptEntry($id: ID!) {\n interceptEntry(id: $id) {\n ...interceptEntryFull\n }\n}\n \n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\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 requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
@@ -24063,6 +24875,10 @@ export declare const TestTamperRuleDocument = "\n mutation testTamperRule($in
|
|
|
24063
24875
|
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 ";
|
|
24064
24876
|
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 ";
|
|
24065
24877
|
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 ";
|
|
24878
|
+
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 ";
|
|
24879
|
+
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 ";
|
|
24880
|
+
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 ";
|
|
24881
|
+
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 ";
|
|
24066
24882
|
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 ";
|
|
24067
24883
|
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 ";
|
|
24068
24884
|
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 ";
|
|
@@ -24124,6 +24940,7 @@ export declare const GetCertificateDocument = "\n query getCertificate($passw
|
|
|
24124
24940
|
export declare const ImportCertificateDocument = "\n mutation importCertificate($input: ImportCertificateInput!) {\n importCertificate(input: $input) {\n error {\n __typename\n ... on CertificateUserError {\n ...certificateUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
24125
24941
|
export declare const RegenerateCertificateDocument = "\n mutation regenerateCertificate {\n regenerateCertificate {\n success\n }\n}\n ";
|
|
24126
24942
|
export declare const CreatedLogLinesDocument = "\n subscription createdLogLines($duration: Duration!) {\n createdLogLines(duration: $duration) {\n lines {\n ...logLineFull\n }\n }\n}\n \n fragment logLineFull on LogLine {\n __typename\n level\n message\n target\n timestamp\n}\n ";
|
|
24943
|
+
export declare const UpdatedCloudStatusDocument = "\n subscription updatedCloudStatus {\n updatedCloudStatus {\n cloudStatus {\n ...cloudStatusFull\n }\n }\n}\n \n fragment cloudStatusFull on CloudStatus {\n __typename\n sync\n}\n ";
|
|
24127
24944
|
export declare const CreateScopeDocument = "\n mutation createScope($input: CreateScopeInput!) {\n createScope(input: $input) {\n error {\n ... on InvalidGlobTermsUserError {\n ...invalidGlobTermsUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n scope {\n ...scopeFull\n }\n }\n}\n \n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
24128
24945
|
export declare const UpdateScopeDocument = "\n mutation updateScope($id: ID!, $input: UpdateScopeInput!) {\n updateScope(id: $id, input: $input) {\n error {\n ... on InvalidGlobTermsUserError {\n ...invalidGlobTermsUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n scope {\n ...scopeFull\n }\n }\n}\n \n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
24129
24946
|
export declare const DeleteScopeDocument = "\n mutation deleteScope($id: ID!) {\n deleteScope(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -24205,6 +25022,7 @@ export declare const TestWorkflowActiveDocument = "\n mutation testWorkflowAc
|
|
|
24205
25022
|
export declare const TestWorkflowPassiveDocument = "\n mutation testWorkflowPassive($input: TestWorkflowPassiveInput!) {\n testWorkflowPassive(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n runState\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\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 \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
24206
25023
|
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
24207
25024
|
export declare function getSdk<C>(requester: Requester<C>): {
|
|
25025
|
+
track(variables: TrackMutationVariables, options?: C): Promise<TrackMutation>;
|
|
24208
25026
|
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
24209
25027
|
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
24210
25028
|
assistantCloudState(variables?: AssistantCloudStateQueryVariables, options?: C): Promise<AssistantCloudStateQuery>;
|
|
@@ -24330,6 +25148,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24330
25148
|
deleteFindings(variables?: DeleteFindingsMutationVariables, options?: C): Promise<DeleteFindingsMutation>;
|
|
24331
25149
|
updateFinding(variables: UpdateFindingMutationVariables, options?: C): Promise<UpdateFindingMutation>;
|
|
24332
25150
|
exportFindings(variables: ExportFindingsMutationVariables, options?: C): Promise<ExportFindingsMutation>;
|
|
25151
|
+
importFinding(variables: ImportFindingMutationVariables, options?: C): Promise<ImportFindingMutation>;
|
|
24333
25152
|
interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
|
|
24334
25153
|
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
24335
25154
|
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
|
@@ -24378,6 +25197,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24378
25197
|
toggleTamperRule(variables: ToggleTamperRuleMutationVariables, options?: C): Promise<ToggleTamperRuleMutation>;
|
|
24379
25198
|
rankTamperRule(variables: RankTamperRuleMutationVariables, options?: C): Promise<RankTamperRuleMutation>;
|
|
24380
25199
|
moveTamperRule(variables: MoveTamperRuleMutationVariables, options?: C): Promise<MoveTamperRuleMutation>;
|
|
25200
|
+
exportTamper(variables: ExportTamperMutationVariables, options?: C): Promise<ExportTamperMutation>;
|
|
25201
|
+
importTamper(variables: ImportTamperMutationVariables, options?: C): Promise<ImportTamperMutation>;
|
|
25202
|
+
createdTamperRuleCollection(variables?: CreatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleCollectionSubscription>;
|
|
25203
|
+
createdTamperRule(variables?: CreatedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleSubscription>;
|
|
24381
25204
|
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
24382
25205
|
storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
|
|
24383
25206
|
installPluginPackage(variables: InstallPluginPackageMutationVariables, options?: C): Promise<InstallPluginPackageMutation>;
|
|
@@ -24439,6 +25262,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24439
25262
|
importCertificate(variables: ImportCertificateMutationVariables, options?: C): Promise<ImportCertificateMutation>;
|
|
24440
25263
|
regenerateCertificate(variables?: RegenerateCertificateMutationVariables, options?: C): Promise<RegenerateCertificateMutation>;
|
|
24441
25264
|
createdLogLines(variables: CreatedLogLinesSubscriptionVariables, options?: C): AsyncIterable<CreatedLogLinesSubscription>;
|
|
25265
|
+
updatedCloudStatus(variables?: UpdatedCloudStatusSubscriptionVariables, options?: C): AsyncIterable<UpdatedCloudStatusSubscription>;
|
|
24442
25266
|
createScope(variables: CreateScopeMutationVariables, options?: C): Promise<CreateScopeMutation>;
|
|
24443
25267
|
updateScope(variables: UpdateScopeMutationVariables, options?: C): Promise<UpdateScopeMutation>;
|
|
24444
25268
|
deleteScope(variables: DeleteScopeMutationVariables, options?: C): Promise<DeleteScopeMutation>;
|