@caido/sdk-frontend 0.43.2-beta.1 → 0.43.2-beta.3
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.
|
@@ -624,11 +624,13 @@ export type CertificateUserError = UserError & {
|
|
|
624
624
|
reason: CertificateErrorReason;
|
|
625
625
|
};
|
|
626
626
|
export type ConnectionInfo = {
|
|
627
|
+
SNI?: Maybe<Scalars["String"]["output"]>;
|
|
627
628
|
host: Scalars["String"]["output"];
|
|
628
629
|
isTLS: Scalars["Boolean"]["output"];
|
|
629
630
|
port: Scalars["Port"]["output"];
|
|
630
631
|
};
|
|
631
632
|
export type ConnectionInfoInput = {
|
|
633
|
+
SNI?: InputMaybe<Scalars["String"]["input"]>;
|
|
632
634
|
host: Scalars["String"]["input"];
|
|
633
635
|
isTLS: Scalars["Boolean"]["input"];
|
|
634
636
|
port: Scalars["Port"]["input"];
|
|
@@ -657,6 +659,15 @@ export type CreateBackupPayload = {
|
|
|
657
659
|
error?: Maybe<CreateBackupError>;
|
|
658
660
|
task?: Maybe<BackupTask>;
|
|
659
661
|
};
|
|
662
|
+
export type CreateEnvironmentError = NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
663
|
+
export type CreateEnvironmentInput = {
|
|
664
|
+
name: Scalars["String"]["input"];
|
|
665
|
+
variables: Array<EnvironmentVariableInput>;
|
|
666
|
+
};
|
|
667
|
+
export type CreateEnvironmentPayload = {
|
|
668
|
+
environment?: Maybe<Environment>;
|
|
669
|
+
error?: Maybe<CreateEnvironmentError>;
|
|
670
|
+
};
|
|
660
671
|
export type CreateFilterPresetError = AliasTakenUserError | NameTakenUserError | OtherUserError | PermissionDeniedUserError;
|
|
661
672
|
export type CreateFilterPresetInput = {
|
|
662
673
|
alias: Scalars["Alias"]["input"];
|
|
@@ -809,6 +820,10 @@ export type CreatedDataExportPayload = {
|
|
|
809
820
|
export type CreatedDataExportTaskPayload = {
|
|
810
821
|
exportTaskEdge: DataExportTaskEdge;
|
|
811
822
|
};
|
|
823
|
+
export type CreatedEnvironmentPayload = {
|
|
824
|
+
environment: Environment;
|
|
825
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
826
|
+
};
|
|
812
827
|
export type CreatedFilterPresetPayload = {
|
|
813
828
|
filterEdge: FilterPresetEdge;
|
|
814
829
|
};
|
|
@@ -968,6 +983,11 @@ export type DeleteDataExportPayload = {
|
|
|
968
983
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
969
984
|
userError?: Maybe<DeleteDataExportError>;
|
|
970
985
|
};
|
|
986
|
+
export type DeleteEnvironmentError = OtherUserError | UnknownIdUserError;
|
|
987
|
+
export type DeleteEnvironmentPayload = {
|
|
988
|
+
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
989
|
+
error?: Maybe<DeleteEnvironmentError>;
|
|
990
|
+
};
|
|
971
991
|
export type DeleteFilterPresetPayload = {
|
|
972
992
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
973
993
|
};
|
|
@@ -1054,6 +1074,10 @@ export type DeletedDataExportPayload = {
|
|
|
1054
1074
|
export type DeletedDataExportTaskPayload = {
|
|
1055
1075
|
deletedExportTaskId: Scalars["ID"]["output"];
|
|
1056
1076
|
};
|
|
1077
|
+
export type DeletedEnvironmentPayload = {
|
|
1078
|
+
deletedEnvironmentId: Scalars["ID"]["output"];
|
|
1079
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
1080
|
+
};
|
|
1057
1081
|
export type DeletedFilterPresetPayload = {
|
|
1058
1082
|
deletedFilterId: Scalars["ID"]["output"];
|
|
1059
1083
|
};
|
|
@@ -1119,6 +1143,31 @@ export type DuplicateAutomateSessionPayload = {
|
|
|
1119
1143
|
export type EnableTamperRulePayload = {
|
|
1120
1144
|
rule?: Maybe<TamperRule>;
|
|
1121
1145
|
};
|
|
1146
|
+
export type Environment = {
|
|
1147
|
+
id: Scalars["ID"]["output"];
|
|
1148
|
+
name: Scalars["String"]["output"];
|
|
1149
|
+
variables: Array<EnvironmentVariable>;
|
|
1150
|
+
version: Scalars["Int"]["output"];
|
|
1151
|
+
};
|
|
1152
|
+
export type EnvironmentContext = {
|
|
1153
|
+
global?: Maybe<Environment>;
|
|
1154
|
+
selected?: Maybe<Environment>;
|
|
1155
|
+
};
|
|
1156
|
+
export type EnvironmentVariable = {
|
|
1157
|
+
kind: EnvironmentVariableKind;
|
|
1158
|
+
name: Scalars["String"]["output"];
|
|
1159
|
+
value: Scalars["String"]["output"];
|
|
1160
|
+
};
|
|
1161
|
+
export type EnvironmentVariableInput = {
|
|
1162
|
+
kind: EnvironmentVariableKind;
|
|
1163
|
+
name: Scalars["String"]["input"];
|
|
1164
|
+
value: Scalars["String"]["input"];
|
|
1165
|
+
};
|
|
1166
|
+
export declare const EnvironmentVariableKind: {
|
|
1167
|
+
readonly Plain: "PLAIN";
|
|
1168
|
+
readonly Secret: "SECRET";
|
|
1169
|
+
};
|
|
1170
|
+
export type EnvironmentVariableKind = (typeof EnvironmentVariableKind)[keyof typeof EnvironmentVariableKind];
|
|
1122
1171
|
export type FilterClauseFindingInput = {
|
|
1123
1172
|
reporter?: InputMaybe<Scalars["String"]["input"]>;
|
|
1124
1173
|
};
|
|
@@ -1405,6 +1454,7 @@ export type MutationRoot = {
|
|
|
1405
1454
|
createAssistantSession: CreateAssistantSessionPayload;
|
|
1406
1455
|
createAutomateSession: CreateAutomateSessionPayload;
|
|
1407
1456
|
createBackup: CreateBackupPayload;
|
|
1457
|
+
createEnvironment: CreateEnvironmentPayload;
|
|
1408
1458
|
createFilterPreset: CreateFilterPresetPayload;
|
|
1409
1459
|
createFinding: CreateFindingPayload;
|
|
1410
1460
|
createProject: CreateProjectPayload;
|
|
@@ -1423,6 +1473,7 @@ export type MutationRoot = {
|
|
|
1423
1473
|
deleteBackup: DeleteBackupPayload;
|
|
1424
1474
|
deleteBrowser: DeleteBrowserPayload;
|
|
1425
1475
|
deleteDataExport: DeleteDataExportPayload;
|
|
1476
|
+
deleteEnvironment: DeleteEnvironmentPayload;
|
|
1426
1477
|
deleteFilterPreset: DeleteFilterPresetPayload;
|
|
1427
1478
|
deleteFindings: DeleteFindingsPayload;
|
|
1428
1479
|
deleteHostedFile: DeleteHostedFilePayload;
|
|
@@ -1476,6 +1527,7 @@ export type MutationRoot = {
|
|
|
1476
1527
|
resumeIntercept: ResumeInterceptPayload;
|
|
1477
1528
|
runActiveWorkflow: RunActiveWorkflowPayload;
|
|
1478
1529
|
runConvertWorkflow: RunConvertWorkflowPayload;
|
|
1530
|
+
selectEnvironment: SelectEnvironmentPayload;
|
|
1479
1531
|
selectProject: SelectProjectPayload;
|
|
1480
1532
|
sendAssistantMessage: SendAssistantMessagePayload;
|
|
1481
1533
|
/** @deprecated Remove usage, no replacement */
|
|
@@ -1498,6 +1550,7 @@ export type MutationRoot = {
|
|
|
1498
1550
|
uninstallPluginPackage: UninstallPluginPackagePayload;
|
|
1499
1551
|
updateAutomateSession: UpdateAutomateSessionPayload;
|
|
1500
1552
|
updateBrowser: UpdateBrowserPayload;
|
|
1553
|
+
updateEnvironment: UpdateEnvironmentPayload;
|
|
1501
1554
|
updateFilterPreset: UpdateFilterPresetPayload;
|
|
1502
1555
|
updateRequestMetadata: UpdateRequestMetadataPayload;
|
|
1503
1556
|
updateScope: UpdateScopePayload;
|
|
@@ -1532,6 +1585,9 @@ export type MutationRootCreateAutomateSessionArgs = {
|
|
|
1532
1585
|
export type MutationRootCreateBackupArgs = {
|
|
1533
1586
|
projectId: Scalars["ID"]["input"];
|
|
1534
1587
|
};
|
|
1588
|
+
export type MutationRootCreateEnvironmentArgs = {
|
|
1589
|
+
input: CreateEnvironmentInput;
|
|
1590
|
+
};
|
|
1535
1591
|
export type MutationRootCreateFilterPresetArgs = {
|
|
1536
1592
|
input: CreateFilterPresetInput;
|
|
1537
1593
|
};
|
|
@@ -1584,6 +1640,9 @@ export type MutationRootDeleteBackupArgs = {
|
|
|
1584
1640
|
export type MutationRootDeleteDataExportArgs = {
|
|
1585
1641
|
id: Scalars["ID"]["input"];
|
|
1586
1642
|
};
|
|
1643
|
+
export type MutationRootDeleteEnvironmentArgs = {
|
|
1644
|
+
id: Scalars["ID"]["input"];
|
|
1645
|
+
};
|
|
1587
1646
|
export type MutationRootDeleteFilterPresetArgs = {
|
|
1588
1647
|
id: Scalars["ID"]["input"];
|
|
1589
1648
|
};
|
|
@@ -1751,6 +1810,9 @@ export type MutationRootRunConvertWorkflowArgs = {
|
|
|
1751
1810
|
id: Scalars["ID"]["input"];
|
|
1752
1811
|
input: Scalars["Blob"]["input"];
|
|
1753
1812
|
};
|
|
1813
|
+
export type MutationRootSelectEnvironmentArgs = {
|
|
1814
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1815
|
+
};
|
|
1754
1816
|
export type MutationRootSelectProjectArgs = {
|
|
1755
1817
|
id: Scalars["ID"]["input"];
|
|
1756
1818
|
};
|
|
@@ -1817,6 +1879,10 @@ export type MutationRootUpdateAutomateSessionArgs = {
|
|
|
1817
1879
|
id: Scalars["ID"]["input"];
|
|
1818
1880
|
input: UpdateAutomateSessionInput;
|
|
1819
1881
|
};
|
|
1882
|
+
export type MutationRootUpdateEnvironmentArgs = {
|
|
1883
|
+
id: Scalars["ID"]["input"];
|
|
1884
|
+
input: UpdateEnvironmentInput;
|
|
1885
|
+
};
|
|
1820
1886
|
export type MutationRootUpdateFilterPresetArgs = {
|
|
1821
1887
|
id: Scalars["ID"]["input"];
|
|
1822
1888
|
input: UpdateFilterPresetInput;
|
|
@@ -1855,6 +1921,10 @@ export type NameTakenUserError = UserError & {
|
|
|
1855
1921
|
code: Scalars["String"]["output"];
|
|
1856
1922
|
name: Scalars["String"]["output"];
|
|
1857
1923
|
};
|
|
1924
|
+
export type NewerVersionUserError = UserError & {
|
|
1925
|
+
code: Scalars["String"]["output"];
|
|
1926
|
+
version: Scalars["Int"]["output"];
|
|
1927
|
+
};
|
|
1858
1928
|
export type OnboardingState = {
|
|
1859
1929
|
caCertificate: Scalars["Boolean"]["output"];
|
|
1860
1930
|
license: Scalars["Boolean"]["output"];
|
|
@@ -2017,6 +2087,9 @@ export type QueryRoot = {
|
|
|
2017
2087
|
dataExport?: Maybe<DataExport>;
|
|
2018
2088
|
dataExportTasks: Array<DataExportTask>;
|
|
2019
2089
|
dataExports: Array<DataExport>;
|
|
2090
|
+
environment?: Maybe<Environment>;
|
|
2091
|
+
environmentContext: EnvironmentContext;
|
|
2092
|
+
environments: Array<Environment>;
|
|
2020
2093
|
filterPreset?: Maybe<FilterPreset>;
|
|
2021
2094
|
filterPresets: Array<FilterPreset>;
|
|
2022
2095
|
finding?: Maybe<Finding>;
|
|
@@ -2093,6 +2166,9 @@ export type QueryRootBackupArgs = {
|
|
|
2093
2166
|
export type QueryRootDataExportArgs = {
|
|
2094
2167
|
id: Scalars["ID"]["input"];
|
|
2095
2168
|
};
|
|
2169
|
+
export type QueryRootEnvironmentArgs = {
|
|
2170
|
+
id: Scalars["ID"]["input"];
|
|
2171
|
+
};
|
|
2096
2172
|
export type QueryRootFilterPresetArgs = {
|
|
2097
2173
|
id: Scalars["ID"]["input"];
|
|
2098
2174
|
};
|
|
@@ -2398,6 +2474,12 @@ export type ReplayEntrySettingsInput = {
|
|
|
2398
2474
|
placeholders: Array<ReplayPlaceholderInput>;
|
|
2399
2475
|
updateContentLength: Scalars["Boolean"]["input"];
|
|
2400
2476
|
};
|
|
2477
|
+
export type ReplayEnvironmentPreprocessor = {
|
|
2478
|
+
variableName: Scalars["String"]["output"];
|
|
2479
|
+
};
|
|
2480
|
+
export type ReplayEnvironmentPreprocessorInput = {
|
|
2481
|
+
variableName: Scalars["String"]["input"];
|
|
2482
|
+
};
|
|
2401
2483
|
export type ReplayPlaceholder = {
|
|
2402
2484
|
inputRange: Range;
|
|
2403
2485
|
outputRange: Range;
|
|
@@ -2420,23 +2502,33 @@ export type ReplayPreprocessor = {
|
|
|
2420
2502
|
export type ReplayPreprocessorInput = {
|
|
2421
2503
|
options: ReplayPreprocessorOptionsInput;
|
|
2422
2504
|
};
|
|
2423
|
-
export type ReplayPreprocessorOptions = ReplayPrefixPreprocessor | ReplaySuffixPreprocessor | ReplayUrlEncodePreprocessor | ReplayWorkflowPreprocessor;
|
|
2505
|
+
export type ReplayPreprocessorOptions = ReplayEnvironmentPreprocessor | ReplayPrefixPreprocessor | ReplaySuffixPreprocessor | ReplayUrlEncodePreprocessor | ReplayWorkflowPreprocessor;
|
|
2424
2506
|
export type ReplayPreprocessorOptionsInput = {
|
|
2507
|
+
environment: ReplayEnvironmentPreprocessorInput;
|
|
2508
|
+
prefix?: never;
|
|
2509
|
+
suffix?: never;
|
|
2510
|
+
urlEncode?: never;
|
|
2511
|
+
workflow?: never;
|
|
2512
|
+
} | {
|
|
2513
|
+
environment?: never;
|
|
2425
2514
|
prefix: ReplayPrefixPreprocessorInput;
|
|
2426
2515
|
suffix?: never;
|
|
2427
2516
|
urlEncode?: never;
|
|
2428
2517
|
workflow?: never;
|
|
2429
2518
|
} | {
|
|
2519
|
+
environment?: never;
|
|
2430
2520
|
prefix?: never;
|
|
2431
2521
|
suffix: ReplaySuffixPreprocessorInput;
|
|
2432
2522
|
urlEncode?: never;
|
|
2433
2523
|
workflow?: never;
|
|
2434
2524
|
} | {
|
|
2525
|
+
environment?: never;
|
|
2435
2526
|
prefix?: never;
|
|
2436
2527
|
suffix?: never;
|
|
2437
2528
|
urlEncode: ReplayUrlEncodePreprocessorInput;
|
|
2438
2529
|
workflow?: never;
|
|
2439
2530
|
} | {
|
|
2531
|
+
environment?: never;
|
|
2440
2532
|
prefix?: never;
|
|
2441
2533
|
suffix?: never;
|
|
2442
2534
|
urlEncode?: never;
|
|
@@ -2537,6 +2629,7 @@ export type Request = {
|
|
|
2537
2629
|
query: Scalars["String"]["output"];
|
|
2538
2630
|
raw: Scalars["Blob"]["output"];
|
|
2539
2631
|
response?: Maybe<Response>;
|
|
2632
|
+
sni?: Maybe<Scalars["String"]["output"]>;
|
|
2540
2633
|
source: Source;
|
|
2541
2634
|
stream?: Maybe<Stream>;
|
|
2542
2635
|
};
|
|
@@ -2658,6 +2751,11 @@ export type ScopeEdge = {
|
|
|
2658
2751
|
/** The item at the end of the edge */
|
|
2659
2752
|
node: Scope;
|
|
2660
2753
|
};
|
|
2754
|
+
export type SelectEnvironmentError = OtherUserError | UnknownIdUserError;
|
|
2755
|
+
export type SelectEnvironmentPayload = {
|
|
2756
|
+
environment?: Maybe<Environment>;
|
|
2757
|
+
error?: Maybe<SelectEnvironmentError>;
|
|
2758
|
+
};
|
|
2661
2759
|
export type SelectProjectPayload = {
|
|
2662
2760
|
error?: Maybe<SelectProjectPayloadError>;
|
|
2663
2761
|
project?: Maybe<Project>;
|
|
@@ -2924,6 +3022,7 @@ export type SubscriptionRoot = {
|
|
|
2924
3022
|
createdBackup: CreatedBackupPayload;
|
|
2925
3023
|
createdDataExport: CreatedDataExportPayload;
|
|
2926
3024
|
createdDataExportTask: CreatedDataExportTaskPayload;
|
|
3025
|
+
createdEnvironment: CreatedEnvironmentPayload;
|
|
2927
3026
|
createdFilterPreset: CreatedFilterPresetPayload;
|
|
2928
3027
|
createdFinding: CreatedFindingPayload;
|
|
2929
3028
|
createdInterceptEntry: CreatedInterceptEntryPayload;
|
|
@@ -2951,6 +3050,7 @@ export type SubscriptionRoot = {
|
|
|
2951
3050
|
deletedBrowser: DeletedBrowserPayload;
|
|
2952
3051
|
deletedDataExport: DeletedDataExportPayload;
|
|
2953
3052
|
deletedDataExportTask: DeletedDataExportTaskPayload;
|
|
3053
|
+
deletedEnvironment: DeletedEnvironmentPayload;
|
|
2954
3054
|
deletedFilterPreset: DeletedFilterPresetPayload;
|
|
2955
3055
|
deletedFindings: DeletedFindingsPayload;
|
|
2956
3056
|
deletedHostedFile: DeletedHostedFilePayload;
|
|
@@ -2984,6 +3084,8 @@ export type SubscriptionRoot = {
|
|
|
2984
3084
|
updatedBrowser: UpdatedBrowserPayload;
|
|
2985
3085
|
updatedDataExport: UpdatedDataExportPayload;
|
|
2986
3086
|
updatedDeleteInterceptEntriesTask: UpdatedDeleteInterceptEntriesTaskPayload;
|
|
3087
|
+
updatedEnvironment: UpdatedEnvironmentPayload;
|
|
3088
|
+
updatedEnvironmentContext: UpdatedEnvironmentContextPayload;
|
|
2987
3089
|
updatedFilterPreset: UpdatedFilterPresetPayload;
|
|
2988
3090
|
updatedHostedFile: UpdatedHostedFilePayload;
|
|
2989
3091
|
updatedInterceptEntry: UpdatedInterceptEntryPayload;
|
|
@@ -3167,6 +3269,16 @@ export type UpdateBrowserPayload = {
|
|
|
3167
3269
|
browser?: Maybe<Browser>;
|
|
3168
3270
|
error?: Maybe<UpdateBrowserError>;
|
|
3169
3271
|
};
|
|
3272
|
+
export type UpdateEnvironmentError = NameTakenUserError | NewerVersionUserError | OtherUserError | PermissionDeniedUserError | UnknownIdUserError;
|
|
3273
|
+
export type UpdateEnvironmentInput = {
|
|
3274
|
+
name: Scalars["String"]["input"];
|
|
3275
|
+
variables: Array<EnvironmentVariableInput>;
|
|
3276
|
+
version: Scalars["Int"]["input"];
|
|
3277
|
+
};
|
|
3278
|
+
export type UpdateEnvironmentPayload = {
|
|
3279
|
+
environment?: Maybe<Environment>;
|
|
3280
|
+
error?: Maybe<UpdateEnvironmentError>;
|
|
3281
|
+
};
|
|
3170
3282
|
export type UpdateFilterPresetError = AliasTakenUserError | NameTakenUserError | OtherUserError;
|
|
3171
3283
|
export type UpdateFilterPresetInput = {
|
|
3172
3284
|
alias: Scalars["Alias"]["input"];
|
|
@@ -3277,6 +3389,13 @@ export type UpdatedDeleteInterceptEntriesTaskPayload = {
|
|
|
3277
3389
|
snapshot: Scalars["Snapshot"]["output"];
|
|
3278
3390
|
task: DeleteInterceptEntriesTask;
|
|
3279
3391
|
};
|
|
3392
|
+
export type UpdatedEnvironmentContextPayload = {
|
|
3393
|
+
environmentContext: EnvironmentContext;
|
|
3394
|
+
};
|
|
3395
|
+
export type UpdatedEnvironmentPayload = {
|
|
3396
|
+
environment: Environment;
|
|
3397
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
3398
|
+
};
|
|
3280
3399
|
export type UpdatedFilterPresetPayload = {
|
|
3281
3400
|
filterEdge: FilterPresetEdge;
|
|
3282
3401
|
};
|
|
@@ -3924,6 +4043,7 @@ export type AutomateEntryRequestMetaFragment = {
|
|
|
3924
4043
|
method: string;
|
|
3925
4044
|
edited: boolean;
|
|
3926
4045
|
isTls: boolean;
|
|
4046
|
+
sni?: string | undefined | null;
|
|
3927
4047
|
length: number;
|
|
3928
4048
|
alteration: Alteration;
|
|
3929
4049
|
fileExtension?: string | undefined | null;
|
|
@@ -3969,6 +4089,7 @@ export type AutomateEntryRequestEdgeMetaFragment = {
|
|
|
3969
4089
|
method: string;
|
|
3970
4090
|
edited: boolean;
|
|
3971
4091
|
isTls: boolean;
|
|
4092
|
+
sni?: string | undefined | null;
|
|
3972
4093
|
length: number;
|
|
3973
4094
|
alteration: Alteration;
|
|
3974
4095
|
fileExtension?: string | undefined | null;
|
|
@@ -4023,6 +4144,7 @@ export type AutomateSessionFullFragment = {
|
|
|
4023
4144
|
host: string;
|
|
4024
4145
|
port: number;
|
|
4025
4146
|
isTLS: boolean;
|
|
4147
|
+
SNI?: string | undefined | null;
|
|
4026
4148
|
};
|
|
4027
4149
|
settings: {
|
|
4028
4150
|
__typename: "AutomateSettings";
|
|
@@ -4391,6 +4513,7 @@ export type AutomateEntryRequestsQuery = {
|
|
|
4391
4513
|
method: string;
|
|
4392
4514
|
edited: boolean;
|
|
4393
4515
|
isTls: boolean;
|
|
4516
|
+
sni?: string | undefined | null;
|
|
4394
4517
|
length: number;
|
|
4395
4518
|
alteration: Alteration;
|
|
4396
4519
|
fileExtension?: string | undefined | null;
|
|
@@ -4516,6 +4639,7 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
4516
4639
|
method: string;
|
|
4517
4640
|
edited: boolean;
|
|
4518
4641
|
isTls: boolean;
|
|
4642
|
+
sni?: string | undefined | null;
|
|
4519
4643
|
length: number;
|
|
4520
4644
|
alteration: Alteration;
|
|
4521
4645
|
fileExtension?: string | undefined | null;
|
|
@@ -4727,6 +4851,7 @@ export type AutomateSessionQuery = {
|
|
|
4727
4851
|
host: string;
|
|
4728
4852
|
port: number;
|
|
4729
4853
|
isTLS: boolean;
|
|
4854
|
+
SNI?: string | undefined | null;
|
|
4730
4855
|
};
|
|
4731
4856
|
settings: {
|
|
4732
4857
|
__typename: "AutomateSettings";
|
|
@@ -4936,6 +5061,7 @@ export type CreateAutomateSessionMutation = {
|
|
|
4936
5061
|
host: string;
|
|
4937
5062
|
port: number;
|
|
4938
5063
|
isTLS: boolean;
|
|
5064
|
+
SNI?: string | undefined | null;
|
|
4939
5065
|
};
|
|
4940
5066
|
settings: {
|
|
4941
5067
|
__typename: "AutomateSettings";
|
|
@@ -5032,6 +5158,7 @@ export type RenameAutomateSessionMutation = {
|
|
|
5032
5158
|
host: string;
|
|
5033
5159
|
port: number;
|
|
5034
5160
|
isTLS: boolean;
|
|
5161
|
+
SNI?: string | undefined | null;
|
|
5035
5162
|
};
|
|
5036
5163
|
settings: {
|
|
5037
5164
|
__typename: "AutomateSettings";
|
|
@@ -5120,6 +5247,7 @@ export type UpdateAutomateSessionMutation = {
|
|
|
5120
5247
|
host: string;
|
|
5121
5248
|
port: number;
|
|
5122
5249
|
isTLS: boolean;
|
|
5250
|
+
SNI?: string | undefined | null;
|
|
5123
5251
|
};
|
|
5124
5252
|
settings: {
|
|
5125
5253
|
__typename: "AutomateSettings";
|
|
@@ -5308,6 +5436,7 @@ export type CreatedAutomateEntryRequestSubscription = {
|
|
|
5308
5436
|
method: string;
|
|
5309
5437
|
edited: boolean;
|
|
5310
5438
|
isTls: boolean;
|
|
5439
|
+
sni?: string | undefined | null;
|
|
5311
5440
|
length: number;
|
|
5312
5441
|
alteration: Alteration;
|
|
5313
5442
|
fileExtension?: string | undefined | null;
|
|
@@ -5495,6 +5624,287 @@ export type DeletedAutomateSessionSubscription = {
|
|
|
5495
5624
|
deletedAutomateSessionId: string;
|
|
5496
5625
|
};
|
|
5497
5626
|
};
|
|
5627
|
+
export type EnvironmentMetaFragment = {
|
|
5628
|
+
__typename: "Environment";
|
|
5629
|
+
id: string;
|
|
5630
|
+
name: string;
|
|
5631
|
+
version: number;
|
|
5632
|
+
};
|
|
5633
|
+
export type EnvironmentVariableFullFragment = {
|
|
5634
|
+
name: string;
|
|
5635
|
+
value: string;
|
|
5636
|
+
kind: EnvironmentVariableKind;
|
|
5637
|
+
};
|
|
5638
|
+
export type EnvironmentFullFragment = {
|
|
5639
|
+
__typename: "Environment";
|
|
5640
|
+
id: string;
|
|
5641
|
+
name: string;
|
|
5642
|
+
version: number;
|
|
5643
|
+
variables: Array<{
|
|
5644
|
+
name: string;
|
|
5645
|
+
value: string;
|
|
5646
|
+
kind: EnvironmentVariableKind;
|
|
5647
|
+
}>;
|
|
5648
|
+
};
|
|
5649
|
+
export type EnvironmentContextFullFragment = {
|
|
5650
|
+
global?: {
|
|
5651
|
+
__typename: "Environment";
|
|
5652
|
+
id: string;
|
|
5653
|
+
name: string;
|
|
5654
|
+
version: number;
|
|
5655
|
+
variables: Array<{
|
|
5656
|
+
name: string;
|
|
5657
|
+
value: string;
|
|
5658
|
+
kind: EnvironmentVariableKind;
|
|
5659
|
+
}>;
|
|
5660
|
+
} | undefined | null;
|
|
5661
|
+
selected?: {
|
|
5662
|
+
__typename: "Environment";
|
|
5663
|
+
id: string;
|
|
5664
|
+
name: string;
|
|
5665
|
+
version: number;
|
|
5666
|
+
variables: Array<{
|
|
5667
|
+
name: string;
|
|
5668
|
+
value: string;
|
|
5669
|
+
kind: EnvironmentVariableKind;
|
|
5670
|
+
}>;
|
|
5671
|
+
} | undefined | null;
|
|
5672
|
+
};
|
|
5673
|
+
export type EnvironmentQueryVariables = Exact<{
|
|
5674
|
+
id: Scalars["ID"]["input"];
|
|
5675
|
+
}>;
|
|
5676
|
+
export type EnvironmentQuery = {
|
|
5677
|
+
environment?: {
|
|
5678
|
+
__typename: "Environment";
|
|
5679
|
+
id: string;
|
|
5680
|
+
name: string;
|
|
5681
|
+
version: number;
|
|
5682
|
+
variables: Array<{
|
|
5683
|
+
name: string;
|
|
5684
|
+
value: string;
|
|
5685
|
+
kind: EnvironmentVariableKind;
|
|
5686
|
+
}>;
|
|
5687
|
+
} | undefined | null;
|
|
5688
|
+
};
|
|
5689
|
+
export type EnvironmentsQueryVariables = Exact<{
|
|
5690
|
+
[key: string]: never;
|
|
5691
|
+
}>;
|
|
5692
|
+
export type EnvironmentsQuery = {
|
|
5693
|
+
environments: Array<{
|
|
5694
|
+
__typename: "Environment";
|
|
5695
|
+
id: string;
|
|
5696
|
+
name: string;
|
|
5697
|
+
version: number;
|
|
5698
|
+
}>;
|
|
5699
|
+
};
|
|
5700
|
+
export type EnvironmentContextQueryVariables = Exact<{
|
|
5701
|
+
[key: string]: never;
|
|
5702
|
+
}>;
|
|
5703
|
+
export type EnvironmentContextQuery = {
|
|
5704
|
+
environmentContext: {
|
|
5705
|
+
global?: {
|
|
5706
|
+
__typename: "Environment";
|
|
5707
|
+
id: string;
|
|
5708
|
+
name: string;
|
|
5709
|
+
version: number;
|
|
5710
|
+
variables: Array<{
|
|
5711
|
+
name: string;
|
|
5712
|
+
value: string;
|
|
5713
|
+
kind: EnvironmentVariableKind;
|
|
5714
|
+
}>;
|
|
5715
|
+
} | undefined | null;
|
|
5716
|
+
selected?: {
|
|
5717
|
+
__typename: "Environment";
|
|
5718
|
+
id: string;
|
|
5719
|
+
name: string;
|
|
5720
|
+
version: number;
|
|
5721
|
+
variables: Array<{
|
|
5722
|
+
name: string;
|
|
5723
|
+
value: string;
|
|
5724
|
+
kind: EnvironmentVariableKind;
|
|
5725
|
+
}>;
|
|
5726
|
+
} | undefined | null;
|
|
5727
|
+
};
|
|
5728
|
+
};
|
|
5729
|
+
export type CreateEnvironmentMutationVariables = Exact<{
|
|
5730
|
+
input: CreateEnvironmentInput;
|
|
5731
|
+
}>;
|
|
5732
|
+
export type CreateEnvironmentMutation = {
|
|
5733
|
+
createEnvironment: {
|
|
5734
|
+
environment?: {
|
|
5735
|
+
__typename: "Environment";
|
|
5736
|
+
id: string;
|
|
5737
|
+
name: string;
|
|
5738
|
+
version: number;
|
|
5739
|
+
variables: Array<{
|
|
5740
|
+
name: string;
|
|
5741
|
+
value: string;
|
|
5742
|
+
kind: EnvironmentVariableKind;
|
|
5743
|
+
}>;
|
|
5744
|
+
} | undefined | null;
|
|
5745
|
+
error?: {
|
|
5746
|
+
__typename: "NameTakenUserError";
|
|
5747
|
+
name: string;
|
|
5748
|
+
code: string;
|
|
5749
|
+
} | {
|
|
5750
|
+
__typename: "OtherUserError";
|
|
5751
|
+
code: string;
|
|
5752
|
+
} | {
|
|
5753
|
+
__typename: "PermissionDeniedUserError";
|
|
5754
|
+
code: string;
|
|
5755
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
5756
|
+
} | undefined | null;
|
|
5757
|
+
};
|
|
5758
|
+
};
|
|
5759
|
+
export type UpdateEnvironmentMutationVariables = Exact<{
|
|
5760
|
+
id: Scalars["ID"]["input"];
|
|
5761
|
+
input: UpdateEnvironmentInput;
|
|
5762
|
+
}>;
|
|
5763
|
+
export type UpdateEnvironmentMutation = {
|
|
5764
|
+
updateEnvironment: {
|
|
5765
|
+
environment?: {
|
|
5766
|
+
__typename: "Environment";
|
|
5767
|
+
id: string;
|
|
5768
|
+
name: string;
|
|
5769
|
+
version: number;
|
|
5770
|
+
variables: Array<{
|
|
5771
|
+
name: string;
|
|
5772
|
+
value: string;
|
|
5773
|
+
kind: EnvironmentVariableKind;
|
|
5774
|
+
}>;
|
|
5775
|
+
} | undefined | null;
|
|
5776
|
+
error?: {
|
|
5777
|
+
__typename: "NameTakenUserError";
|
|
5778
|
+
name: string;
|
|
5779
|
+
code: string;
|
|
5780
|
+
} | {
|
|
5781
|
+
__typename: "NewerVersionUserError";
|
|
5782
|
+
version: number;
|
|
5783
|
+
code: string;
|
|
5784
|
+
} | {
|
|
5785
|
+
__typename: "OtherUserError";
|
|
5786
|
+
code: string;
|
|
5787
|
+
} | {
|
|
5788
|
+
__typename: "PermissionDeniedUserError";
|
|
5789
|
+
code: string;
|
|
5790
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
5791
|
+
} | {
|
|
5792
|
+
__typename: "UnknownIdUserError";
|
|
5793
|
+
id: string;
|
|
5794
|
+
code: string;
|
|
5795
|
+
} | undefined | null;
|
|
5796
|
+
};
|
|
5797
|
+
};
|
|
5798
|
+
export type DeleteEnvironmentMutationVariables = Exact<{
|
|
5799
|
+
id: Scalars["ID"]["input"];
|
|
5800
|
+
}>;
|
|
5801
|
+
export type DeleteEnvironmentMutation = {
|
|
5802
|
+
deleteEnvironment: {
|
|
5803
|
+
deletedId?: string | undefined | null;
|
|
5804
|
+
error?: {
|
|
5805
|
+
__typename: "OtherUserError";
|
|
5806
|
+
code: string;
|
|
5807
|
+
} | {
|
|
5808
|
+
__typename: "UnknownIdUserError";
|
|
5809
|
+
id: string;
|
|
5810
|
+
code: string;
|
|
5811
|
+
} | undefined | null;
|
|
5812
|
+
};
|
|
5813
|
+
};
|
|
5814
|
+
export type SelectEnvironmentMutationVariables = Exact<{
|
|
5815
|
+
id?: InputMaybe<Scalars["ID"]["input"]>;
|
|
5816
|
+
}>;
|
|
5817
|
+
export type SelectEnvironmentMutation = {
|
|
5818
|
+
selectEnvironment: {
|
|
5819
|
+
environment?: {
|
|
5820
|
+
__typename: "Environment";
|
|
5821
|
+
id: string;
|
|
5822
|
+
name: string;
|
|
5823
|
+
version: number;
|
|
5824
|
+
variables: Array<{
|
|
5825
|
+
name: string;
|
|
5826
|
+
value: string;
|
|
5827
|
+
kind: EnvironmentVariableKind;
|
|
5828
|
+
}>;
|
|
5829
|
+
} | undefined | null;
|
|
5830
|
+
error?: {
|
|
5831
|
+
__typename: "OtherUserError";
|
|
5832
|
+
code: string;
|
|
5833
|
+
} | {
|
|
5834
|
+
__typename: "UnknownIdUserError";
|
|
5835
|
+
id: string;
|
|
5836
|
+
code: string;
|
|
5837
|
+
} | undefined | null;
|
|
5838
|
+
};
|
|
5839
|
+
};
|
|
5840
|
+
export type CreatedEnvironmentSubscriptionVariables = Exact<{
|
|
5841
|
+
[key: string]: never;
|
|
5842
|
+
}>;
|
|
5843
|
+
export type CreatedEnvironmentSubscription = {
|
|
5844
|
+
createdEnvironment: {
|
|
5845
|
+
snapshot: number;
|
|
5846
|
+
environment: {
|
|
5847
|
+
__typename: "Environment";
|
|
5848
|
+
id: string;
|
|
5849
|
+
name: string;
|
|
5850
|
+
version: number;
|
|
5851
|
+
};
|
|
5852
|
+
};
|
|
5853
|
+
};
|
|
5854
|
+
export type UpdatedEnvironmentSubscriptionVariables = Exact<{
|
|
5855
|
+
[key: string]: never;
|
|
5856
|
+
}>;
|
|
5857
|
+
export type UpdatedEnvironmentSubscription = {
|
|
5858
|
+
updatedEnvironment: {
|
|
5859
|
+
snapshot: number;
|
|
5860
|
+
environment: {
|
|
5861
|
+
__typename: "Environment";
|
|
5862
|
+
id: string;
|
|
5863
|
+
name: string;
|
|
5864
|
+
version: number;
|
|
5865
|
+
};
|
|
5866
|
+
};
|
|
5867
|
+
};
|
|
5868
|
+
export type DeletedEnvironmentSubscriptionVariables = Exact<{
|
|
5869
|
+
[key: string]: never;
|
|
5870
|
+
}>;
|
|
5871
|
+
export type DeletedEnvironmentSubscription = {
|
|
5872
|
+
deletedEnvironment: {
|
|
5873
|
+
deletedEnvironmentId: string;
|
|
5874
|
+
snapshot: number;
|
|
5875
|
+
};
|
|
5876
|
+
};
|
|
5877
|
+
export type UpdatedEnvironmentContextSubscriptionVariables = Exact<{
|
|
5878
|
+
[key: string]: never;
|
|
5879
|
+
}>;
|
|
5880
|
+
export type UpdatedEnvironmentContextSubscription = {
|
|
5881
|
+
updatedEnvironmentContext: {
|
|
5882
|
+
environmentContext: {
|
|
5883
|
+
global?: {
|
|
5884
|
+
__typename: "Environment";
|
|
5885
|
+
id: string;
|
|
5886
|
+
name: string;
|
|
5887
|
+
version: number;
|
|
5888
|
+
variables: Array<{
|
|
5889
|
+
name: string;
|
|
5890
|
+
value: string;
|
|
5891
|
+
kind: EnvironmentVariableKind;
|
|
5892
|
+
}>;
|
|
5893
|
+
} | undefined | null;
|
|
5894
|
+
selected?: {
|
|
5895
|
+
__typename: "Environment";
|
|
5896
|
+
id: string;
|
|
5897
|
+
name: string;
|
|
5898
|
+
version: number;
|
|
5899
|
+
variables: Array<{
|
|
5900
|
+
name: string;
|
|
5901
|
+
value: string;
|
|
5902
|
+
kind: EnvironmentVariableKind;
|
|
5903
|
+
}>;
|
|
5904
|
+
} | undefined | null;
|
|
5905
|
+
};
|
|
5906
|
+
};
|
|
5907
|
+
};
|
|
5498
5908
|
export type AuthenticationRequestFullFragment = {
|
|
5499
5909
|
__typename: "AuthenticationRequest";
|
|
5500
5910
|
id: string;
|
|
@@ -5678,6 +6088,7 @@ export type ConnectionInfoFullFragment = {
|
|
|
5678
6088
|
host: string;
|
|
5679
6089
|
port: number;
|
|
5680
6090
|
isTLS: boolean;
|
|
6091
|
+
SNI?: string | undefined | null;
|
|
5681
6092
|
};
|
|
5682
6093
|
export type AuthenticationUserErrorFullFragment = {
|
|
5683
6094
|
__typename: "AuthenticationUserError";
|
|
@@ -5802,6 +6213,10 @@ type UserErrorFull_NameTakenUserError_Fragment = {
|
|
|
5802
6213
|
__typename: "NameTakenUserError";
|
|
5803
6214
|
code: string;
|
|
5804
6215
|
};
|
|
6216
|
+
type UserErrorFull_NewerVersionUserError_Fragment = {
|
|
6217
|
+
__typename: "NewerVersionUserError";
|
|
6218
|
+
code: string;
|
|
6219
|
+
};
|
|
5805
6220
|
type UserErrorFull_OtherUserError_Fragment = {
|
|
5806
6221
|
__typename: "OtherUserError";
|
|
5807
6222
|
code: string;
|
|
@@ -5846,7 +6261,7 @@ type UserErrorFull_WorkflowUserError_Fragment = {
|
|
|
5846
6261
|
__typename: "WorkflowUserError";
|
|
5847
6262
|
code: string;
|
|
5848
6263
|
};
|
|
5849
|
-
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_CertificateUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectUserError_Fragment | UserErrorFull_ReadOnlyUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
6264
|
+
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_CertificateUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_NewerVersionUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectUserError_Fragment | UserErrorFull_ReadOnlyUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
5850
6265
|
export type InvalidHttpqlUserErrorFullFragment = {
|
|
5851
6266
|
__typename: "InvalidHTTPQLUserError";
|
|
5852
6267
|
query: string;
|
|
@@ -5872,6 +6287,11 @@ export type CertificateUserErrorFullFragment = {
|
|
|
5872
6287
|
code: string;
|
|
5873
6288
|
certificateReason: CertificateErrorReason;
|
|
5874
6289
|
};
|
|
6290
|
+
export type NewerVersionUserErrorFullFragment = {
|
|
6291
|
+
__typename: "NewerVersionUserError";
|
|
6292
|
+
version: number;
|
|
6293
|
+
code: string;
|
|
6294
|
+
};
|
|
5875
6295
|
export type DataExportMetaFragment = {
|
|
5876
6296
|
__typename: "DataExport";
|
|
5877
6297
|
id: string;
|
|
@@ -5983,6 +6403,7 @@ export type FindingMetaFragment = {
|
|
|
5983
6403
|
method: string;
|
|
5984
6404
|
edited: boolean;
|
|
5985
6405
|
isTls: boolean;
|
|
6406
|
+
sni?: string | undefined | null;
|
|
5986
6407
|
length: number;
|
|
5987
6408
|
alteration: Alteration;
|
|
5988
6409
|
fileExtension?: string | undefined | null;
|
|
@@ -6025,6 +6446,7 @@ export type FindingEdgeMetaFragment = {
|
|
|
6025
6446
|
method: string;
|
|
6026
6447
|
edited: boolean;
|
|
6027
6448
|
isTls: boolean;
|
|
6449
|
+
sni?: string | undefined | null;
|
|
6028
6450
|
length: number;
|
|
6029
6451
|
alteration: Alteration;
|
|
6030
6452
|
fileExtension?: string | undefined | null;
|
|
@@ -6067,6 +6489,7 @@ export type InterceptEntryFullFragment = {
|
|
|
6067
6489
|
method: string;
|
|
6068
6490
|
edited: boolean;
|
|
6069
6491
|
isTls: boolean;
|
|
6492
|
+
sni?: string | undefined | null;
|
|
6070
6493
|
length: number;
|
|
6071
6494
|
alteration: Alteration;
|
|
6072
6495
|
fileExtension?: string | undefined | null;
|
|
@@ -6098,6 +6521,7 @@ export type InterceptEntryFullFragment = {
|
|
|
6098
6521
|
method: string;
|
|
6099
6522
|
edited: boolean;
|
|
6100
6523
|
isTls: boolean;
|
|
6524
|
+
sni?: string | undefined | null;
|
|
6101
6525
|
length: number;
|
|
6102
6526
|
alteration: Alteration;
|
|
6103
6527
|
fileExtension?: string | undefined | null;
|
|
@@ -6134,6 +6558,7 @@ export type InterceptEntryMetaFragment = {
|
|
|
6134
6558
|
method: string;
|
|
6135
6559
|
edited: boolean;
|
|
6136
6560
|
isTls: boolean;
|
|
6561
|
+
sni?: string | undefined | null;
|
|
6137
6562
|
length: number;
|
|
6138
6563
|
alteration: Alteration;
|
|
6139
6564
|
fileExtension?: string | undefined | null;
|
|
@@ -6172,6 +6597,7 @@ export type InterceptEntryEdgeMetaFragment = {
|
|
|
6172
6597
|
method: string;
|
|
6173
6598
|
edited: boolean;
|
|
6174
6599
|
isTls: boolean;
|
|
6600
|
+
sni?: string | undefined | null;
|
|
6175
6601
|
length: number;
|
|
6176
6602
|
alteration: Alteration;
|
|
6177
6603
|
fileExtension?: string | undefined | null;
|
|
@@ -6222,6 +6648,7 @@ export type InterceptRequestMessageMetaFragment = {
|
|
|
6222
6648
|
method: string;
|
|
6223
6649
|
edited: boolean;
|
|
6224
6650
|
isTls: boolean;
|
|
6651
|
+
sni?: string | undefined | null;
|
|
6225
6652
|
length: number;
|
|
6226
6653
|
alteration: Alteration;
|
|
6227
6654
|
fileExtension?: string | undefined | null;
|
|
@@ -6267,6 +6694,7 @@ export type InterceptResponseMessageMetaFragment = {
|
|
|
6267
6694
|
method: string;
|
|
6268
6695
|
edited: boolean;
|
|
6269
6696
|
isTls: boolean;
|
|
6697
|
+
sni?: string | undefined | null;
|
|
6270
6698
|
length: number;
|
|
6271
6699
|
alteration: Alteration;
|
|
6272
6700
|
fileExtension?: string | undefined | null;
|
|
@@ -6302,6 +6730,7 @@ type InterceptMessageMeta_InterceptRequestMessage_Fragment = {
|
|
|
6302
6730
|
method: string;
|
|
6303
6731
|
edited: boolean;
|
|
6304
6732
|
isTls: boolean;
|
|
6733
|
+
sni?: string | undefined | null;
|
|
6305
6734
|
length: number;
|
|
6306
6735
|
alteration: Alteration;
|
|
6307
6736
|
fileExtension?: string | undefined | null;
|
|
@@ -6347,6 +6776,7 @@ type InterceptMessageMeta_InterceptResponseMessage_Fragment = {
|
|
|
6347
6776
|
method: string;
|
|
6348
6777
|
edited: boolean;
|
|
6349
6778
|
isTls: boolean;
|
|
6779
|
+
sni?: string | undefined | null;
|
|
6350
6780
|
length: number;
|
|
6351
6781
|
alteration: Alteration;
|
|
6352
6782
|
fileExtension?: string | undefined | null;
|
|
@@ -6788,6 +7218,7 @@ export type UpstreamProxyHttpFullFragment = {
|
|
|
6788
7218
|
host: string;
|
|
6789
7219
|
port: number;
|
|
6790
7220
|
isTLS: boolean;
|
|
7221
|
+
SNI?: string | undefined | null;
|
|
6791
7222
|
};
|
|
6792
7223
|
};
|
|
6793
7224
|
export type UpstreamProxySocksFullFragment = {
|
|
@@ -6808,6 +7239,7 @@ export type UpstreamProxySocksFullFragment = {
|
|
|
6808
7239
|
host: string;
|
|
6809
7240
|
port: number;
|
|
6810
7241
|
isTLS: boolean;
|
|
7242
|
+
SNI?: string | undefined | null;
|
|
6811
7243
|
};
|
|
6812
7244
|
};
|
|
6813
7245
|
export type UpstreamProxyAuthBasicFullFragment = {
|
|
@@ -7340,6 +7772,7 @@ export type CreateFindingMutation = {
|
|
|
7340
7772
|
method: string;
|
|
7341
7773
|
edited: boolean;
|
|
7342
7774
|
isTls: boolean;
|
|
7775
|
+
sni?: string | undefined | null;
|
|
7343
7776
|
length: number;
|
|
7344
7777
|
alteration: Alteration;
|
|
7345
7778
|
fileExtension?: string | undefined | null;
|
|
@@ -8249,6 +8682,7 @@ export type CreateUpstreamProxyHttpMutation = {
|
|
|
8249
8682
|
host: string;
|
|
8250
8683
|
port: number;
|
|
8251
8684
|
isTLS: boolean;
|
|
8685
|
+
SNI?: string | undefined | null;
|
|
8252
8686
|
};
|
|
8253
8687
|
} | undefined | null;
|
|
8254
8688
|
};
|
|
@@ -8276,6 +8710,7 @@ export type UpdateUpstreamProxyHttpMutation = {
|
|
|
8276
8710
|
host: string;
|
|
8277
8711
|
port: number;
|
|
8278
8712
|
isTLS: boolean;
|
|
8713
|
+
SNI?: string | undefined | null;
|
|
8279
8714
|
};
|
|
8280
8715
|
} | undefined | null;
|
|
8281
8716
|
};
|
|
@@ -8319,6 +8754,7 @@ export type RankUpstreamProxyHttpMutation = {
|
|
|
8319
8754
|
host: string;
|
|
8320
8755
|
port: number;
|
|
8321
8756
|
isTLS: boolean;
|
|
8757
|
+
SNI?: string | undefined | null;
|
|
8322
8758
|
};
|
|
8323
8759
|
} | undefined | null;
|
|
8324
8760
|
};
|
|
@@ -8346,6 +8782,7 @@ export type CreateUpstreamProxySocksMutation = {
|
|
|
8346
8782
|
host: string;
|
|
8347
8783
|
port: number;
|
|
8348
8784
|
isTLS: boolean;
|
|
8785
|
+
SNI?: string | undefined | null;
|
|
8349
8786
|
};
|
|
8350
8787
|
} | undefined | null;
|
|
8351
8788
|
};
|
|
@@ -8374,6 +8811,7 @@ export type UpdateUpstreamProxySocksMutation = {
|
|
|
8374
8811
|
host: string;
|
|
8375
8812
|
port: number;
|
|
8376
8813
|
isTLS: boolean;
|
|
8814
|
+
SNI?: string | undefined | null;
|
|
8377
8815
|
};
|
|
8378
8816
|
} | undefined | null;
|
|
8379
8817
|
};
|
|
@@ -8418,6 +8856,7 @@ export type RankUpstreamProxySocksMutation = {
|
|
|
8418
8856
|
host: string;
|
|
8419
8857
|
port: number;
|
|
8420
8858
|
isTLS: boolean;
|
|
8859
|
+
SNI?: string | undefined | null;
|
|
8421
8860
|
};
|
|
8422
8861
|
} | undefined | null;
|
|
8423
8862
|
};
|
|
@@ -8913,6 +9352,7 @@ export type GetFindingsBeforeQuery = {
|
|
|
8913
9352
|
method: string;
|
|
8914
9353
|
edited: boolean;
|
|
8915
9354
|
isTls: boolean;
|
|
9355
|
+
sni?: string | undefined | null;
|
|
8916
9356
|
length: number;
|
|
8917
9357
|
alteration: Alteration;
|
|
8918
9358
|
fileExtension?: string | undefined | null;
|
|
@@ -8974,6 +9414,7 @@ export type GetFindingsAfterQuery = {
|
|
|
8974
9414
|
method: string;
|
|
8975
9415
|
edited: boolean;
|
|
8976
9416
|
isTls: boolean;
|
|
9417
|
+
sni?: string | undefined | null;
|
|
8977
9418
|
length: number;
|
|
8978
9419
|
alteration: Alteration;
|
|
8979
9420
|
fileExtension?: string | undefined | null;
|
|
@@ -9035,6 +9476,7 @@ export type GetFindingsByOffsetQuery = {
|
|
|
9035
9476
|
method: string;
|
|
9036
9477
|
edited: boolean;
|
|
9037
9478
|
isTls: boolean;
|
|
9479
|
+
sni?: string | undefined | null;
|
|
9038
9480
|
length: number;
|
|
9039
9481
|
alteration: Alteration;
|
|
9040
9482
|
fileExtension?: string | undefined | null;
|
|
@@ -9113,6 +9555,7 @@ export type InterceptEntriesQuery = {
|
|
|
9113
9555
|
method: string;
|
|
9114
9556
|
edited: boolean;
|
|
9115
9557
|
isTls: boolean;
|
|
9558
|
+
sni?: string | undefined | null;
|
|
9116
9559
|
length: number;
|
|
9117
9560
|
alteration: Alteration;
|
|
9118
9561
|
fileExtension?: string | undefined | null;
|
|
@@ -9171,6 +9614,7 @@ export type InterceptEntriesByOffsetQuery = {
|
|
|
9171
9614
|
method: string;
|
|
9172
9615
|
edited: boolean;
|
|
9173
9616
|
isTls: boolean;
|
|
9617
|
+
sni?: string | undefined | null;
|
|
9174
9618
|
length: number;
|
|
9175
9619
|
alteration: Alteration;
|
|
9176
9620
|
fileExtension?: string | undefined | null;
|
|
@@ -9220,6 +9664,7 @@ export type InterceptEntryQuery = {
|
|
|
9220
9664
|
method: string;
|
|
9221
9665
|
edited: boolean;
|
|
9222
9666
|
isTls: boolean;
|
|
9667
|
+
sni?: string | undefined | null;
|
|
9223
9668
|
length: number;
|
|
9224
9669
|
alteration: Alteration;
|
|
9225
9670
|
fileExtension?: string | undefined | null;
|
|
@@ -9251,6 +9696,7 @@ export type InterceptEntryQuery = {
|
|
|
9251
9696
|
method: string;
|
|
9252
9697
|
edited: boolean;
|
|
9253
9698
|
isTls: boolean;
|
|
9699
|
+
sni?: string | undefined | null;
|
|
9254
9700
|
length: number;
|
|
9255
9701
|
alteration: Alteration;
|
|
9256
9702
|
fileExtension?: string | undefined | null;
|
|
@@ -9320,6 +9766,7 @@ export type InterceptRequestMessagesQuery = {
|
|
|
9320
9766
|
method: string;
|
|
9321
9767
|
edited: boolean;
|
|
9322
9768
|
isTls: boolean;
|
|
9769
|
+
sni?: string | undefined | null;
|
|
9323
9770
|
length: number;
|
|
9324
9771
|
alteration: Alteration;
|
|
9325
9772
|
fileExtension?: string | undefined | null;
|
|
@@ -9364,6 +9811,7 @@ export type InterceptRequestMessagesQuery = {
|
|
|
9364
9811
|
method: string;
|
|
9365
9812
|
edited: boolean;
|
|
9366
9813
|
isTls: boolean;
|
|
9814
|
+
sni?: string | undefined | null;
|
|
9367
9815
|
length: number;
|
|
9368
9816
|
alteration: Alteration;
|
|
9369
9817
|
fileExtension?: string | undefined | null;
|
|
@@ -9406,6 +9854,7 @@ export type InterceptResponseMessagesQuery = {
|
|
|
9406
9854
|
method: string;
|
|
9407
9855
|
edited: boolean;
|
|
9408
9856
|
isTls: boolean;
|
|
9857
|
+
sni?: string | undefined | null;
|
|
9409
9858
|
length: number;
|
|
9410
9859
|
alteration: Alteration;
|
|
9411
9860
|
fileExtension?: string | undefined | null;
|
|
@@ -9450,6 +9899,7 @@ export type InterceptResponseMessagesQuery = {
|
|
|
9450
9899
|
method: string;
|
|
9451
9900
|
edited: boolean;
|
|
9452
9901
|
isTls: boolean;
|
|
9902
|
+
sni?: string | undefined | null;
|
|
9453
9903
|
length: number;
|
|
9454
9904
|
alteration: Alteration;
|
|
9455
9905
|
fileExtension?: string | undefined | null;
|
|
@@ -9772,6 +10222,7 @@ export type SitemapEntryRequestsQuery = {
|
|
|
9772
10222
|
method: string;
|
|
9773
10223
|
edited: boolean;
|
|
9774
10224
|
isTls: boolean;
|
|
10225
|
+
sni?: string | undefined | null;
|
|
9775
10226
|
length: number;
|
|
9776
10227
|
alteration: Alteration;
|
|
9777
10228
|
fileExtension?: string | undefined | null;
|
|
@@ -10091,6 +10542,7 @@ export type GetTasksQuery = {
|
|
|
10091
10542
|
host: string;
|
|
10092
10543
|
port: number;
|
|
10093
10544
|
isTLS: boolean;
|
|
10545
|
+
SNI?: string | undefined | null;
|
|
10094
10546
|
};
|
|
10095
10547
|
session: {
|
|
10096
10548
|
id: string;
|
|
@@ -10105,6 +10557,7 @@ export type GetTasksQuery = {
|
|
|
10105
10557
|
method: string;
|
|
10106
10558
|
edited: boolean;
|
|
10107
10559
|
isTls: boolean;
|
|
10560
|
+
sni?: string | undefined | null;
|
|
10108
10561
|
length: number;
|
|
10109
10562
|
alteration: Alteration;
|
|
10110
10563
|
fileExtension?: string | undefined | null;
|
|
@@ -10163,6 +10616,7 @@ export type UpstreamProxiesQuery = {
|
|
|
10163
10616
|
host: string;
|
|
10164
10617
|
port: number;
|
|
10165
10618
|
isTLS: boolean;
|
|
10619
|
+
SNI?: string | undefined | null;
|
|
10166
10620
|
};
|
|
10167
10621
|
}>;
|
|
10168
10622
|
upstreamProxiesSocks: Array<{
|
|
@@ -10183,6 +10637,7 @@ export type UpstreamProxiesQuery = {
|
|
|
10183
10637
|
host: string;
|
|
10184
10638
|
port: number;
|
|
10185
10639
|
isTLS: boolean;
|
|
10640
|
+
SNI?: string | undefined | null;
|
|
10186
10641
|
};
|
|
10187
10642
|
}>;
|
|
10188
10643
|
};
|
|
@@ -10274,6 +10729,7 @@ export type ReplayEntryMetaFragment = {
|
|
|
10274
10729
|
host: string;
|
|
10275
10730
|
port: number;
|
|
10276
10731
|
isTLS: boolean;
|
|
10732
|
+
SNI?: string | undefined | null;
|
|
10277
10733
|
};
|
|
10278
10734
|
session: {
|
|
10279
10735
|
id: string;
|
|
@@ -10288,6 +10744,7 @@ export type ReplayEntryMetaFragment = {
|
|
|
10288
10744
|
method: string;
|
|
10289
10745
|
edited: boolean;
|
|
10290
10746
|
isTls: boolean;
|
|
10747
|
+
sni?: string | undefined | null;
|
|
10291
10748
|
length: number;
|
|
10292
10749
|
alteration: Alteration;
|
|
10293
10750
|
fileExtension?: string | undefined | null;
|
|
@@ -10329,6 +10786,9 @@ export type ReplayEntryFullFragment = {
|
|
|
10329
10786
|
preprocessors: Array<{
|
|
10330
10787
|
__typename: "ReplayPreprocessor";
|
|
10331
10788
|
options: {
|
|
10789
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
10790
|
+
variableName: string;
|
|
10791
|
+
} | {
|
|
10332
10792
|
__typename: "ReplayPrefixPreprocessor";
|
|
10333
10793
|
value: string;
|
|
10334
10794
|
} | {
|
|
@@ -10350,6 +10810,7 @@ export type ReplayEntryFullFragment = {
|
|
|
10350
10810
|
host: string;
|
|
10351
10811
|
port: number;
|
|
10352
10812
|
isTLS: boolean;
|
|
10813
|
+
SNI?: string | undefined | null;
|
|
10353
10814
|
};
|
|
10354
10815
|
session: {
|
|
10355
10816
|
id: string;
|
|
@@ -10364,6 +10825,7 @@ export type ReplayEntryFullFragment = {
|
|
|
10364
10825
|
method: string;
|
|
10365
10826
|
edited: boolean;
|
|
10366
10827
|
isTls: boolean;
|
|
10828
|
+
sni?: string | undefined | null;
|
|
10367
10829
|
length: number;
|
|
10368
10830
|
alteration: Alteration;
|
|
10369
10831
|
fileExtension?: string | undefined | null;
|
|
@@ -10399,6 +10861,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
10399
10861
|
host: string;
|
|
10400
10862
|
port: number;
|
|
10401
10863
|
isTLS: boolean;
|
|
10864
|
+
SNI?: string | undefined | null;
|
|
10402
10865
|
};
|
|
10403
10866
|
session: {
|
|
10404
10867
|
id: string;
|
|
@@ -10413,6 +10876,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
10413
10876
|
method: string;
|
|
10414
10877
|
edited: boolean;
|
|
10415
10878
|
isTls: boolean;
|
|
10879
|
+
sni?: string | undefined | null;
|
|
10416
10880
|
length: number;
|
|
10417
10881
|
alteration: Alteration;
|
|
10418
10882
|
fileExtension?: string | undefined | null;
|
|
@@ -10448,6 +10912,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
10448
10912
|
host: string;
|
|
10449
10913
|
port: number;
|
|
10450
10914
|
isTLS: boolean;
|
|
10915
|
+
SNI?: string | undefined | null;
|
|
10451
10916
|
};
|
|
10452
10917
|
session: {
|
|
10453
10918
|
id: string;
|
|
@@ -10462,6 +10927,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
10462
10927
|
method: string;
|
|
10463
10928
|
edited: boolean;
|
|
10464
10929
|
isTls: boolean;
|
|
10930
|
+
sni?: string | undefined | null;
|
|
10465
10931
|
length: number;
|
|
10466
10932
|
alteration: Alteration;
|
|
10467
10933
|
fileExtension?: string | undefined | null;
|
|
@@ -10515,6 +10981,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
10515
10981
|
host: string;
|
|
10516
10982
|
port: number;
|
|
10517
10983
|
isTLS: boolean;
|
|
10984
|
+
SNI?: string | undefined | null;
|
|
10518
10985
|
};
|
|
10519
10986
|
session: {
|
|
10520
10987
|
id: string;
|
|
@@ -10529,6 +10996,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
10529
10996
|
method: string;
|
|
10530
10997
|
edited: boolean;
|
|
10531
10998
|
isTls: boolean;
|
|
10999
|
+
sni?: string | undefined | null;
|
|
10532
11000
|
length: number;
|
|
10533
11001
|
alteration: Alteration;
|
|
10534
11002
|
fileExtension?: string | undefined | null;
|
|
@@ -10564,6 +11032,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
10564
11032
|
host: string;
|
|
10565
11033
|
port: number;
|
|
10566
11034
|
isTLS: boolean;
|
|
11035
|
+
SNI?: string | undefined | null;
|
|
10567
11036
|
};
|
|
10568
11037
|
session: {
|
|
10569
11038
|
id: string;
|
|
@@ -10578,6 +11047,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
10578
11047
|
method: string;
|
|
10579
11048
|
edited: boolean;
|
|
10580
11049
|
isTls: boolean;
|
|
11050
|
+
sni?: string | undefined | null;
|
|
10581
11051
|
length: number;
|
|
10582
11052
|
alteration: Alteration;
|
|
10583
11053
|
fileExtension?: string | undefined | null;
|
|
@@ -10628,6 +11098,7 @@ export type ReplayTaskMetaFragment = {
|
|
|
10628
11098
|
host: string;
|
|
10629
11099
|
port: number;
|
|
10630
11100
|
isTLS: boolean;
|
|
11101
|
+
SNI?: string | undefined | null;
|
|
10631
11102
|
};
|
|
10632
11103
|
session: {
|
|
10633
11104
|
id: string;
|
|
@@ -10642,6 +11113,7 @@ export type ReplayTaskMetaFragment = {
|
|
|
10642
11113
|
method: string;
|
|
10643
11114
|
edited: boolean;
|
|
10644
11115
|
isTls: boolean;
|
|
11116
|
+
sni?: string | undefined | null;
|
|
10645
11117
|
length: number;
|
|
10646
11118
|
alteration: Alteration;
|
|
10647
11119
|
fileExtension?: string | undefined | null;
|
|
@@ -10682,9 +11154,16 @@ export type ReplayWorkflowPreprocessorFullFragment = {
|
|
|
10682
11154
|
__typename: "ReplayWorkflowPreprocessor";
|
|
10683
11155
|
id: string;
|
|
10684
11156
|
};
|
|
11157
|
+
export type ReplayEnvironmentPreprocessorFullFragment = {
|
|
11158
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
11159
|
+
variableName: string;
|
|
11160
|
+
};
|
|
10685
11161
|
export type ReplayPreprocessorFullFragment = {
|
|
10686
11162
|
__typename: "ReplayPreprocessor";
|
|
10687
11163
|
options: {
|
|
11164
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
11165
|
+
variableName: string;
|
|
11166
|
+
} | {
|
|
10688
11167
|
__typename: "ReplayPrefixPreprocessor";
|
|
10689
11168
|
value: string;
|
|
10690
11169
|
} | {
|
|
@@ -10712,6 +11191,9 @@ export type ReplayPlaceholderFullFragment = {
|
|
|
10712
11191
|
preprocessors: Array<{
|
|
10713
11192
|
__typename: "ReplayPreprocessor";
|
|
10714
11193
|
options: {
|
|
11194
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
11195
|
+
variableName: string;
|
|
11196
|
+
} | {
|
|
10715
11197
|
__typename: "ReplayPrefixPreprocessor";
|
|
10716
11198
|
value: string;
|
|
10717
11199
|
} | {
|
|
@@ -10750,6 +11232,9 @@ export type ReplayEntryQuery = {
|
|
|
10750
11232
|
preprocessors: Array<{
|
|
10751
11233
|
__typename: "ReplayPreprocessor";
|
|
10752
11234
|
options: {
|
|
11235
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
11236
|
+
variableName: string;
|
|
11237
|
+
} | {
|
|
10753
11238
|
__typename: "ReplayPrefixPreprocessor";
|
|
10754
11239
|
value: string;
|
|
10755
11240
|
} | {
|
|
@@ -10771,6 +11256,7 @@ export type ReplayEntryQuery = {
|
|
|
10771
11256
|
host: string;
|
|
10772
11257
|
port: number;
|
|
10773
11258
|
isTLS: boolean;
|
|
11259
|
+
SNI?: string | undefined | null;
|
|
10774
11260
|
};
|
|
10775
11261
|
session: {
|
|
10776
11262
|
id: string;
|
|
@@ -10785,6 +11271,7 @@ export type ReplayEntryQuery = {
|
|
|
10785
11271
|
method: string;
|
|
10786
11272
|
edited: boolean;
|
|
10787
11273
|
isTls: boolean;
|
|
11274
|
+
sni?: string | undefined | null;
|
|
10788
11275
|
length: number;
|
|
10789
11276
|
alteration: Alteration;
|
|
10790
11277
|
fileExtension?: string | undefined | null;
|
|
@@ -10825,6 +11312,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
10825
11312
|
host: string;
|
|
10826
11313
|
port: number;
|
|
10827
11314
|
isTLS: boolean;
|
|
11315
|
+
SNI?: string | undefined | null;
|
|
10828
11316
|
};
|
|
10829
11317
|
session: {
|
|
10830
11318
|
id: string;
|
|
@@ -10839,6 +11327,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
10839
11327
|
method: string;
|
|
10840
11328
|
edited: boolean;
|
|
10841
11329
|
isTls: boolean;
|
|
11330
|
+
sni?: string | undefined | null;
|
|
10842
11331
|
length: number;
|
|
10843
11332
|
alteration: Alteration;
|
|
10844
11333
|
fileExtension?: string | undefined | null;
|
|
@@ -10874,6 +11363,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
10874
11363
|
host: string;
|
|
10875
11364
|
port: number;
|
|
10876
11365
|
isTLS: boolean;
|
|
11366
|
+
SNI?: string | undefined | null;
|
|
10877
11367
|
};
|
|
10878
11368
|
session: {
|
|
10879
11369
|
id: string;
|
|
@@ -10888,6 +11378,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
10888
11378
|
method: string;
|
|
10889
11379
|
edited: boolean;
|
|
10890
11380
|
isTls: boolean;
|
|
11381
|
+
sni?: string | undefined | null;
|
|
10891
11382
|
length: number;
|
|
10892
11383
|
alteration: Alteration;
|
|
10893
11384
|
fileExtension?: string | undefined | null;
|
|
@@ -10945,6 +11436,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
10945
11436
|
host: string;
|
|
10946
11437
|
port: number;
|
|
10947
11438
|
isTLS: boolean;
|
|
11439
|
+
SNI?: string | undefined | null;
|
|
10948
11440
|
};
|
|
10949
11441
|
session: {
|
|
10950
11442
|
id: string;
|
|
@@ -10959,6 +11451,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
10959
11451
|
method: string;
|
|
10960
11452
|
edited: boolean;
|
|
10961
11453
|
isTls: boolean;
|
|
11454
|
+
sni?: string | undefined | null;
|
|
10962
11455
|
length: number;
|
|
10963
11456
|
alteration: Alteration;
|
|
10964
11457
|
fileExtension?: string | undefined | null;
|
|
@@ -11003,6 +11496,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
11003
11496
|
host: string;
|
|
11004
11497
|
port: number;
|
|
11005
11498
|
isTLS: boolean;
|
|
11499
|
+
SNI?: string | undefined | null;
|
|
11006
11500
|
};
|
|
11007
11501
|
session: {
|
|
11008
11502
|
id: string;
|
|
@@ -11017,6 +11511,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
11017
11511
|
method: string;
|
|
11018
11512
|
edited: boolean;
|
|
11019
11513
|
isTls: boolean;
|
|
11514
|
+
sni?: string | undefined | null;
|
|
11020
11515
|
length: number;
|
|
11021
11516
|
alteration: Alteration;
|
|
11022
11517
|
fileExtension?: string | undefined | null;
|
|
@@ -11049,6 +11544,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
11049
11544
|
host: string;
|
|
11050
11545
|
port: number;
|
|
11051
11546
|
isTLS: boolean;
|
|
11547
|
+
SNI?: string | undefined | null;
|
|
11052
11548
|
};
|
|
11053
11549
|
session: {
|
|
11054
11550
|
id: string;
|
|
@@ -11063,6 +11559,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
11063
11559
|
method: string;
|
|
11064
11560
|
edited: boolean;
|
|
11065
11561
|
isTls: boolean;
|
|
11562
|
+
sni?: string | undefined | null;
|
|
11066
11563
|
length: number;
|
|
11067
11564
|
alteration: Alteration;
|
|
11068
11565
|
fileExtension?: string | undefined | null;
|
|
@@ -11104,6 +11601,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
11104
11601
|
host: string;
|
|
11105
11602
|
port: number;
|
|
11106
11603
|
isTLS: boolean;
|
|
11604
|
+
SNI?: string | undefined | null;
|
|
11107
11605
|
};
|
|
11108
11606
|
session: {
|
|
11109
11607
|
id: string;
|
|
@@ -11118,6 +11616,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
11118
11616
|
method: string;
|
|
11119
11617
|
edited: boolean;
|
|
11120
11618
|
isTls: boolean;
|
|
11619
|
+
sni?: string | undefined | null;
|
|
11121
11620
|
length: number;
|
|
11122
11621
|
alteration: Alteration;
|
|
11123
11622
|
fileExtension?: string | undefined | null;
|
|
@@ -11152,6 +11651,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
11152
11651
|
host: string;
|
|
11153
11652
|
port: number;
|
|
11154
11653
|
isTLS: boolean;
|
|
11654
|
+
SNI?: string | undefined | null;
|
|
11155
11655
|
};
|
|
11156
11656
|
session: {
|
|
11157
11657
|
id: string;
|
|
@@ -11166,6 +11666,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
11166
11666
|
method: string;
|
|
11167
11667
|
edited: boolean;
|
|
11168
11668
|
isTls: boolean;
|
|
11669
|
+
sni?: string | undefined | null;
|
|
11169
11670
|
length: number;
|
|
11170
11671
|
alteration: Alteration;
|
|
11171
11672
|
fileExtension?: string | undefined | null;
|
|
@@ -11227,6 +11728,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
11227
11728
|
host: string;
|
|
11228
11729
|
port: number;
|
|
11229
11730
|
isTLS: boolean;
|
|
11731
|
+
SNI?: string | undefined | null;
|
|
11230
11732
|
};
|
|
11231
11733
|
session: {
|
|
11232
11734
|
id: string;
|
|
@@ -11241,6 +11743,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
11241
11743
|
method: string;
|
|
11242
11744
|
edited: boolean;
|
|
11243
11745
|
isTls: boolean;
|
|
11746
|
+
sni?: string | undefined | null;
|
|
11244
11747
|
length: number;
|
|
11245
11748
|
alteration: Alteration;
|
|
11246
11749
|
fileExtension?: string | undefined | null;
|
|
@@ -11276,6 +11779,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
11276
11779
|
host: string;
|
|
11277
11780
|
port: number;
|
|
11278
11781
|
isTLS: boolean;
|
|
11782
|
+
SNI?: string | undefined | null;
|
|
11279
11783
|
};
|
|
11280
11784
|
session: {
|
|
11281
11785
|
id: string;
|
|
@@ -11290,6 +11794,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
11290
11794
|
method: string;
|
|
11291
11795
|
edited: boolean;
|
|
11292
11796
|
isTls: boolean;
|
|
11797
|
+
sni?: string | undefined | null;
|
|
11293
11798
|
length: number;
|
|
11294
11799
|
alteration: Alteration;
|
|
11295
11800
|
fileExtension?: string | undefined | null;
|
|
@@ -11353,6 +11858,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
11353
11858
|
host: string;
|
|
11354
11859
|
port: number;
|
|
11355
11860
|
isTLS: boolean;
|
|
11861
|
+
SNI?: string | undefined | null;
|
|
11356
11862
|
};
|
|
11357
11863
|
session: {
|
|
11358
11864
|
id: string;
|
|
@@ -11367,6 +11873,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
11367
11873
|
method: string;
|
|
11368
11874
|
edited: boolean;
|
|
11369
11875
|
isTls: boolean;
|
|
11876
|
+
sni?: string | undefined | null;
|
|
11370
11877
|
length: number;
|
|
11371
11878
|
alteration: Alteration;
|
|
11372
11879
|
fileExtension?: string | undefined | null;
|
|
@@ -11402,6 +11909,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
11402
11909
|
host: string;
|
|
11403
11910
|
port: number;
|
|
11404
11911
|
isTLS: boolean;
|
|
11912
|
+
SNI?: string | undefined | null;
|
|
11405
11913
|
};
|
|
11406
11914
|
session: {
|
|
11407
11915
|
id: string;
|
|
@@ -11416,6 +11924,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
11416
11924
|
method: string;
|
|
11417
11925
|
edited: boolean;
|
|
11418
11926
|
isTls: boolean;
|
|
11927
|
+
sni?: string | undefined | null;
|
|
11419
11928
|
length: number;
|
|
11420
11929
|
alteration: Alteration;
|
|
11421
11930
|
fileExtension?: string | undefined | null;
|
|
@@ -11477,6 +11986,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
11477
11986
|
host: string;
|
|
11478
11987
|
port: number;
|
|
11479
11988
|
isTLS: boolean;
|
|
11989
|
+
SNI?: string | undefined | null;
|
|
11480
11990
|
};
|
|
11481
11991
|
session: {
|
|
11482
11992
|
id: string;
|
|
@@ -11491,6 +12001,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
11491
12001
|
method: string;
|
|
11492
12002
|
edited: boolean;
|
|
11493
12003
|
isTls: boolean;
|
|
12004
|
+
sni?: string | undefined | null;
|
|
11494
12005
|
length: number;
|
|
11495
12006
|
alteration: Alteration;
|
|
11496
12007
|
fileExtension?: string | undefined | null;
|
|
@@ -11526,6 +12037,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
11526
12037
|
host: string;
|
|
11527
12038
|
port: number;
|
|
11528
12039
|
isTLS: boolean;
|
|
12040
|
+
SNI?: string | undefined | null;
|
|
11529
12041
|
};
|
|
11530
12042
|
session: {
|
|
11531
12043
|
id: string;
|
|
@@ -11540,6 +12052,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
11540
12052
|
method: string;
|
|
11541
12053
|
edited: boolean;
|
|
11542
12054
|
isTls: boolean;
|
|
12055
|
+
sni?: string | undefined | null;
|
|
11543
12056
|
length: number;
|
|
11544
12057
|
alteration: Alteration;
|
|
11545
12058
|
fileExtension?: string | undefined | null;
|
|
@@ -11606,6 +12119,7 @@ export type RenameReplaySessionMutation = {
|
|
|
11606
12119
|
host: string;
|
|
11607
12120
|
port: number;
|
|
11608
12121
|
isTLS: boolean;
|
|
12122
|
+
SNI?: string | undefined | null;
|
|
11609
12123
|
};
|
|
11610
12124
|
session: {
|
|
11611
12125
|
id: string;
|
|
@@ -11620,6 +12134,7 @@ export type RenameReplaySessionMutation = {
|
|
|
11620
12134
|
method: string;
|
|
11621
12135
|
edited: boolean;
|
|
11622
12136
|
isTls: boolean;
|
|
12137
|
+
sni?: string | undefined | null;
|
|
11623
12138
|
length: number;
|
|
11624
12139
|
alteration: Alteration;
|
|
11625
12140
|
fileExtension?: string | undefined | null;
|
|
@@ -11655,6 +12170,7 @@ export type RenameReplaySessionMutation = {
|
|
|
11655
12170
|
host: string;
|
|
11656
12171
|
port: number;
|
|
11657
12172
|
isTLS: boolean;
|
|
12173
|
+
SNI?: string | undefined | null;
|
|
11658
12174
|
};
|
|
11659
12175
|
session: {
|
|
11660
12176
|
id: string;
|
|
@@ -11669,6 +12185,7 @@ export type RenameReplaySessionMutation = {
|
|
|
11669
12185
|
method: string;
|
|
11670
12186
|
edited: boolean;
|
|
11671
12187
|
isTls: boolean;
|
|
12188
|
+
sni?: string | undefined | null;
|
|
11672
12189
|
length: number;
|
|
11673
12190
|
alteration: Alteration;
|
|
11674
12191
|
fileExtension?: string | undefined | null;
|
|
@@ -11726,6 +12243,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
11726
12243
|
host: string;
|
|
11727
12244
|
port: number;
|
|
11728
12245
|
isTLS: boolean;
|
|
12246
|
+
SNI?: string | undefined | null;
|
|
11729
12247
|
};
|
|
11730
12248
|
session: {
|
|
11731
12249
|
id: string;
|
|
@@ -11740,6 +12258,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
11740
12258
|
method: string;
|
|
11741
12259
|
edited: boolean;
|
|
11742
12260
|
isTls: boolean;
|
|
12261
|
+
sni?: string | undefined | null;
|
|
11743
12262
|
length: number;
|
|
11744
12263
|
alteration: Alteration;
|
|
11745
12264
|
fileExtension?: string | undefined | null;
|
|
@@ -11775,6 +12294,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
11775
12294
|
host: string;
|
|
11776
12295
|
port: number;
|
|
11777
12296
|
isTLS: boolean;
|
|
12297
|
+
SNI?: string | undefined | null;
|
|
11778
12298
|
};
|
|
11779
12299
|
session: {
|
|
11780
12300
|
id: string;
|
|
@@ -11789,6 +12309,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
11789
12309
|
method: string;
|
|
11790
12310
|
edited: boolean;
|
|
11791
12311
|
isTls: boolean;
|
|
12312
|
+
sni?: string | undefined | null;
|
|
11792
12313
|
length: number;
|
|
11793
12314
|
alteration: Alteration;
|
|
11794
12315
|
fileExtension?: string | undefined | null;
|
|
@@ -11861,6 +12382,7 @@ export type CreateReplaySessionMutation = {
|
|
|
11861
12382
|
host: string;
|
|
11862
12383
|
port: number;
|
|
11863
12384
|
isTLS: boolean;
|
|
12385
|
+
SNI?: string | undefined | null;
|
|
11864
12386
|
};
|
|
11865
12387
|
session: {
|
|
11866
12388
|
id: string;
|
|
@@ -11875,6 +12397,7 @@ export type CreateReplaySessionMutation = {
|
|
|
11875
12397
|
method: string;
|
|
11876
12398
|
edited: boolean;
|
|
11877
12399
|
isTls: boolean;
|
|
12400
|
+
sni?: string | undefined | null;
|
|
11878
12401
|
length: number;
|
|
11879
12402
|
alteration: Alteration;
|
|
11880
12403
|
fileExtension?: string | undefined | null;
|
|
@@ -11910,6 +12433,7 @@ export type CreateReplaySessionMutation = {
|
|
|
11910
12433
|
host: string;
|
|
11911
12434
|
port: number;
|
|
11912
12435
|
isTLS: boolean;
|
|
12436
|
+
SNI?: string | undefined | null;
|
|
11913
12437
|
};
|
|
11914
12438
|
session: {
|
|
11915
12439
|
id: string;
|
|
@@ -11924,6 +12448,7 @@ export type CreateReplaySessionMutation = {
|
|
|
11924
12448
|
method: string;
|
|
11925
12449
|
edited: boolean;
|
|
11926
12450
|
isTls: boolean;
|
|
12451
|
+
sni?: string | undefined | null;
|
|
11927
12452
|
length: number;
|
|
11928
12453
|
alteration: Alteration;
|
|
11929
12454
|
fileExtension?: string | undefined | null;
|
|
@@ -11970,6 +12495,7 @@ export type CreateReplaySessionMutation = {
|
|
|
11970
12495
|
host: string;
|
|
11971
12496
|
port: number;
|
|
11972
12497
|
isTLS: boolean;
|
|
12498
|
+
SNI?: string | undefined | null;
|
|
11973
12499
|
};
|
|
11974
12500
|
session: {
|
|
11975
12501
|
id: string;
|
|
@@ -11984,6 +12510,7 @@ export type CreateReplaySessionMutation = {
|
|
|
11984
12510
|
method: string;
|
|
11985
12511
|
edited: boolean;
|
|
11986
12512
|
isTls: boolean;
|
|
12513
|
+
sni?: string | undefined | null;
|
|
11987
12514
|
length: number;
|
|
11988
12515
|
alteration: Alteration;
|
|
11989
12516
|
fileExtension?: string | undefined | null;
|
|
@@ -12016,6 +12543,7 @@ export type CreateReplaySessionMutation = {
|
|
|
12016
12543
|
host: string;
|
|
12017
12544
|
port: number;
|
|
12018
12545
|
isTLS: boolean;
|
|
12546
|
+
SNI?: string | undefined | null;
|
|
12019
12547
|
};
|
|
12020
12548
|
session: {
|
|
12021
12549
|
id: string;
|
|
@@ -12030,6 +12558,7 @@ export type CreateReplaySessionMutation = {
|
|
|
12030
12558
|
method: string;
|
|
12031
12559
|
edited: boolean;
|
|
12032
12560
|
isTls: boolean;
|
|
12561
|
+
sni?: string | undefined | null;
|
|
12033
12562
|
length: number;
|
|
12034
12563
|
alteration: Alteration;
|
|
12035
12564
|
fileExtension?: string | undefined | null;
|
|
@@ -12087,6 +12616,7 @@ export type MoveReplaySessionMutation = {
|
|
|
12087
12616
|
host: string;
|
|
12088
12617
|
port: number;
|
|
12089
12618
|
isTLS: boolean;
|
|
12619
|
+
SNI?: string | undefined | null;
|
|
12090
12620
|
};
|
|
12091
12621
|
session: {
|
|
12092
12622
|
id: string;
|
|
@@ -12101,6 +12631,7 @@ export type MoveReplaySessionMutation = {
|
|
|
12101
12631
|
method: string;
|
|
12102
12632
|
edited: boolean;
|
|
12103
12633
|
isTls: boolean;
|
|
12634
|
+
sni?: string | undefined | null;
|
|
12104
12635
|
length: number;
|
|
12105
12636
|
alteration: Alteration;
|
|
12106
12637
|
fileExtension?: string | undefined | null;
|
|
@@ -12136,6 +12667,7 @@ export type MoveReplaySessionMutation = {
|
|
|
12136
12667
|
host: string;
|
|
12137
12668
|
port: number;
|
|
12138
12669
|
isTLS: boolean;
|
|
12670
|
+
SNI?: string | undefined | null;
|
|
12139
12671
|
};
|
|
12140
12672
|
session: {
|
|
12141
12673
|
id: string;
|
|
@@ -12150,6 +12682,7 @@ export type MoveReplaySessionMutation = {
|
|
|
12150
12682
|
method: string;
|
|
12151
12683
|
edited: boolean;
|
|
12152
12684
|
isTls: boolean;
|
|
12685
|
+
sni?: string | undefined | null;
|
|
12153
12686
|
length: number;
|
|
12154
12687
|
alteration: Alteration;
|
|
12155
12688
|
fileExtension?: string | undefined | null;
|
|
@@ -12207,6 +12740,7 @@ export type StartReplayTaskMutation = {
|
|
|
12207
12740
|
host: string;
|
|
12208
12741
|
port: number;
|
|
12209
12742
|
isTLS: boolean;
|
|
12743
|
+
SNI?: string | undefined | null;
|
|
12210
12744
|
};
|
|
12211
12745
|
session: {
|
|
12212
12746
|
id: string;
|
|
@@ -12221,6 +12755,7 @@ export type StartReplayTaskMutation = {
|
|
|
12221
12755
|
method: string;
|
|
12222
12756
|
edited: boolean;
|
|
12223
12757
|
isTls: boolean;
|
|
12758
|
+
sni?: string | undefined | null;
|
|
12224
12759
|
length: number;
|
|
12225
12760
|
alteration: Alteration;
|
|
12226
12761
|
fileExtension?: string | undefined | null;
|
|
@@ -12277,6 +12812,7 @@ export type CreatedReplaySessionSubscription = {
|
|
|
12277
12812
|
host: string;
|
|
12278
12813
|
port: number;
|
|
12279
12814
|
isTLS: boolean;
|
|
12815
|
+
SNI?: string | undefined | null;
|
|
12280
12816
|
};
|
|
12281
12817
|
session: {
|
|
12282
12818
|
id: string;
|
|
@@ -12291,6 +12827,7 @@ export type CreatedReplaySessionSubscription = {
|
|
|
12291
12827
|
method: string;
|
|
12292
12828
|
edited: boolean;
|
|
12293
12829
|
isTls: boolean;
|
|
12830
|
+
sni?: string | undefined | null;
|
|
12294
12831
|
length: number;
|
|
12295
12832
|
alteration: Alteration;
|
|
12296
12833
|
fileExtension?: string | undefined | null;
|
|
@@ -12326,6 +12863,7 @@ export type CreatedReplaySessionSubscription = {
|
|
|
12326
12863
|
host: string;
|
|
12327
12864
|
port: number;
|
|
12328
12865
|
isTLS: boolean;
|
|
12866
|
+
SNI?: string | undefined | null;
|
|
12329
12867
|
};
|
|
12330
12868
|
session: {
|
|
12331
12869
|
id: string;
|
|
@@ -12340,6 +12878,7 @@ export type CreatedReplaySessionSubscription = {
|
|
|
12340
12878
|
method: string;
|
|
12341
12879
|
edited: boolean;
|
|
12342
12880
|
isTls: boolean;
|
|
12881
|
+
sni?: string | undefined | null;
|
|
12343
12882
|
length: number;
|
|
12344
12883
|
alteration: Alteration;
|
|
12345
12884
|
fileExtension?: string | undefined | null;
|
|
@@ -12399,6 +12938,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12399
12938
|
host: string;
|
|
12400
12939
|
port: number;
|
|
12401
12940
|
isTLS: boolean;
|
|
12941
|
+
SNI?: string | undefined | null;
|
|
12402
12942
|
};
|
|
12403
12943
|
session: {
|
|
12404
12944
|
id: string;
|
|
@@ -12413,6 +12953,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12413
12953
|
method: string;
|
|
12414
12954
|
edited: boolean;
|
|
12415
12955
|
isTls: boolean;
|
|
12956
|
+
sni?: string | undefined | null;
|
|
12416
12957
|
length: number;
|
|
12417
12958
|
alteration: Alteration;
|
|
12418
12959
|
fileExtension?: string | undefined | null;
|
|
@@ -12448,6 +12989,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12448
12989
|
host: string;
|
|
12449
12990
|
port: number;
|
|
12450
12991
|
isTLS: boolean;
|
|
12992
|
+
SNI?: string | undefined | null;
|
|
12451
12993
|
};
|
|
12452
12994
|
session: {
|
|
12453
12995
|
id: string;
|
|
@@ -12462,6 +13004,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12462
13004
|
method: string;
|
|
12463
13005
|
edited: boolean;
|
|
12464
13006
|
isTls: boolean;
|
|
13007
|
+
sni?: string | undefined | null;
|
|
12465
13008
|
length: number;
|
|
12466
13009
|
alteration: Alteration;
|
|
12467
13010
|
fileExtension?: string | undefined | null;
|
|
@@ -12532,6 +13075,7 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
12532
13075
|
host: string;
|
|
12533
13076
|
port: number;
|
|
12534
13077
|
isTLS: boolean;
|
|
13078
|
+
SNI?: string | undefined | null;
|
|
12535
13079
|
};
|
|
12536
13080
|
session: {
|
|
12537
13081
|
id: string;
|
|
@@ -12546,6 +13090,7 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
12546
13090
|
method: string;
|
|
12547
13091
|
edited: boolean;
|
|
12548
13092
|
isTls: boolean;
|
|
13093
|
+
sni?: string | undefined | null;
|
|
12549
13094
|
length: number;
|
|
12550
13095
|
alteration: Alteration;
|
|
12551
13096
|
fileExtension?: string | undefined | null;
|
|
@@ -12581,6 +13126,7 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
12581
13126
|
host: string;
|
|
12582
13127
|
port: number;
|
|
12583
13128
|
isTLS: boolean;
|
|
13129
|
+
SNI?: string | undefined | null;
|
|
12584
13130
|
};
|
|
12585
13131
|
session: {
|
|
12586
13132
|
id: string;
|
|
@@ -12595,6 +13141,7 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
12595
13141
|
method: string;
|
|
12596
13142
|
edited: boolean;
|
|
12597
13143
|
isTls: boolean;
|
|
13144
|
+
sni?: string | undefined | null;
|
|
12598
13145
|
length: number;
|
|
12599
13146
|
alteration: Alteration;
|
|
12600
13147
|
fileExtension?: string | undefined | null;
|
|
@@ -12658,6 +13205,7 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
12658
13205
|
host: string;
|
|
12659
13206
|
port: number;
|
|
12660
13207
|
isTLS: boolean;
|
|
13208
|
+
SNI?: string | undefined | null;
|
|
12661
13209
|
};
|
|
12662
13210
|
session: {
|
|
12663
13211
|
id: string;
|
|
@@ -12672,6 +13220,7 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
12672
13220
|
method: string;
|
|
12673
13221
|
edited: boolean;
|
|
12674
13222
|
isTls: boolean;
|
|
13223
|
+
sni?: string | undefined | null;
|
|
12675
13224
|
length: number;
|
|
12676
13225
|
alteration: Alteration;
|
|
12677
13226
|
fileExtension?: string | undefined | null;
|
|
@@ -12707,6 +13256,7 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
12707
13256
|
host: string;
|
|
12708
13257
|
port: number;
|
|
12709
13258
|
isTLS: boolean;
|
|
13259
|
+
SNI?: string | undefined | null;
|
|
12710
13260
|
};
|
|
12711
13261
|
session: {
|
|
12712
13262
|
id: string;
|
|
@@ -12721,6 +13271,7 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
12721
13271
|
method: string;
|
|
12722
13272
|
edited: boolean;
|
|
12723
13273
|
isTls: boolean;
|
|
13274
|
+
sni?: string | undefined | null;
|
|
12724
13275
|
length: number;
|
|
12725
13276
|
alteration: Alteration;
|
|
12726
13277
|
fileExtension?: string | undefined | null;
|
|
@@ -12780,6 +13331,7 @@ export type RequestFullFragment = {
|
|
|
12780
13331
|
method: string;
|
|
12781
13332
|
edited: boolean;
|
|
12782
13333
|
isTls: boolean;
|
|
13334
|
+
sni?: string | undefined | null;
|
|
12783
13335
|
length: number;
|
|
12784
13336
|
alteration: Alteration;
|
|
12785
13337
|
fileExtension?: string | undefined | null;
|
|
@@ -12795,6 +13347,7 @@ export type RequestFullFragment = {
|
|
|
12795
13347
|
method: string;
|
|
12796
13348
|
edited: boolean;
|
|
12797
13349
|
isTls: boolean;
|
|
13350
|
+
sni?: string | undefined | null;
|
|
12798
13351
|
length: number;
|
|
12799
13352
|
alteration: Alteration;
|
|
12800
13353
|
fileExtension?: string | undefined | null;
|
|
@@ -12843,6 +13396,7 @@ export type RequestFullFieldsFragment = {
|
|
|
12843
13396
|
method: string;
|
|
12844
13397
|
edited: boolean;
|
|
12845
13398
|
isTls: boolean;
|
|
13399
|
+
sni?: string | undefined | null;
|
|
12846
13400
|
length: number;
|
|
12847
13401
|
alteration: Alteration;
|
|
12848
13402
|
fileExtension?: string | undefined | null;
|
|
@@ -12858,6 +13412,7 @@ export type RequestFullFieldsFragment = {
|
|
|
12858
13412
|
method: string;
|
|
12859
13413
|
edited: boolean;
|
|
12860
13414
|
isTls: boolean;
|
|
13415
|
+
sni?: string | undefined | null;
|
|
12861
13416
|
length: number;
|
|
12862
13417
|
alteration: Alteration;
|
|
12863
13418
|
fileExtension?: string | undefined | null;
|
|
@@ -12905,6 +13460,7 @@ export type RequestMetaFragment = {
|
|
|
12905
13460
|
method: string;
|
|
12906
13461
|
edited: boolean;
|
|
12907
13462
|
isTls: boolean;
|
|
13463
|
+
sni?: string | undefined | null;
|
|
12908
13464
|
length: number;
|
|
12909
13465
|
alteration: Alteration;
|
|
12910
13466
|
fileExtension?: string | undefined | null;
|
|
@@ -12939,6 +13495,7 @@ export type RequestEdgeMetaFragment = {
|
|
|
12939
13495
|
method: string;
|
|
12940
13496
|
edited: boolean;
|
|
12941
13497
|
isTls: boolean;
|
|
13498
|
+
sni?: string | undefined | null;
|
|
12942
13499
|
length: number;
|
|
12943
13500
|
alteration: Alteration;
|
|
12944
13501
|
fileExtension?: string | undefined | null;
|
|
@@ -12991,6 +13548,7 @@ export type RequestsQuery = {
|
|
|
12991
13548
|
method: string;
|
|
12992
13549
|
edited: boolean;
|
|
12993
13550
|
isTls: boolean;
|
|
13551
|
+
sni?: string | undefined | null;
|
|
12994
13552
|
length: number;
|
|
12995
13553
|
alteration: Alteration;
|
|
12996
13554
|
fileExtension?: string | undefined | null;
|
|
@@ -13051,6 +13609,7 @@ export type RequestQuery = {
|
|
|
13051
13609
|
method: string;
|
|
13052
13610
|
edited: boolean;
|
|
13053
13611
|
isTls: boolean;
|
|
13612
|
+
sni?: string | undefined | null;
|
|
13054
13613
|
length: number;
|
|
13055
13614
|
alteration: Alteration;
|
|
13056
13615
|
fileExtension?: string | undefined | null;
|
|
@@ -13066,6 +13625,7 @@ export type RequestQuery = {
|
|
|
13066
13625
|
method: string;
|
|
13067
13626
|
edited: boolean;
|
|
13068
13627
|
isTls: boolean;
|
|
13628
|
+
sni?: string | undefined | null;
|
|
13069
13629
|
length: number;
|
|
13070
13630
|
alteration: Alteration;
|
|
13071
13631
|
fileExtension?: string | undefined | null;
|
|
@@ -13127,6 +13687,7 @@ export type RequestsByOffsetQuery = {
|
|
|
13127
13687
|
method: string;
|
|
13128
13688
|
edited: boolean;
|
|
13129
13689
|
isTls: boolean;
|
|
13690
|
+
sni?: string | undefined | null;
|
|
13130
13691
|
length: number;
|
|
13131
13692
|
alteration: Alteration;
|
|
13132
13693
|
fileExtension?: string | undefined | null;
|
|
@@ -13240,6 +13801,7 @@ export type CreatedRequestSubscription = {
|
|
|
13240
13801
|
method: string;
|
|
13241
13802
|
edited: boolean;
|
|
13242
13803
|
isTls: boolean;
|
|
13804
|
+
sni?: string | undefined | null;
|
|
13243
13805
|
length: number;
|
|
13244
13806
|
alteration: Alteration;
|
|
13245
13807
|
fileExtension?: string | undefined | null;
|
|
@@ -13285,6 +13847,7 @@ export type UpdatedRequestSubscription = {
|
|
|
13285
13847
|
method: string;
|
|
13286
13848
|
edited: boolean;
|
|
13287
13849
|
isTls: boolean;
|
|
13850
|
+
sni?: string | undefined | null;
|
|
13288
13851
|
length: number;
|
|
13289
13852
|
alteration: Alteration;
|
|
13290
13853
|
fileExtension?: string | undefined | null;
|
|
@@ -13779,6 +14342,7 @@ export type CreatedFindingSubscription = {
|
|
|
13779
14342
|
method: string;
|
|
13780
14343
|
edited: boolean;
|
|
13781
14344
|
isTls: boolean;
|
|
14345
|
+
sni?: string | undefined | null;
|
|
13782
14346
|
length: number;
|
|
13783
14347
|
alteration: Alteration;
|
|
13784
14348
|
fileExtension?: string | undefined | null;
|
|
@@ -13837,6 +14401,7 @@ export type CreatedInterceptEntrySubscription = {
|
|
|
13837
14401
|
method: string;
|
|
13838
14402
|
edited: boolean;
|
|
13839
14403
|
isTls: boolean;
|
|
14404
|
+
sni?: string | undefined | null;
|
|
13840
14405
|
length: number;
|
|
13841
14406
|
alteration: Alteration;
|
|
13842
14407
|
fileExtension?: string | undefined | null;
|
|
@@ -13886,6 +14451,7 @@ export type UpdatedInterceptEntrySubscription = {
|
|
|
13886
14451
|
method: string;
|
|
13887
14452
|
edited: boolean;
|
|
13888
14453
|
isTls: boolean;
|
|
14454
|
+
sni?: string | undefined | null;
|
|
13889
14455
|
length: number;
|
|
13890
14456
|
alteration: Alteration;
|
|
13891
14457
|
fileExtension?: string | undefined | null;
|
|
@@ -13985,6 +14551,7 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
13985
14551
|
method: string;
|
|
13986
14552
|
edited: boolean;
|
|
13987
14553
|
isTls: boolean;
|
|
14554
|
+
sni?: string | undefined | null;
|
|
13988
14555
|
length: number;
|
|
13989
14556
|
alteration: Alteration;
|
|
13990
14557
|
fileExtension?: string | undefined | null;
|
|
@@ -14029,6 +14596,7 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
14029
14596
|
method: string;
|
|
14030
14597
|
edited: boolean;
|
|
14031
14598
|
isTls: boolean;
|
|
14599
|
+
sni?: string | undefined | null;
|
|
14032
14600
|
length: number;
|
|
14033
14601
|
alteration: Alteration;
|
|
14034
14602
|
fileExtension?: string | undefined | null;
|
|
@@ -14321,6 +14889,7 @@ export type CreatedSitemapEntrySubscription = {
|
|
|
14321
14889
|
method: string;
|
|
14322
14890
|
edited: boolean;
|
|
14323
14891
|
isTls: boolean;
|
|
14892
|
+
sni?: string | undefined | null;
|
|
14324
14893
|
length: number;
|
|
14325
14894
|
alteration: Alteration;
|
|
14326
14895
|
fileExtension?: string | undefined | null;
|
|
@@ -14384,6 +14953,7 @@ export type UpdatedSitemapEntrySubscription = {
|
|
|
14384
14953
|
method: string;
|
|
14385
14954
|
edited: boolean;
|
|
14386
14955
|
isTls: boolean;
|
|
14956
|
+
sni?: string | undefined | null;
|
|
14387
14957
|
length: number;
|
|
14388
14958
|
alteration: Alteration;
|
|
14389
14959
|
fileExtension?: string | undefined | null;
|
|
@@ -14489,6 +15059,7 @@ export type StartedTaskSubscription = {
|
|
|
14489
15059
|
host: string;
|
|
14490
15060
|
port: number;
|
|
14491
15061
|
isTLS: boolean;
|
|
15062
|
+
SNI?: string | undefined | null;
|
|
14492
15063
|
};
|
|
14493
15064
|
session: {
|
|
14494
15065
|
id: string;
|
|
@@ -14503,6 +15074,7 @@ export type StartedTaskSubscription = {
|
|
|
14503
15074
|
method: string;
|
|
14504
15075
|
edited: boolean;
|
|
14505
15076
|
isTls: boolean;
|
|
15077
|
+
sni?: string | undefined | null;
|
|
14506
15078
|
length: number;
|
|
14507
15079
|
alteration: Alteration;
|
|
14508
15080
|
fileExtension?: string | undefined | null;
|
|
@@ -14559,6 +15131,7 @@ export type FinishedTaskSubscription = {
|
|
|
14559
15131
|
host: string;
|
|
14560
15132
|
port: number;
|
|
14561
15133
|
isTLS: boolean;
|
|
15134
|
+
SNI?: string | undefined | null;
|
|
14562
15135
|
};
|
|
14563
15136
|
session: {
|
|
14564
15137
|
id: string;
|
|
@@ -14573,6 +15146,7 @@ export type FinishedTaskSubscription = {
|
|
|
14573
15146
|
method: string;
|
|
14574
15147
|
edited: boolean;
|
|
14575
15148
|
isTls: boolean;
|
|
15149
|
+
sni?: string | undefined | null;
|
|
14576
15150
|
length: number;
|
|
14577
15151
|
alteration: Alteration;
|
|
14578
15152
|
fileExtension?: string | undefined | null;
|
|
@@ -14653,6 +15227,8 @@ export type FinishedTaskSubscription = {
|
|
|
14653
15227
|
code: string;
|
|
14654
15228
|
} | {
|
|
14655
15229
|
code: string;
|
|
15230
|
+
} | {
|
|
15231
|
+
code: string;
|
|
14656
15232
|
} | undefined | null;
|
|
14657
15233
|
};
|
|
14658
15234
|
};
|
|
@@ -14678,6 +15254,7 @@ export type CreatedUpstreamProxyHttpSubscription = {
|
|
|
14678
15254
|
host: string;
|
|
14679
15255
|
port: number;
|
|
14680
15256
|
isTLS: boolean;
|
|
15257
|
+
SNI?: string | undefined | null;
|
|
14681
15258
|
};
|
|
14682
15259
|
};
|
|
14683
15260
|
};
|
|
@@ -14704,6 +15281,7 @@ export type UpdatedUpstreamProxyHttpSubscription = {
|
|
|
14704
15281
|
host: string;
|
|
14705
15282
|
port: number;
|
|
14706
15283
|
isTLS: boolean;
|
|
15284
|
+
SNI?: string | undefined | null;
|
|
14707
15285
|
};
|
|
14708
15286
|
};
|
|
14709
15287
|
};
|
|
@@ -14739,6 +15317,7 @@ export type CreatedUpstreamProxySocksSubscription = {
|
|
|
14739
15317
|
host: string;
|
|
14740
15318
|
port: number;
|
|
14741
15319
|
isTLS: boolean;
|
|
15320
|
+
SNI?: string | undefined | null;
|
|
14742
15321
|
};
|
|
14743
15322
|
};
|
|
14744
15323
|
};
|
|
@@ -14766,6 +15345,7 @@ export type UpdatedUpstreamProxySocksSubscription = {
|
|
|
14766
15345
|
host: string;
|
|
14767
15346
|
port: number;
|
|
14768
15347
|
isTLS: boolean;
|
|
15348
|
+
SNI?: string | undefined | null;
|
|
14769
15349
|
};
|
|
14770
15350
|
};
|
|
14771
15351
|
};
|
|
@@ -14855,15 +15435,19 @@ export declare const AutomateSettingsFullFragmentDoc = "\n fragment automateS
|
|
|
14855
15435
|
export declare const AutomateEntryFullFragmentDoc = "\n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n ";
|
|
14856
15436
|
export declare const RequestMetadataFullFragmentDoc = "\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
14857
15437
|
export declare const ResponseMetaFragmentDoc = "\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
14858
|
-
export declare const RequestMetaFragmentDoc = "\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n ";
|
|
15438
|
+
export declare const RequestMetaFragmentDoc = "\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}\n ";
|
|
14859
15439
|
export declare const AutomateEntryRequestPayloadFullFragmentDoc = "\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
14860
15440
|
export declare const AutomateEntryRequestMetaFragmentDoc = "\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n ";
|
|
14861
15441
|
export declare const AutomateEntryRequestEdgeMetaFragmentDoc = "\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n ";
|
|
14862
15442
|
export declare const AutomateSessionMetaFragmentDoc = "\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n ";
|
|
14863
|
-
export declare const ConnectionInfoFullFragmentDoc = "\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15443
|
+
export declare const ConnectionInfoFullFragmentDoc = "\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
14864
15444
|
export declare const AutomateSessionFullFragmentDoc = "\n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n ";
|
|
14865
15445
|
export declare const AutomateTaskMetaFragmentDoc = "\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n ";
|
|
14866
15446
|
export declare const AutomateTaskEdgeMetaFragmentDoc = "\n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n ";
|
|
15447
|
+
export declare const EnvironmentMetaFragmentDoc = "\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
15448
|
+
export declare const EnvironmentVariableFullFragmentDoc = "\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15449
|
+
export declare const EnvironmentFullFragmentDoc = "\n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n ";
|
|
15450
|
+
export declare const EnvironmentContextFullFragmentDoc = "\n fragment environmentContextFull on EnvironmentContext {\n global {\n ...environmentFull\n }\n selected {\n ...environmentFull\n }\n}\n ";
|
|
14867
15451
|
export declare const AuthenticationRequestFullFragmentDoc = "\n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n ";
|
|
14868
15452
|
export declare const AuthenticationTokenFullFragmentDoc = "\n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
|
|
14869
15453
|
export declare const BackupMetaFragmentDoc = "\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
@@ -14895,6 +15479,7 @@ export declare const PluginUserErrorFullFragmentDoc = "\n fragment pluginUser
|
|
|
14895
15479
|
export declare const StoreUserErrorFullFragmentDoc = "\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
|
|
14896
15480
|
export declare const ProjectUserErrorFullFragmentDoc = "\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\n}\n ";
|
|
14897
15481
|
export declare const CertificateUserErrorFullFragmentDoc = "\n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: reason\n}\n ";
|
|
15482
|
+
export declare const NewerVersionUserErrorFullFragmentDoc = "\n fragment newerVersionUserErrorFull on NewerVersionUserError {\n ...userErrorFull\n version\n}\n ";
|
|
14898
15483
|
export declare const DataExportMetaFieldsFragmentDoc = "\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
14899
15484
|
export declare const DataExportMetaFragmentDoc = "\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n ";
|
|
14900
15485
|
export declare const DataExportFullFieldsFragmentDoc = "\n fragment dataExportFullFields on DataExport {\n ...dataExportMeta\n downloadUri\n}\n ";
|
|
@@ -14956,7 +15541,8 @@ export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment r
|
|
|
14956
15541
|
export declare const ReplaySuffixPreprocessorFullFragmentDoc = "\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
14957
15542
|
export declare const ReplayUrlEncodePreprocessorFullFragmentDoc = "\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n ";
|
|
14958
15543
|
export declare const ReplayWorkflowPreprocessorFullFragmentDoc = "\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n ";
|
|
14959
|
-
export declare const
|
|
15544
|
+
export declare const ReplayEnvironmentPreprocessorFullFragmentDoc = "\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n ";
|
|
15545
|
+
export declare const ReplayPreprocessorFullFragmentDoc = "\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n ";
|
|
14960
15546
|
export declare const ReplayPlaceholderFullFragmentDoc = "\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n ";
|
|
14961
15547
|
export declare const ReplayEntryFullFragmentDoc = "\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n ";
|
|
14962
15548
|
export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
@@ -14979,23 +15565,23 @@ export declare const CreatedAssistantMessageTaskDocument = "\n subscription c
|
|
|
14979
15565
|
export declare const UpdatedAssistantMessageTaskDocument = "\n subscription updatedAssistantMessageTask {\n updatedAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\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 assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14980
15566
|
export declare const UpdatedViewerAssistantUsageDocument = "\n subscription updatedViewerAssistantUsage {\n updatedViewerAssistantUsage {\n usage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
14981
15567
|
export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
14982
|
-
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
14983
|
-
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
15568
|
+
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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}\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
15569
|
+
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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}\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
14984
15570
|
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
14985
15571
|
export declare const AutomateSessionsDocument = "\n query automateSessions {\n automateSessions {\n edges {\n node {\n ...automateSessionMeta\n }\n }\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
14986
|
-
export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
15572
|
+
export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
14987
15573
|
export declare const AutomateTasksDocument = "\n query automateTasks($after: String, $before: String, $first: Int, $last: Int) {\n automateTasks(after: $after, before: $before, first: $first, last: $last) {\n edges {\n node {\n ...automateTaskMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
14988
15574
|
export declare const DeleteAutomateEntriesDocument = "\n mutation deleteAutomateEntries($ids: [ID!]!) {\n deleteAutomateEntries(ids: $ids) {\n deletedIds\n errors {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14989
15575
|
export declare const RenameAutomateEntryDocument = "\n mutation renameAutomateEntry($id: ID!, $name: String!) {\n renameAutomateEntry(id: $id, name: $name) {\n entry {\n ...automateEntryFull\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
14990
|
-
export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
15576
|
+
export declare const CreateAutomateSessionDocument = "\n mutation createAutomateSession($input: CreateAutomateSessionInput!) {\n createAutomateSession(input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
14991
15577
|
export declare const DeleteAutomateSessionDocument = "\n mutation deleteAutomateSession($id: ID!) {\n deleteAutomateSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
14992
|
-
export declare const RenameAutomateSessionDocument = "\n mutation renameAutomateSession($id: ID!, $name: String!) {\n renameAutomateSession(id: $id, name: $name) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
14993
|
-
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
15578
|
+
export declare const RenameAutomateSessionDocument = "\n mutation renameAutomateSession($id: ID!, $name: String!) {\n renameAutomateSession(id: $id, name: $name) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
15579
|
+
export declare const UpdateAutomateSessionDocument = "\n mutation updateAutomateSession($id: ID!, $input: UpdateAutomateSessionInput!) {\n updateAutomateSession(id: $id, input: $input) {\n session {\n ...automateSessionFull\n }\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
14994
15580
|
export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomateTask($id: ID!) {\n cancelAutomateTask(id: $id) {\n cancelledId\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14995
15581
|
export declare const PauseAutomateTaskDocument = "\n mutation pauseAutomateTask($id: ID!) {\n pauseAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14996
15582
|
export declare const ResumeAutomateTaskDocument = "\n mutation resumeAutomateTask($id: ID!) {\n resumeAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14997
15583
|
export declare const StartAutomateTaskDocument = "\n mutation startAutomateTask($automateSessionId: ID!) {\n startAutomateTask(automateSessionId: $automateSessionId) {\n automateTask {\n ...automateTaskMeta\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
14998
|
-
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
15584
|
+
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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}\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
14999
15585
|
export declare const CreatedAutomateTaskDocument = "\n subscription createdAutomateTask {\n createdAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
15000
15586
|
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
|
|
15001
15587
|
export declare const UpdatedAutomateTaskDocument = "\n subscription updatedAutomateTask {\n updatedAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
@@ -15005,6 +15591,17 @@ export declare const DeletedAutomateEntryDocument = "\n subscription deletedA
|
|
|
15005
15591
|
export declare const CreatedAutomateSessionDocument = "\n subscription createdAutomateSession {\n createdAutomateSession {\n automateSessionEdge {\n node {\n ...automateSessionMeta\n }\n }\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
15006
15592
|
export declare const UpdatedAutomateSessionDocument = "\n subscription updatedAutomateSession {\n updatedAutomateSession {\n automateSessionEdge {\n node {\n ...automateSessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
15007
15593
|
export declare const DeletedAutomateSessionDocument = "\n subscription deletedAutomateSession {\n deletedAutomateSession {\n deletedAutomateSessionId\n }\n}\n ";
|
|
15594
|
+
export declare const EnvironmentDocument = "\n query environment($id: ID!) {\n environment(id: $id) {\n ...environmentFull\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15595
|
+
export declare const EnvironmentsDocument = "\n query environments {\n environments {\n ...environmentMeta\n }\n}\n \n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
15596
|
+
export declare const EnvironmentContextDocument = "\n query environmentContext {\n environmentContext {\n ...environmentContextFull\n }\n}\n \n fragment environmentContextFull on EnvironmentContext {\n global {\n ...environmentFull\n }\n selected {\n ...environmentFull\n }\n}\n \n\n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15597
|
+
export declare const CreateEnvironmentDocument = "\n mutation createEnvironment($input: CreateEnvironmentInput!) {\n createEnvironment(input: $input) {\n environment {\n ...environmentFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
15598
|
+
export declare const UpdateEnvironmentDocument = "\n mutation updateEnvironment($id: ID!, $input: UpdateEnvironmentInput!) {\n updateEnvironment(id: $id, input: $input) {\n environment {\n ...environmentFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on NewerVersionUserError {\n ...newerVersionUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment newerVersionUserErrorFull on NewerVersionUserError {\n ...userErrorFull\n version\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
15599
|
+
export declare const DeleteEnvironmentDocument = "\n mutation deleteEnvironment($id: ID!) {\n deleteEnvironment(id: $id) {\n deletedId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15600
|
+
export declare const SelectEnvironmentDocument = "\n mutation selectEnvironment($id: ID) {\n selectEnvironment(id: $id) {\n environment {\n ...environmentFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15601
|
+
export declare const CreatedEnvironmentDocument = "\n subscription createdEnvironment {\n createdEnvironment {\n environment {\n ...environmentMeta\n }\n snapshot\n }\n}\n \n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
15602
|
+
export declare const UpdatedEnvironmentDocument = "\n subscription updatedEnvironment {\n updatedEnvironment {\n environment {\n ...environmentMeta\n }\n snapshot\n }\n}\n \n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
15603
|
+
export declare const DeletedEnvironmentDocument = "\n subscription deletedEnvironment {\n deletedEnvironment {\n deletedEnvironmentId\n snapshot\n }\n}\n ";
|
|
15604
|
+
export declare const UpdatedEnvironmentContextDocument = "\n subscription updatedEnvironmentContext {\n updatedEnvironmentContext {\n environmentContext {\n ...environmentContextFull\n }\n }\n}\n \n fragment environmentContextFull on EnvironmentContext {\n global {\n ...environmentFull\n }\n selected {\n ...environmentFull\n }\n}\n \n\n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15008
15605
|
export declare const StartAuthenticationFlowDocument = "\n mutation startAuthenticationFlow {\n startAuthenticationFlow {\n request {\n ...authenticationRequestFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationRequestFull on AuthenticationRequest {\n __typename\n id\n expiresAt\n userCode\n verificationUrl\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n 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 ";
|
|
15009
15606
|
export declare const RefreshAuthenticationTokenDocument = "\n mutation refreshAuthenticationToken($refreshToken: Token!) {\n refreshAuthenticationToken(refreshToken: $refreshToken) {\n token {\n ...authenticationTokenFull\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n ";
|
|
15010
15607
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
|
|
@@ -15025,7 +15622,7 @@ export declare const CancelDataExportTaskDocument = "\n mutation cancelDataEx
|
|
|
15025
15622
|
export declare const CreateFilterPresetDocument = "\n mutation createFilterPreset($input: CreateFilterPresetInput!) {\n createFilterPreset(input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\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 ";
|
|
15026
15623
|
export declare const UpdateFilterPresetDocument = "\n mutation updateFilterPreset($id: ID!, $input: UpdateFilterPresetInput!) {\n updateFilterPreset(id: $id, input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15027
15624
|
export declare const DeleteFilterPresetDocument = "\n mutation deleteFilterPreset($id: ID!) {\n deleteFilterPreset(id: $id) {\n deletedId\n }\n}\n ";
|
|
15028
|
-
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, 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 description\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15625
|
+
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, 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 description\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}\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 ";
|
|
15029
15626
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($ids: [ID!]!) {\n deleteFindings(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
15030
15627
|
export declare const DeleteInterceptEntriesDocument = "\n mutation deleteInterceptEntries($filter: HTTPQL, $scopeId: ID) {\n deleteInterceptEntries(filter: $filter, scopeId: $scopeId) {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n error: userError {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15031
15628
|
export declare const DeleteInterceptEntryDocument = "\n mutation deleteInterceptEntry($id: ID!) {\n deleteInterceptEntry(id: $id) {\n deletedId\n error: userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
@@ -15063,16 +15660,16 @@ export declare const DisableTamperRuleDocument = "\n mutation disableTamperRu
|
|
|
15063
15660
|
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 isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n ";
|
|
15064
15661
|
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 isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n ";
|
|
15065
15662
|
export declare const CancelTaskDocument = "\n mutation cancelTask($id: ID!) {\n cancelTask(id: $id) {\n cancelledId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15066
|
-
export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15067
|
-
export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15663
|
+
export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15664
|
+
export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15068
15665
|
export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
|
|
15069
15666
|
export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
|
|
15070
|
-
export declare const RankUpstreamProxyHttpDocument = "\n mutation rankUpstreamProxyHttp($id: ID!, $input: RankUpstreamProxyHttpInput!) {\n rankUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15071
|
-
export declare const CreateUpstreamProxySocksDocument = "\n mutation createUpstreamProxySocks($input: CreateUpstreamProxySocksInput!) {\n createUpstreamProxySocks(input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15072
|
-
export declare const UpdateUpstreamProxySocksDocument = "\n mutation updateUpstreamProxySocks($id: ID!, $input: UpdateUpstreamProxySocksInput!) {\n updateUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15667
|
+
export declare const RankUpstreamProxyHttpDocument = "\n mutation rankUpstreamProxyHttp($id: ID!, $input: RankUpstreamProxyHttpInput!) {\n rankUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15668
|
+
export declare const CreateUpstreamProxySocksDocument = "\n mutation createUpstreamProxySocks($input: CreateUpstreamProxySocksInput!) {\n createUpstreamProxySocks(input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15669
|
+
export declare const UpdateUpstreamProxySocksDocument = "\n mutation updateUpstreamProxySocks($id: ID!, $input: UpdateUpstreamProxySocksInput!) {\n updateUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15073
15670
|
export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
|
|
15074
15671
|
export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
|
|
15075
|
-
export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankUpstreamProxySocksInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15672
|
+
export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankUpstreamProxySocksInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15076
15673
|
export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
15077
15674
|
export declare const CreateWorkflowDocument = "\n mutation createWorkflow($input: CreateWorkflowInput!) {\n createWorkflow(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
15078
15675
|
export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
@@ -15094,18 +15691,18 @@ export declare const DataExportDocument = "\n query dataExport($id: ID!) {\n
|
|
|
15094
15691
|
export declare const DataExportTasksDocument = "\n query dataExportTasks {\n dataExportTasks {\n ...dataExportTaskMeta\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
15095
15692
|
export declare const FilterPresetsDocument = "\n query filterPresets {\n filterPresets {\n ...filterPresetFull\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
15096
15693
|
export declare const FilterPresetDocument = "\n query filterPreset($id: ID!) {\n filterPreset(id: $id) {\n ...filterPresetFull\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
15097
|
-
export declare const GetFindingsBeforeDocument = "\n query getFindingsBefore($before: String!, $last: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(before: $before, last: $last, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15098
|
-
export declare const GetFindingsAfterDocument = "\n query getFindingsAfter($after: String!, $first: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(after: $after, first: $first, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15099
|
-
export declare const GetFindingsByOffsetDocument = "\n query getFindingsByOffset($offset: Int!, $limit: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findingsByOffset(offset: $offset, limit: $limit, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15694
|
+
export declare const GetFindingsBeforeDocument = "\n query getFindingsBefore($before: String!, $last: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(before: $before, last: $last, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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}\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 ";
|
|
15695
|
+
export declare const GetFindingsAfterDocument = "\n query getFindingsAfter($after: String!, $first: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(after: $after, first: $first, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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}\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 ";
|
|
15696
|
+
export declare const GetFindingsByOffsetDocument = "\n query getFindingsByOffset($offset: Int!, $limit: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findingsByOffset(offset: $offset, limit: $limit, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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}\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 ";
|
|
15100
15697
|
export declare const GetFindingsCountDocument = "\n query getFindingsCount($filter: FilterClauseFindingInput!) {\n findings(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15101
15698
|
export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
|
|
15102
|
-
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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15103
|
-
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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15104
|
-
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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15699
|
+
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}\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 ";
|
|
15700
|
+
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}\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 ";
|
|
15701
|
+
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}\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 ";
|
|
15105
15702
|
export declare const InterceptEntryCountDocument = "\n query interceptEntryCount($filter: HTTPQL, $scopeId: ID) {\n interceptEntries(first: 0, filter: $filter, scopeId: $scopeId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15106
15703
|
export declare const HostedFilesDocument = "\n query hostedFiles {\n hostedFiles {\n ...hostedFileFull\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n updatedAt\n createdAt\n}\n ";
|
|
15107
|
-
export declare const InterceptRequestMessagesDocument = "\n query interceptRequestMessages($first: Int!) {\n interceptMessages(first: $first, kind: REQUEST) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
15108
|
-
export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
15704
|
+
export declare const InterceptRequestMessagesDocument = "\n query interceptRequestMessages($first: Int!) {\n interceptMessages(first: $first, kind: REQUEST) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
15705
|
+
export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
15109
15706
|
export declare const InterceptOptionsDocument = "\n query interceptOptions {\n interceptOptions {\n ...interceptOptionsMeta\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
15110
15707
|
export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
|
|
15111
15708
|
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 version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\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 ";
|
|
@@ -15119,7 +15716,7 @@ export declare const GetCertificateDocument = "\n query getCertificate($passw
|
|
|
15119
15716
|
export declare const ScopesDocument = "\n query scopes {\n scopes {\n ...scopeFull\n }\n}\n \n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
15120
15717
|
export declare const SitemapRootEntriesDocument = "\n query sitemapRootEntries($scopeId: ID) {\n sitemapRootEntries(scopeId: $scopeId) {\n edges {\n ...sitemapEntryEdgeMeta\n }\n }\n}\n \n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
15121
15718
|
export declare const SitemapEntryChildrenDocument = "\n query sitemapEntryChildren($id: ID!) {\n sitemapDescendantEntries(parentId: $id, depth: DIRECT) {\n edges {\n cursor\n node {\n ...sitemapEntryMeta\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
15122
|
-
export declare const SitemapEntryRequestsDocument = "\n query sitemapEntryRequests($id: ID!, $after: String, $before: String, $first: Int, $last: Int) {\n sitemapEntry(id: $id) {\n ...sitemapEntryMeta\n requests(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n ...requestMeta\n }\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15719
|
+
export declare const SitemapEntryRequestsDocument = "\n query sitemapEntryRequests($id: ID!, $after: String, $before: String, $first: Int, $last: Int) {\n sitemapEntry(id: $id) {\n ...sitemapEntryMeta\n requests(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n ...requestMeta\n }\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\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}\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 ";
|
|
15123
15720
|
export declare const WebsocketStreamsBeforeDocument = "\n query websocketStreamsBefore($before: String, $last: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n before: $before\n last: $last\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
15124
15721
|
export declare const WebsocketStreamsAfterDocument = "\n query websocketStreamsAfter($after: String, $first: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n after: $after\n first: $first\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
15125
15722
|
export declare const WebsocketStreamsByOffsetDocument = "\n query websocketStreamsByOffset($offset: Int!, $limit: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streamsByOffset(\n offset: $offset\n limit: $limit\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
@@ -15130,42 +15727,42 @@ export declare const WebsocketMessagesByOffsetDocument = "\n query websocketM
|
|
|
15130
15727
|
export declare const WebsocketMessageCountDocument = "\n query websocketMessageCount($streamId: ID!) {\n streamWsMessages(first: 0, streamId: $streamId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15131
15728
|
export declare const WebsocketMessageDocument = "\n query websocketMessage($id: ID!) {\n streamWsMessage(id: $id) {\n ...streamWsMessageFull\n }\n}\n \n fragment streamWsMessageFull on StreamWsMessage {\n ...streamWsMessageMeta\n raw\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n length\n createdAt\n direction\n edited\n alteration\n format\n streamId\n}\n ";
|
|
15132
15729
|
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n nodes {\n ...tamperRuleCollectionFull\n }\n pageInfo {\n ...pageInfoFull\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 isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
15133
|
-
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 workflowTaskMeta on WorkflowTask {\n ...taskMeta\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 ";
|
|
15134
|
-
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
15730
|
+
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 workflowTaskMeta on WorkflowTask {\n ...taskMeta\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 ";
|
|
15731
|
+
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
15135
15732
|
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n id\n profile {\n ...userProfileFull\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
15136
15733
|
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n id\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
15137
15734
|
export declare const WorkflowDocument = "\n query workflow($id: ID!) {\n workflow(id: $id) {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
15138
15735
|
export declare const WorkflowsDocument = "\n query workflows {\n workflows {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
15139
15736
|
export declare const WorkflowNodeDefinitionsDocument = "\n query workflowNodeDefinitions {\n workflowNodeDefinitions {\n ...workflowNodeDefinitionFull\n }\n}\n \n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
15140
|
-
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n ";
|
|
15141
|
-
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15142
|
-
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15143
|
-
export declare const ReplaySessionEntriesDocument = "\n query replaySessionEntries($id: ID!) {\n replaySession(id: $id) {\n activeEntry {\n ...replayEntryMeta\n }\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15144
|
-
export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15145
|
-
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15146
|
-
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15737
|
+
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n ";
|
|
15738
|
+
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15739
|
+
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15740
|
+
export declare const ReplaySessionEntriesDocument = "\n query replaySessionEntries($id: ID!) {\n replaySession(id: $id) {\n activeEntry {\n ...replayEntryMeta\n }\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15741
|
+
export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15742
|
+
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15743
|
+
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15147
15744
|
export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
15148
|
-
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15149
|
-
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15745
|
+
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15746
|
+
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15150
15747
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
15151
|
-
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
15152
|
-
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15153
|
-
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\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 ";
|
|
15154
|
-
export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15155
|
-
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15748
|
+
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
15749
|
+
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15750
|
+
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\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 ";
|
|
15751
|
+
export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15752
|
+
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15156
15753
|
export declare const DeletedReplaySessionDocument = "\n subscription deletedReplaySession {\n deletedReplaySession {\n deletedSessionId\n }\n}\n ";
|
|
15157
|
-
export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15158
|
-
export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15754
|
+
export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15755
|
+
export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15159
15756
|
export declare const DeletedReplaySessionCollectionDocument = "\n subscription deletedReplaySessionCollection {\n deletedReplaySessionCollection {\n deletedCollectionId\n }\n}\n ";
|
|
15160
|
-
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15757
|
+
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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}\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 ";
|
|
15161
15758
|
export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter: HTTPQL) {\n requests(first: 0, scopeId: $scopeId, filter: $filter) {\n count {\n ...countFull\n }\n snapshot\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15162
|
-
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\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 \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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15163
|
-
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15759
|
+
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\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 \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}\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 ";
|
|
15760
|
+
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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}\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 ";
|
|
15164
15761
|
export declare const UpdateRequestMetadataDocument = "\n mutation updateRequestMetadata($id: ID!, $input: UpdateRequestMetadataInput!) {\n updateRequestMetadata(id: $id, input: $input) {\n snapshot\n metadata {\n ...requestMetadataFull\n }\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
15165
15762
|
export declare const StartExportRequestsTaskDocument = "\n mutation startExportRequestsTask($input: StartExportRequestsTaskInput!) {\n startExportRequestsTask(input: $input) {\n task {\n ...dataExportTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\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 ";
|
|
15166
15763
|
export declare const RenderRequestDocument = "\n mutation renderRequest($id: ID!, $input: RenderRequestInput!) {\n renderRequest(id: $id, input: $input) {\n render\n error {\n ... on RenderFailedUserError {\n ...renderFailedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment renderFailedUserErrorFull on RenderFailedUserError {\n ...userErrorFull\n 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 ";
|
|
15167
|
-
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15168
|
-
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15764
|
+
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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}\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 ";
|
|
15765
|
+
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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}\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 ";
|
|
15169
15766
|
export declare const UpdatedRequestMetadataDocument = "\n subscription updatedRequestMetadata {\n updatedRequestMetadata {\n metadata {\n ...requestMetadataFull\n }\n snapshot\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
15170
15767
|
export declare const CreatedAuthenticationTokenDocument = "\n subscription createdAuthenticationToken($requestId: ID!) {\n createdAuthenticationToken(requestId: $requestId) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n 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 ";
|
|
15171
15768
|
export declare const CreatedBackupDocument = "\n subscription createdBackup {\n createdBackup {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
@@ -15186,15 +15783,15 @@ export declare const DeletedDataExportTaskDocument = "\n subscription deleted
|
|
|
15186
15783
|
export declare const CreatedFilterPresetDocument = "\n subscription createdFilterPreset {\n createdFilterPreset {\n filterEdge {\n ...filterPresetEdgeFull\n }\n }\n}\n \n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n \n\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
15187
15784
|
export declare const UpdatedFilterPresetDocument = "\n subscription updatedFilterPreset {\n updatedFilterPreset {\n filterEdge {\n ...filterPresetEdgeFull\n }\n }\n}\n \n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n \n\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
15188
15785
|
export declare const DeletedFilterPresetDocument = "\n subscription deletedFilterPreset {\n deletedFilterPreset {\n deletedFilterId\n }\n}\n ";
|
|
15189
|
-
export declare const CreatedFindingDocument = "\n subscription createdFinding($order: FindingOrderInput) {\n createdFinding {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15786
|
+
export declare const CreatedFindingDocument = "\n subscription createdFinding($order: FindingOrderInput) {\n createdFinding {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\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}\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 ";
|
|
15190
15787
|
export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
|
|
15191
|
-
export declare const CreatedInterceptEntryDocument = "\n subscription createdInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n createdInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15192
|
-
export declare const UpdatedInterceptEntryDocument = "\n subscription updatedInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n updatedInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15788
|
+
export declare const CreatedInterceptEntryDocument = "\n subscription createdInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n createdInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\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}\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 ";
|
|
15789
|
+
export declare const UpdatedInterceptEntryDocument = "\n subscription updatedInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n updatedInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\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}\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 ";
|
|
15193
15790
|
export declare const DeletedInterceptEntryDocument = "\n subscription deletedInterceptEntry {\n deletedInterceptEntry {\n deletedEntryId\n snapshot\n }\n}\n ";
|
|
15194
15791
|
export declare const StartedDeleteInterceptEntriesTaskDocument = "\n subscription startedDeleteInterceptEntriesTask {\n startedDeleteInterceptEntriesTask {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
15195
15792
|
export declare const UpdatedDeleteInterceptEntriesTaskDocument = "\n subscription updatedDeleteInterceptEntriesTask {\n updatedDeleteInterceptEntriesTask {\n snapshot\n task {\n ...deleteInterceptEntriesTaskFull\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
15196
15793
|
export declare const FinishedDeleteInterceptEntriesTaskDocument = "\n subscription finishedDeleteInterceptEntriesTask {\n finishedDeleteInterceptEntriesTask {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n error {\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15197
|
-
export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
15794
|
+
export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
15198
15795
|
export declare const UpdatedInterceptOptionsDocument = "\n subscription updatedInterceptOptions {\n updatedInterceptOptions {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
15199
15796
|
export declare const CreatedPluginPackageDocument = "\n subscription createdPluginPackage {\n createdPluginPackage {\n package {\n ...pluginPackageFull\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 version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\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 ";
|
|
15200
15797
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
@@ -15205,17 +15802,17 @@ export declare const UpdatedProjectDocument = "\n subscription updatedProject
|
|
|
15205
15802
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
15206
15803
|
export declare const CreatedScopeDocument = "\n subscription createdScope {\n createdScope {\n scopeEdge {\n node {\n ...scopeFull\n }\n }\n snapshot\n }\n}\n \n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
15207
15804
|
export declare const UpdatedScopeDocument = "\n subscription updatedScope {\n updatedScope {\n scopeEdge {\n node {\n ...scopeFull\n }\n }\n snapshot\n }\n}\n \n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
15208
|
-
export declare const CreatedSitemapEntryDocument = "\n subscription createdSitemapEntry($scopeId: ID) {\n createdSitemapEntry(scopeId: $scopeId) {\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
15209
|
-
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
15805
|
+
export declare const CreatedSitemapEntryDocument = "\n subscription createdSitemapEntry($scopeId: ID) {\n createdSitemapEntry(scopeId: $scopeId) {\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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}\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
15806
|
+
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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}\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
15210
15807
|
export declare const CreatedWsStreamDocument = "\n subscription createdWsStream($scopeId: ID, $order: StreamOrderInput!) {\n createdStream(protocol: WS, scopeId: $scopeId) {\n snapshot\n streamEdge(order: $order) {\n ...streamEdgeMeta\n }\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n ";
|
|
15211
15808
|
export declare const CreatedStreamWsMessageDocument = "\n subscription createdStreamWsMessage($order: StreamWsMessageOrderInput!) {\n createdStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n length\n createdAt\n direction\n edited\n alteration\n format\n streamId\n}\n ";
|
|
15212
|
-
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15213
|
-
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\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 length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\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 ";
|
|
15214
|
-
export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15215
|
-
export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15809
|
+
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 ";
|
|
15810
|
+
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\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}\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 ";
|
|
15811
|
+
export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15812
|
+
export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15216
15813
|
export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
|
|
15217
|
-
export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15218
|
-
export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n}\n ";
|
|
15814
|
+
export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15815
|
+
export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
15219
15816
|
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
15220
15817
|
export declare const CreatedWorkflowDocument = "\n subscription createdWorkflow {\n createdWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
15221
15818
|
export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
|
|
@@ -15261,6 +15858,17 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
15261
15858
|
createdAutomateSession(variables?: CreatedAutomateSessionSubscriptionVariables, options?: C): AsyncIterable<CreatedAutomateSessionSubscription>;
|
|
15262
15859
|
updatedAutomateSession(variables?: UpdatedAutomateSessionSubscriptionVariables, options?: C): AsyncIterable<UpdatedAutomateSessionSubscription>;
|
|
15263
15860
|
deletedAutomateSession(variables?: DeletedAutomateSessionSubscriptionVariables, options?: C): AsyncIterable<DeletedAutomateSessionSubscription>;
|
|
15861
|
+
environment(variables: EnvironmentQueryVariables, options?: C): Promise<EnvironmentQuery>;
|
|
15862
|
+
environments(variables?: EnvironmentsQueryVariables, options?: C): Promise<EnvironmentsQuery>;
|
|
15863
|
+
environmentContext(variables?: EnvironmentContextQueryVariables, options?: C): Promise<EnvironmentContextQuery>;
|
|
15864
|
+
createEnvironment(variables: CreateEnvironmentMutationVariables, options?: C): Promise<CreateEnvironmentMutation>;
|
|
15865
|
+
updateEnvironment(variables: UpdateEnvironmentMutationVariables, options?: C): Promise<UpdateEnvironmentMutation>;
|
|
15866
|
+
deleteEnvironment(variables: DeleteEnvironmentMutationVariables, options?: C): Promise<DeleteEnvironmentMutation>;
|
|
15867
|
+
selectEnvironment(variables?: SelectEnvironmentMutationVariables, options?: C): Promise<SelectEnvironmentMutation>;
|
|
15868
|
+
createdEnvironment(variables?: CreatedEnvironmentSubscriptionVariables, options?: C): AsyncIterable<CreatedEnvironmentSubscription>;
|
|
15869
|
+
updatedEnvironment(variables?: UpdatedEnvironmentSubscriptionVariables, options?: C): AsyncIterable<UpdatedEnvironmentSubscription>;
|
|
15870
|
+
deletedEnvironment(variables?: DeletedEnvironmentSubscriptionVariables, options?: C): AsyncIterable<DeletedEnvironmentSubscription>;
|
|
15871
|
+
updatedEnvironmentContext(variables?: UpdatedEnvironmentContextSubscriptionVariables, options?: C): AsyncIterable<UpdatedEnvironmentContextSubscription>;
|
|
15264
15872
|
startAuthenticationFlow(variables?: StartAuthenticationFlowMutationVariables, options?: C): Promise<StartAuthenticationFlowMutation>;
|
|
15265
15873
|
refreshAuthenticationToken(variables: RefreshAuthenticationTokenMutationVariables, options?: C): Promise<RefreshAuthenticationTokenMutation>;
|
|
15266
15874
|
logout(variables?: LogoutMutationVariables, options?: C): Promise<LogoutMutation>;
|