@caido/sdk-frontend 0.37.0 → 0.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/__generated__/graphql-sdk.d.ts +1266 -747
- package/src/types/commands.d.ts +31 -1
- package/src/types/menu.d.ts +11 -1
- package/src/types/window.d.ts +5 -0
|
@@ -245,11 +245,13 @@ export type AutomateEntry = {
|
|
|
245
245
|
export type AutomateEntryRequestsArgs = {
|
|
246
246
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
247
247
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
248
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
248
249
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
249
250
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
250
251
|
order?: InputMaybe<AutomateEntryRequestOrderInput>;
|
|
251
252
|
};
|
|
252
253
|
export type AutomateEntryRequestsByOffsetArgs = {
|
|
254
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
253
255
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
254
256
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
255
257
|
order?: InputMaybe<AutomateEntryRequestOrderInput>;
|
|
@@ -320,6 +322,12 @@ export type AutomateNullPayload = {
|
|
|
320
322
|
export type AutomateNullPayloadInput = {
|
|
321
323
|
quantity: Scalars["Int"]["input"];
|
|
322
324
|
};
|
|
325
|
+
export type AutomateNumberPayload = {
|
|
326
|
+
range: Range;
|
|
327
|
+
};
|
|
328
|
+
export type AutomateNumberPayloadInput = {
|
|
329
|
+
range: RangeInput;
|
|
330
|
+
};
|
|
323
331
|
export type AutomatePayload = {
|
|
324
332
|
options: AutomatePayloadOptions;
|
|
325
333
|
preprocessors: Array<AutomatePreprocessor>;
|
|
@@ -328,18 +336,26 @@ export type AutomatePayloadInput = {
|
|
|
328
336
|
options: AutomatePayloadOptionsInput;
|
|
329
337
|
preprocessors: Array<AutomatePreprocessorInput>;
|
|
330
338
|
};
|
|
331
|
-
export type AutomatePayloadOptions = AutomateHostedFilePayload | AutomateNullPayload | AutomateSimpleListPayload;
|
|
339
|
+
export type AutomatePayloadOptions = AutomateHostedFilePayload | AutomateNullPayload | AutomateNumberPayload | AutomateSimpleListPayload;
|
|
332
340
|
export type AutomatePayloadOptionsInput = {
|
|
333
341
|
hostedFile: AutomateHostedFilePayloadInput;
|
|
334
342
|
null?: never;
|
|
343
|
+
number?: never;
|
|
335
344
|
simpleList?: never;
|
|
336
345
|
} | {
|
|
337
346
|
hostedFile?: never;
|
|
338
347
|
null: AutomateNullPayloadInput;
|
|
348
|
+
number?: never;
|
|
349
|
+
simpleList?: never;
|
|
350
|
+
} | {
|
|
351
|
+
hostedFile?: never;
|
|
352
|
+
null?: never;
|
|
353
|
+
number: AutomateNumberPayloadInput;
|
|
339
354
|
simpleList?: never;
|
|
340
355
|
} | {
|
|
341
356
|
hostedFile?: never;
|
|
342
357
|
null?: never;
|
|
358
|
+
number?: never;
|
|
343
359
|
simpleList: AutomateSimpleListPayloadInput;
|
|
344
360
|
};
|
|
345
361
|
export declare const AutomatePayloadStrategy: {
|
|
@@ -561,9 +577,6 @@ export type CancelDataExportTaskPayload = {
|
|
|
561
577
|
userError?: Maybe<CancelExportTaskError>;
|
|
562
578
|
};
|
|
563
579
|
export type CancelExportTaskError = OtherUserError | UnknownIdUserError;
|
|
564
|
-
export type CancelReplayTaskPayload = {
|
|
565
|
-
cancelledId: Scalars["ID"]["output"];
|
|
566
|
-
};
|
|
567
580
|
export type CancelRestoreBackupTaskError = OtherUserError | UnknownIdUserError;
|
|
568
581
|
export type CancelRestoreBackupTaskPayload = {
|
|
569
582
|
cancelledId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -1031,65 +1044,6 @@ export type EnableTamperRulePayload = {
|
|
|
1031
1044
|
export type FilterClauseFindingInput = {
|
|
1032
1045
|
reporter?: InputMaybe<Scalars["String"]["input"]>;
|
|
1033
1046
|
};
|
|
1034
|
-
export type FilterClauseInterceptEntryInput = {
|
|
1035
|
-
AND?: InputMaybe<Array<FilterClauseInterceptEntryInput>>;
|
|
1036
|
-
OR?: InputMaybe<Array<FilterClauseInterceptEntryInput>>;
|
|
1037
|
-
preset?: InputMaybe<FilterExprPresetInput>;
|
|
1038
|
-
request?: InputMaybe<FilterClauseRequestInput>;
|
|
1039
|
-
response?: InputMaybe<FilterClauseResponseInput>;
|
|
1040
|
-
};
|
|
1041
|
-
export type FilterClauseRequestInput = {
|
|
1042
|
-
fileExtension?: InputMaybe<FilterExprStringInput>;
|
|
1043
|
-
host?: InputMaybe<FilterExprStringInput>;
|
|
1044
|
-
method?: InputMaybe<FilterExprStringInput>;
|
|
1045
|
-
path?: InputMaybe<FilterExprStringInput>;
|
|
1046
|
-
port?: InputMaybe<FilterExprIntInput>;
|
|
1047
|
-
query?: InputMaybe<FilterExprStringInput>;
|
|
1048
|
-
raw?: InputMaybe<FilterExprStringInput>;
|
|
1049
|
-
};
|
|
1050
|
-
export type FilterClauseRequestResponseInput = {
|
|
1051
|
-
AND?: InputMaybe<Array<FilterClauseRequestResponseInput>>;
|
|
1052
|
-
OR?: InputMaybe<Array<FilterClauseRequestResponseInput>>;
|
|
1053
|
-
preset?: InputMaybe<FilterExprPresetInput>;
|
|
1054
|
-
request?: InputMaybe<FilterClauseRequestInput>;
|
|
1055
|
-
response?: InputMaybe<FilterClauseResponseInput>;
|
|
1056
|
-
source?: InputMaybe<FilterExprStringInput>;
|
|
1057
|
-
};
|
|
1058
|
-
export type FilterClauseResponseInput = {
|
|
1059
|
-
raw?: InputMaybe<FilterExprStringInput>;
|
|
1060
|
-
statusCode?: InputMaybe<FilterExprIntInput>;
|
|
1061
|
-
};
|
|
1062
|
-
export type FilterExprIntInput = {
|
|
1063
|
-
operator: FilterOperatorInt;
|
|
1064
|
-
value?: InputMaybe<Scalars["Int"]["input"]>;
|
|
1065
|
-
};
|
|
1066
|
-
export type FilterExprPresetInput = {
|
|
1067
|
-
id: Scalars["ID"]["input"];
|
|
1068
|
-
};
|
|
1069
|
-
export type FilterExprStringInput = {
|
|
1070
|
-
operator: FilterOperatorString;
|
|
1071
|
-
value?: InputMaybe<Scalars["String"]["input"]>;
|
|
1072
|
-
};
|
|
1073
|
-
export declare const FilterOperatorInt: {
|
|
1074
|
-
readonly Eq: "EQ";
|
|
1075
|
-
readonly Gt: "GT";
|
|
1076
|
-
readonly Gte: "GTE";
|
|
1077
|
-
readonly Lt: "LT";
|
|
1078
|
-
readonly Lte: "LTE";
|
|
1079
|
-
readonly Ne: "NE";
|
|
1080
|
-
};
|
|
1081
|
-
export type FilterOperatorInt = (typeof FilterOperatorInt)[keyof typeof FilterOperatorInt];
|
|
1082
|
-
export declare const FilterOperatorString: {
|
|
1083
|
-
readonly Cont: "CONT";
|
|
1084
|
-
readonly Eq: "EQ";
|
|
1085
|
-
readonly Like: "LIKE";
|
|
1086
|
-
readonly Ncont: "NCONT";
|
|
1087
|
-
readonly Ne: "NE";
|
|
1088
|
-
readonly Nlike: "NLIKE";
|
|
1089
|
-
readonly Nregex: "NREGEX";
|
|
1090
|
-
readonly Regex: "REGEX";
|
|
1091
|
-
};
|
|
1092
|
-
export type FilterOperatorString = (typeof FilterOperatorString)[keyof typeof FilterOperatorString];
|
|
1093
1047
|
export type FilterPreset = {
|
|
1094
1048
|
alias: Scalars["Alias"]["output"];
|
|
1095
1049
|
clause: Scalars["HTTPQL"]["output"];
|
|
@@ -1360,7 +1314,6 @@ export type MutationRoot = {
|
|
|
1360
1314
|
cancelAutomateTask: CancelAutomateTaskPayload;
|
|
1361
1315
|
cancelBackupTask: CancelBackupTaskPayload;
|
|
1362
1316
|
cancelDataExportTask: CancelDataExportTaskPayload;
|
|
1363
|
-
cancelReplayTask: CancelReplayTaskPayload;
|
|
1364
1317
|
cancelRestoreBackupTask: CancelRestoreBackupTaskPayload;
|
|
1365
1318
|
cancelTask: CancelTaskPayload;
|
|
1366
1319
|
createAssistantSession: CreateAssistantSessionPayload;
|
|
@@ -1468,9 +1421,6 @@ export type MutationRootCancelBackupTaskArgs = {
|
|
|
1468
1421
|
export type MutationRootCancelDataExportTaskArgs = {
|
|
1469
1422
|
id: Scalars["ID"]["input"];
|
|
1470
1423
|
};
|
|
1471
|
-
export type MutationRootCancelReplayTaskArgs = {
|
|
1472
|
-
id: Scalars["ID"]["input"];
|
|
1473
|
-
};
|
|
1474
1424
|
export type MutationRootCancelRestoreBackupTaskArgs = {
|
|
1475
1425
|
id: Scalars["ID"]["input"];
|
|
1476
1426
|
};
|
|
@@ -1541,7 +1491,7 @@ export type MutationRootDeleteHostedFileArgs = {
|
|
|
1541
1491
|
id: Scalars["ID"]["input"];
|
|
1542
1492
|
};
|
|
1543
1493
|
export type MutationRootDeleteInterceptEntriesArgs = {
|
|
1544
|
-
filter?: InputMaybe<
|
|
1494
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
1545
1495
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
1546
1496
|
};
|
|
1547
1497
|
export type MutationRootDeleteInterceptEntryArgs = {
|
|
@@ -1720,7 +1670,7 @@ export type MutationRootStartExportRequestsTaskArgs = {
|
|
|
1720
1670
|
};
|
|
1721
1671
|
export type MutationRootStartReplayTaskArgs = {
|
|
1722
1672
|
input: StartReplayTaskInput;
|
|
1723
|
-
|
|
1673
|
+
sessionId: Scalars["ID"]["input"];
|
|
1724
1674
|
};
|
|
1725
1675
|
export type MutationRootTestTamperRuleArgs = {
|
|
1726
1676
|
input: TestTamperRuleInput;
|
|
@@ -2003,14 +1953,14 @@ export type QueryRootFindingsByOffsetArgs = {
|
|
|
2003
1953
|
export type QueryRootInterceptEntriesArgs = {
|
|
2004
1954
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2005
1955
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
2006
|
-
filter?: InputMaybe<
|
|
1956
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2007
1957
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2008
1958
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2009
1959
|
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
2010
1960
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2011
1961
|
};
|
|
2012
1962
|
export type QueryRootInterceptEntriesByOffsetArgs = {
|
|
2013
|
-
filter?: InputMaybe<
|
|
1963
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2014
1964
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2015
1965
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2016
1966
|
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
@@ -2050,14 +2000,14 @@ export type QueryRootRequestArgs = {
|
|
|
2050
2000
|
export type QueryRootRequestsArgs = {
|
|
2051
2001
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2052
2002
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
2053
|
-
filter?: InputMaybe<
|
|
2003
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2054
2004
|
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2055
2005
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2056
2006
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
2057
2007
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2058
2008
|
};
|
|
2059
2009
|
export type QueryRootRequestsByOffsetArgs = {
|
|
2060
|
-
filter?: InputMaybe<
|
|
2010
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2061
2011
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2062
2012
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
2063
2013
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
@@ -2130,6 +2080,14 @@ export type QueryRootTamperRuleCollectionsArgs = {
|
|
|
2130
2080
|
export type QueryRootWorkflowArgs = {
|
|
2131
2081
|
id: Scalars["ID"]["input"];
|
|
2132
2082
|
};
|
|
2083
|
+
export type Range = {
|
|
2084
|
+
end: Scalars["Int"]["output"];
|
|
2085
|
+
start: Scalars["Int"]["output"];
|
|
2086
|
+
};
|
|
2087
|
+
export type RangeInput = {
|
|
2088
|
+
end: Scalars["Int"]["input"];
|
|
2089
|
+
start: Scalars["Int"]["input"];
|
|
2090
|
+
};
|
|
2133
2091
|
export type RankTamperRuleInput = {
|
|
2134
2092
|
afterId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2135
2093
|
beforeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -2223,10 +2181,14 @@ export type RenderRequestPayload = {
|
|
|
2223
2181
|
render?: Maybe<Scalars["Image"]["output"]>;
|
|
2224
2182
|
};
|
|
2225
2183
|
export type ReplayEntry = {
|
|
2184
|
+
connection: ConnectionInfo;
|
|
2185
|
+
createdAt: Scalars["Timestamp"]["output"];
|
|
2226
2186
|
error?: Maybe<Scalars["String"]["output"]>;
|
|
2227
2187
|
id: Scalars["ID"]["output"];
|
|
2228
|
-
|
|
2229
|
-
|
|
2188
|
+
raw: Scalars["Blob"]["output"];
|
|
2189
|
+
request?: Maybe<Request>;
|
|
2190
|
+
session: ReplaySession;
|
|
2191
|
+
settings: ReplayEntrySettings;
|
|
2230
2192
|
};
|
|
2231
2193
|
export type ReplayEntryConnection = {
|
|
2232
2194
|
count: Count;
|
|
@@ -2253,6 +2215,57 @@ export type ReplayEntryOrderInput = {
|
|
|
2253
2215
|
by: ReplayEntryOrderBy;
|
|
2254
2216
|
ordering: Ordering;
|
|
2255
2217
|
};
|
|
2218
|
+
export type ReplayEntrySettings = {
|
|
2219
|
+
placeholders: Array<ReplayPlaceholder>;
|
|
2220
|
+
};
|
|
2221
|
+
export type ReplayEntrySettingsInput = {
|
|
2222
|
+
placeholders: Array<ReplayPlaceholderInput>;
|
|
2223
|
+
updateContentLength: Scalars["Boolean"]["input"];
|
|
2224
|
+
};
|
|
2225
|
+
export type ReplayPlaceholder = {
|
|
2226
|
+
inputRange: Range;
|
|
2227
|
+
outputRange: Range;
|
|
2228
|
+
preprocessors: Array<ReplayPreprocessor>;
|
|
2229
|
+
};
|
|
2230
|
+
export type ReplayPlaceholderInput = {
|
|
2231
|
+
inputRange: RangeInput;
|
|
2232
|
+
outputRange: RangeInput;
|
|
2233
|
+
preprocessors: Array<ReplayPreprocessorInput>;
|
|
2234
|
+
};
|
|
2235
|
+
export type ReplayPrefixPreprocessor = {
|
|
2236
|
+
value: Scalars["String"]["output"];
|
|
2237
|
+
};
|
|
2238
|
+
export type ReplayPrefixPreprocessorInput = {
|
|
2239
|
+
value: Scalars["String"]["input"];
|
|
2240
|
+
};
|
|
2241
|
+
export type ReplayPreprocessor = {
|
|
2242
|
+
options: ReplayPreprocessorOptions;
|
|
2243
|
+
};
|
|
2244
|
+
export type ReplayPreprocessorInput = {
|
|
2245
|
+
options: ReplayPreprocessorOptionsInput;
|
|
2246
|
+
};
|
|
2247
|
+
export type ReplayPreprocessorOptions = ReplayPrefixPreprocessor | ReplaySuffixPreprocessor | ReplayUrlEncodePreprocessor | ReplayWorkflowPreprocessor;
|
|
2248
|
+
export type ReplayPreprocessorOptionsInput = {
|
|
2249
|
+
prefix: ReplayPrefixPreprocessorInput;
|
|
2250
|
+
suffix?: never;
|
|
2251
|
+
urlEncode?: never;
|
|
2252
|
+
workflow?: never;
|
|
2253
|
+
} | {
|
|
2254
|
+
prefix?: never;
|
|
2255
|
+
suffix: ReplaySuffixPreprocessorInput;
|
|
2256
|
+
urlEncode?: never;
|
|
2257
|
+
workflow?: never;
|
|
2258
|
+
} | {
|
|
2259
|
+
prefix?: never;
|
|
2260
|
+
suffix?: never;
|
|
2261
|
+
urlEncode: ReplayUrlEncodePreprocessorInput;
|
|
2262
|
+
workflow?: never;
|
|
2263
|
+
} | {
|
|
2264
|
+
prefix?: never;
|
|
2265
|
+
suffix?: never;
|
|
2266
|
+
urlEncode?: never;
|
|
2267
|
+
workflow: ReplayWorkflowPreprocessorInput;
|
|
2268
|
+
};
|
|
2256
2269
|
export type ReplaySession = {
|
|
2257
2270
|
activeEntry?: Maybe<ReplayEntry>;
|
|
2258
2271
|
collection: ReplaySessionCollection;
|
|
@@ -2306,17 +2319,30 @@ export type ReplaySessionEdge = {
|
|
|
2306
2319
|
/** The item at the end of the edge */
|
|
2307
2320
|
node: ReplaySession;
|
|
2308
2321
|
};
|
|
2309
|
-
export type
|
|
2310
|
-
|
|
2322
|
+
export type ReplaySuffixPreprocessor = {
|
|
2323
|
+
value: Scalars["String"]["output"];
|
|
2324
|
+
};
|
|
2325
|
+
export type ReplaySuffixPreprocessorInput = {
|
|
2326
|
+
value: Scalars["String"]["input"];
|
|
2327
|
+
};
|
|
2328
|
+
export type ReplayTask = Task & {
|
|
2329
|
+
createdAt: Scalars["DateTime"]["output"];
|
|
2311
2330
|
id: Scalars["ID"]["output"];
|
|
2312
|
-
replayEntry
|
|
2331
|
+
replayEntry: ReplayEntry;
|
|
2313
2332
|
};
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2333
|
+
export type ReplayUrlEncodePreprocessor = {
|
|
2334
|
+
charset?: Maybe<Scalars["String"]["output"]>;
|
|
2335
|
+
nonAscii: Scalars["Boolean"]["output"];
|
|
2336
|
+
};
|
|
2337
|
+
export type ReplayUrlEncodePreprocessorInput = {
|
|
2338
|
+
charset?: InputMaybe<Scalars["String"]["input"]>;
|
|
2339
|
+
nonAscii: Scalars["Boolean"]["input"];
|
|
2340
|
+
};
|
|
2341
|
+
export type ReplayWorkflowPreprocessor = {
|
|
2342
|
+
id: Scalars["ID"]["output"];
|
|
2343
|
+
};
|
|
2344
|
+
export type ReplayWorkflowPreprocessorInput = {
|
|
2345
|
+
id: Scalars["ID"]["input"];
|
|
2320
2346
|
};
|
|
2321
2347
|
export type Request = {
|
|
2322
2348
|
alteration: Alteration;
|
|
@@ -2359,10 +2385,6 @@ export type RequestMetadata = {
|
|
|
2359
2385
|
color?: Maybe<Scalars["String"]["output"]>;
|
|
2360
2386
|
id: Scalars["ID"]["output"];
|
|
2361
2387
|
};
|
|
2362
|
-
export type RequestOptions = {
|
|
2363
|
-
withTls: Scalars["Boolean"]["input"];
|
|
2364
|
-
withUpdatedContentLength: Scalars["Boolean"]["input"];
|
|
2365
|
-
};
|
|
2366
2388
|
export type RequestRawInput = {
|
|
2367
2389
|
connectionInfo: ConnectionInfoInput;
|
|
2368
2390
|
raw: Scalars["Blob"]["input"];
|
|
@@ -2559,7 +2581,7 @@ export type StartAutomateTaskPayload = {
|
|
|
2559
2581
|
automateTask?: Maybe<AutomateTask>;
|
|
2560
2582
|
};
|
|
2561
2583
|
export type StartExportRequestsTaskInput = {
|
|
2562
|
-
filter?: InputMaybe<
|
|
2584
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2563
2585
|
format: DataExportFormat;
|
|
2564
2586
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2565
2587
|
settings: DataExportSettings;
|
|
@@ -2569,14 +2591,15 @@ export type StartExportRequestsTaskPayload = {
|
|
|
2569
2591
|
task?: Maybe<DataExportTask>;
|
|
2570
2592
|
};
|
|
2571
2593
|
export type StartExportRequestsTaskPayloadError = OtherUserError | PermissionDeniedUserError;
|
|
2594
|
+
export type StartReplayTaskError = OtherUserError | TaskInProgressUserError;
|
|
2572
2595
|
export type StartReplayTaskInput = {
|
|
2573
|
-
|
|
2574
|
-
options: RequestOptions;
|
|
2575
|
-
port: Scalars["Port"]["input"];
|
|
2596
|
+
connection: ConnectionInfoInput;
|
|
2576
2597
|
raw: Scalars["Blob"]["input"];
|
|
2598
|
+
settings: ReplayEntrySettingsInput;
|
|
2577
2599
|
};
|
|
2578
2600
|
export type StartReplayTaskPayload = {
|
|
2579
|
-
|
|
2601
|
+
error?: Maybe<StartReplayTaskError>;
|
|
2602
|
+
task?: Maybe<ReplayTask>;
|
|
2580
2603
|
};
|
|
2581
2604
|
export type StartedBackupTaskPayload = {
|
|
2582
2605
|
task: BackupTask;
|
|
@@ -2759,7 +2782,6 @@ export type SubscriptionRoot = {
|
|
|
2759
2782
|
updatedProject: UpdatedProjectPayload;
|
|
2760
2783
|
updatedReplaySession: UpdatedReplaySessionPayload;
|
|
2761
2784
|
updatedReplaySessionCollection: UpdatedReplaySessionCollectionPayload;
|
|
2762
|
-
updatedReplayTask: UpdatedReplayTaskPayload;
|
|
2763
2785
|
updatedRequest: UpdatedRequestPayload;
|
|
2764
2786
|
updatedRequestMetadata: UpdatedRequestMetadataPayload;
|
|
2765
2787
|
updatedScope: UpdatedScopePayload;
|
|
@@ -2774,12 +2796,15 @@ export type SubscriptionRoot = {
|
|
|
2774
2796
|
export type SubscriptionRootCreatedAuthenticationTokenArgs = {
|
|
2775
2797
|
requestId: Scalars["ID"]["input"];
|
|
2776
2798
|
};
|
|
2799
|
+
export type SubscriptionRootCreatedAutomateEntryRequestArgs = {
|
|
2800
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2801
|
+
};
|
|
2777
2802
|
export type SubscriptionRootCreatedInterceptEntryArgs = {
|
|
2778
|
-
filter?: InputMaybe<
|
|
2803
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2779
2804
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2780
2805
|
};
|
|
2781
2806
|
export type SubscriptionRootCreatedRequestArgs = {
|
|
2782
|
-
filter?: InputMaybe<
|
|
2807
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2783
2808
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2784
2809
|
};
|
|
2785
2810
|
export type SubscriptionRootCreatedSitemapEntryArgs = {
|
|
@@ -2790,11 +2815,11 @@ export type SubscriptionRootCreatedStreamArgs = {
|
|
|
2790
2815
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2791
2816
|
};
|
|
2792
2817
|
export type SubscriptionRootUpdatedInterceptEntryArgs = {
|
|
2793
|
-
filter?: InputMaybe<
|
|
2818
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2794
2819
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2795
2820
|
};
|
|
2796
2821
|
export type SubscriptionRootUpdatedRequestArgs = {
|
|
2797
|
-
filter?: InputMaybe<
|
|
2822
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2798
2823
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2799
2824
|
};
|
|
2800
2825
|
export type SubscriptionRootUpdatedSitemapEntryArgs = {
|
|
@@ -3050,10 +3075,6 @@ export type UpdatedReplaySessionPayload = {
|
|
|
3050
3075
|
sessionEdge: ReplaySessionEdge;
|
|
3051
3076
|
snapshot: Scalars["Snapshot"]["output"];
|
|
3052
3077
|
};
|
|
3053
|
-
export type UpdatedReplayTaskPayload = {
|
|
3054
|
-
replayTaskEdge: ReplayTaskEdge;
|
|
3055
|
-
snapshot: Scalars["Snapshot"]["output"];
|
|
3056
|
-
};
|
|
3057
3078
|
export type UpdatedRequestMetadataPayload = {
|
|
3058
3079
|
metadata: RequestMetadata;
|
|
3059
3080
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -3342,6 +3363,12 @@ export type AutomateEntryFullFragment = {
|
|
|
3342
3363
|
} | {
|
|
3343
3364
|
__typename: "AutomateNullPayload";
|
|
3344
3365
|
quantity: number;
|
|
3366
|
+
} | {
|
|
3367
|
+
__typename: "AutomateNumberPayload";
|
|
3368
|
+
range: {
|
|
3369
|
+
start: number;
|
|
3370
|
+
end: number;
|
|
3371
|
+
};
|
|
3345
3372
|
} | {
|
|
3346
3373
|
__typename: "AutomateSimpleListPayload";
|
|
3347
3374
|
list: Array<string>;
|
|
@@ -3518,6 +3545,12 @@ export type AutomateSessionFullFragment = {
|
|
|
3518
3545
|
} | {
|
|
3519
3546
|
__typename: "AutomateNullPayload";
|
|
3520
3547
|
quantity: number;
|
|
3548
|
+
} | {
|
|
3549
|
+
__typename: "AutomateNumberPayload";
|
|
3550
|
+
range: {
|
|
3551
|
+
start: number;
|
|
3552
|
+
end: number;
|
|
3553
|
+
};
|
|
3521
3554
|
} | {
|
|
3522
3555
|
__typename: "AutomateSimpleListPayload";
|
|
3523
3556
|
list: Array<string>;
|
|
@@ -3580,6 +3613,12 @@ export type AutomateSettingsFullFragment = {
|
|
|
3580
3613
|
} | {
|
|
3581
3614
|
__typename: "AutomateNullPayload";
|
|
3582
3615
|
quantity: number;
|
|
3616
|
+
} | {
|
|
3617
|
+
__typename: "AutomateNumberPayload";
|
|
3618
|
+
range: {
|
|
3619
|
+
start: number;
|
|
3620
|
+
end: number;
|
|
3621
|
+
};
|
|
3583
3622
|
} | {
|
|
3584
3623
|
__typename: "AutomateSimpleListPayload";
|
|
3585
3624
|
list: Array<string>;
|
|
@@ -3627,6 +3666,12 @@ export type AutomatePayloadFullFragment = {
|
|
|
3627
3666
|
} | {
|
|
3628
3667
|
__typename: "AutomateNullPayload";
|
|
3629
3668
|
quantity: number;
|
|
3669
|
+
} | {
|
|
3670
|
+
__typename: "AutomateNumberPayload";
|
|
3671
|
+
range: {
|
|
3672
|
+
start: number;
|
|
3673
|
+
end: number;
|
|
3674
|
+
};
|
|
3630
3675
|
} | {
|
|
3631
3676
|
__typename: "AutomateSimpleListPayload";
|
|
3632
3677
|
list: Array<string>;
|
|
@@ -3701,6 +3746,13 @@ export type NullPayloadOptionsFullFragment = {
|
|
|
3701
3746
|
__typename: "AutomateNullPayload";
|
|
3702
3747
|
quantity: number;
|
|
3703
3748
|
};
|
|
3749
|
+
export type NumberPayloadOptionsFullFragment = {
|
|
3750
|
+
__typename: "AutomateNumberPayload";
|
|
3751
|
+
range: {
|
|
3752
|
+
start: number;
|
|
3753
|
+
end: number;
|
|
3754
|
+
};
|
|
3755
|
+
};
|
|
3704
3756
|
export type AutomateTaskMetaFragment = {
|
|
3705
3757
|
id: string;
|
|
3706
3758
|
paused: boolean;
|
|
@@ -4345,7 +4397,7 @@ export type InterceptEntryMetaFragment = {
|
|
|
4345
4397
|
} | undefined | null;
|
|
4346
4398
|
};
|
|
4347
4399
|
};
|
|
4348
|
-
export type
|
|
4400
|
+
export type InterceptEntryEdgeMetaFragment = {
|
|
4349
4401
|
__typename: "InterceptEntryEdge";
|
|
4350
4402
|
cursor: string;
|
|
4351
4403
|
node: {
|
|
@@ -4705,12 +4757,24 @@ export type ProjectFullFragment = {
|
|
|
4705
4757
|
id: string;
|
|
4706
4758
|
}>;
|
|
4707
4759
|
};
|
|
4760
|
+
export type RangeFullFragment = {
|
|
4761
|
+
start: number;
|
|
4762
|
+
end: number;
|
|
4763
|
+
};
|
|
4708
4764
|
export type ReplayEntryMetaFragment = {
|
|
4709
4765
|
__typename: "ReplayEntry";
|
|
4710
4766
|
id: string;
|
|
4711
4767
|
error?: string | undefined | null;
|
|
4712
|
-
|
|
4713
|
-
|
|
4768
|
+
connection: {
|
|
4769
|
+
__typename: "ConnectionInfo";
|
|
4770
|
+
host: string;
|
|
4771
|
+
port: number;
|
|
4772
|
+
isTls: boolean;
|
|
4773
|
+
};
|
|
4774
|
+
session: {
|
|
4775
|
+
id: string;
|
|
4776
|
+
};
|
|
4777
|
+
request?: {
|
|
4714
4778
|
__typename: "Request";
|
|
4715
4779
|
id: string;
|
|
4716
4780
|
host: string;
|
|
@@ -4740,7 +4804,53 @@ export type ReplayEntryMetaFragment = {
|
|
|
4740
4804
|
alteration: Alteration;
|
|
4741
4805
|
edited: boolean;
|
|
4742
4806
|
} | undefined | null;
|
|
4807
|
+
} | undefined | null;
|
|
4808
|
+
};
|
|
4809
|
+
export type ReplayEntryFullFragment = {
|
|
4810
|
+
__typename: "ReplayEntry";
|
|
4811
|
+
raw: string;
|
|
4812
|
+
id: string;
|
|
4813
|
+
error?: string | undefined | null;
|
|
4814
|
+
connection: {
|
|
4815
|
+
__typename: "ConnectionInfo";
|
|
4816
|
+
host: string;
|
|
4817
|
+
port: number;
|
|
4818
|
+
isTls: boolean;
|
|
4743
4819
|
};
|
|
4820
|
+
session: {
|
|
4821
|
+
id: string;
|
|
4822
|
+
};
|
|
4823
|
+
request?: {
|
|
4824
|
+
__typename: "Request";
|
|
4825
|
+
id: string;
|
|
4826
|
+
host: string;
|
|
4827
|
+
port: number;
|
|
4828
|
+
path: string;
|
|
4829
|
+
query: string;
|
|
4830
|
+
method: string;
|
|
4831
|
+
edited: boolean;
|
|
4832
|
+
isTls: boolean;
|
|
4833
|
+
length: number;
|
|
4834
|
+
alteration: Alteration;
|
|
4835
|
+
fileExtension?: string | undefined | null;
|
|
4836
|
+
source: Source;
|
|
4837
|
+
createdAt: Date;
|
|
4838
|
+
metadata: {
|
|
4839
|
+
__typename: "RequestMetadata";
|
|
4840
|
+
id: string;
|
|
4841
|
+
color?: string | undefined | null;
|
|
4842
|
+
};
|
|
4843
|
+
response?: {
|
|
4844
|
+
__typename: "Response";
|
|
4845
|
+
id: string;
|
|
4846
|
+
statusCode: number;
|
|
4847
|
+
roundtripTime: number;
|
|
4848
|
+
length: number;
|
|
4849
|
+
createdAt: Date;
|
|
4850
|
+
alteration: Alteration;
|
|
4851
|
+
edited: boolean;
|
|
4852
|
+
} | undefined | null;
|
|
4853
|
+
} | undefined | null;
|
|
4744
4854
|
};
|
|
4745
4855
|
export type ReplaySessionMetaFragment = {
|
|
4746
4856
|
__typename: "ReplaySession";
|
|
@@ -4750,8 +4860,16 @@ export type ReplaySessionMetaFragment = {
|
|
|
4750
4860
|
__typename: "ReplayEntry";
|
|
4751
4861
|
id: string;
|
|
4752
4862
|
error?: string | undefined | null;
|
|
4753
|
-
|
|
4754
|
-
|
|
4863
|
+
connection: {
|
|
4864
|
+
__typename: "ConnectionInfo";
|
|
4865
|
+
host: string;
|
|
4866
|
+
port: number;
|
|
4867
|
+
isTls: boolean;
|
|
4868
|
+
};
|
|
4869
|
+
session: {
|
|
4870
|
+
id: string;
|
|
4871
|
+
};
|
|
4872
|
+
request?: {
|
|
4755
4873
|
__typename: "Request";
|
|
4756
4874
|
id: string;
|
|
4757
4875
|
host: string;
|
|
@@ -4781,7 +4899,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
4781
4899
|
alteration: Alteration;
|
|
4782
4900
|
edited: boolean;
|
|
4783
4901
|
} | undefined | null;
|
|
4784
|
-
};
|
|
4902
|
+
} | undefined | null;
|
|
4785
4903
|
} | undefined | null;
|
|
4786
4904
|
collection: {
|
|
4787
4905
|
id: string;
|
|
@@ -4791,8 +4909,16 @@ export type ReplaySessionMetaFragment = {
|
|
|
4791
4909
|
__typename: "ReplayEntry";
|
|
4792
4910
|
id: string;
|
|
4793
4911
|
error?: string | undefined | null;
|
|
4794
|
-
|
|
4795
|
-
|
|
4912
|
+
connection: {
|
|
4913
|
+
__typename: "ConnectionInfo";
|
|
4914
|
+
host: string;
|
|
4915
|
+
port: number;
|
|
4916
|
+
isTls: boolean;
|
|
4917
|
+
};
|
|
4918
|
+
session: {
|
|
4919
|
+
id: string;
|
|
4920
|
+
};
|
|
4921
|
+
request?: {
|
|
4796
4922
|
__typename: "Request";
|
|
4797
4923
|
id: string;
|
|
4798
4924
|
host: string;
|
|
@@ -4822,7 +4948,7 @@ export type ReplaySessionMetaFragment = {
|
|
|
4822
4948
|
alteration: Alteration;
|
|
4823
4949
|
edited: boolean;
|
|
4824
4950
|
} | undefined | null;
|
|
4825
|
-
};
|
|
4951
|
+
} | undefined | null;
|
|
4826
4952
|
}>;
|
|
4827
4953
|
pageInfo: {
|
|
4828
4954
|
__typename: "PageInfo";
|
|
@@ -4850,8 +4976,16 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
4850
4976
|
__typename: "ReplayEntry";
|
|
4851
4977
|
id: string;
|
|
4852
4978
|
error?: string | undefined | null;
|
|
4853
|
-
|
|
4854
|
-
|
|
4979
|
+
connection: {
|
|
4980
|
+
__typename: "ConnectionInfo";
|
|
4981
|
+
host: string;
|
|
4982
|
+
port: number;
|
|
4983
|
+
isTls: boolean;
|
|
4984
|
+
};
|
|
4985
|
+
session: {
|
|
4986
|
+
id: string;
|
|
4987
|
+
};
|
|
4988
|
+
request?: {
|
|
4855
4989
|
__typename: "Request";
|
|
4856
4990
|
id: string;
|
|
4857
4991
|
host: string;
|
|
@@ -4881,7 +5015,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
4881
5015
|
alteration: Alteration;
|
|
4882
5016
|
edited: boolean;
|
|
4883
5017
|
} | undefined | null;
|
|
4884
|
-
};
|
|
5018
|
+
} | undefined | null;
|
|
4885
5019
|
} | undefined | null;
|
|
4886
5020
|
collection: {
|
|
4887
5021
|
id: string;
|
|
@@ -4891,8 +5025,16 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
4891
5025
|
__typename: "ReplayEntry";
|
|
4892
5026
|
id: string;
|
|
4893
5027
|
error?: string | undefined | null;
|
|
4894
|
-
|
|
4895
|
-
|
|
5028
|
+
connection: {
|
|
5029
|
+
__typename: "ConnectionInfo";
|
|
5030
|
+
host: string;
|
|
5031
|
+
port: number;
|
|
5032
|
+
isTls: boolean;
|
|
5033
|
+
};
|
|
5034
|
+
session: {
|
|
5035
|
+
id: string;
|
|
5036
|
+
};
|
|
5037
|
+
request?: {
|
|
4896
5038
|
__typename: "Request";
|
|
4897
5039
|
id: string;
|
|
4898
5040
|
host: string;
|
|
@@ -4922,7 +5064,7 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
4922
5064
|
alteration: Alteration;
|
|
4923
5065
|
edited: boolean;
|
|
4924
5066
|
} | undefined | null;
|
|
4925
|
-
};
|
|
5067
|
+
} | undefined | null;
|
|
4926
5068
|
}>;
|
|
4927
5069
|
pageInfo: {
|
|
4928
5070
|
__typename: "PageInfo";
|
|
@@ -4942,13 +5084,21 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
4942
5084
|
export type ReplayTaskMetaFragment = {
|
|
4943
5085
|
__typename: "ReplayTask";
|
|
4944
5086
|
id: string;
|
|
4945
|
-
|
|
4946
|
-
replayEntry
|
|
5087
|
+
createdAt: Date;
|
|
5088
|
+
replayEntry: {
|
|
4947
5089
|
__typename: "ReplayEntry";
|
|
4948
5090
|
id: string;
|
|
4949
5091
|
error?: string | undefined | null;
|
|
4950
|
-
|
|
4951
|
-
|
|
5092
|
+
connection: {
|
|
5093
|
+
__typename: "ConnectionInfo";
|
|
5094
|
+
host: string;
|
|
5095
|
+
port: number;
|
|
5096
|
+
isTls: boolean;
|
|
5097
|
+
};
|
|
5098
|
+
session: {
|
|
5099
|
+
id: string;
|
|
5100
|
+
};
|
|
5101
|
+
request?: {
|
|
4952
5102
|
__typename: "Request";
|
|
4953
5103
|
id: string;
|
|
4954
5104
|
host: string;
|
|
@@ -4978,88 +5128,42 @@ export type ReplayTaskMetaFragment = {
|
|
|
4978
5128
|
alteration: Alteration;
|
|
4979
5129
|
edited: boolean;
|
|
4980
5130
|
} | undefined | null;
|
|
4981
|
-
};
|
|
4982
|
-
}
|
|
5131
|
+
} | undefined | null;
|
|
5132
|
+
};
|
|
4983
5133
|
};
|
|
4984
|
-
export type
|
|
4985
|
-
__typename: "
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
|
|
5134
|
+
export type RequestFullFragment = {
|
|
5135
|
+
__typename: "Request";
|
|
5136
|
+
raw: string;
|
|
5137
|
+
id: string;
|
|
5138
|
+
host: string;
|
|
5139
|
+
port: number;
|
|
5140
|
+
path: string;
|
|
5141
|
+
query: string;
|
|
5142
|
+
method: string;
|
|
5143
|
+
edited: boolean;
|
|
5144
|
+
isTls: boolean;
|
|
5145
|
+
length: number;
|
|
5146
|
+
alteration: Alteration;
|
|
5147
|
+
fileExtension?: string | undefined | null;
|
|
5148
|
+
source: Source;
|
|
5149
|
+
createdAt: Date;
|
|
5150
|
+
edits: Array<{
|
|
5151
|
+
__typename: "Request";
|
|
4989
5152
|
id: string;
|
|
4990
|
-
|
|
4991
|
-
|
|
4992
|
-
|
|
4993
|
-
|
|
4994
|
-
|
|
4995
|
-
|
|
4996
|
-
|
|
4997
|
-
|
|
4998
|
-
|
|
4999
|
-
|
|
5000
|
-
|
|
5001
|
-
|
|
5002
|
-
|
|
5003
|
-
|
|
5004
|
-
edited: boolean;
|
|
5005
|
-
isTls: boolean;
|
|
5006
|
-
length: number;
|
|
5007
|
-
alteration: Alteration;
|
|
5008
|
-
fileExtension?: string | undefined | null;
|
|
5009
|
-
source: Source;
|
|
5010
|
-
createdAt: Date;
|
|
5011
|
-
metadata: {
|
|
5012
|
-
__typename: "RequestMetadata";
|
|
5013
|
-
id: string;
|
|
5014
|
-
color?: string | undefined | null;
|
|
5015
|
-
};
|
|
5016
|
-
response?: {
|
|
5017
|
-
__typename: "Response";
|
|
5018
|
-
id: string;
|
|
5019
|
-
statusCode: number;
|
|
5020
|
-
roundtripTime: number;
|
|
5021
|
-
length: number;
|
|
5022
|
-
createdAt: Date;
|
|
5023
|
-
alteration: Alteration;
|
|
5024
|
-
edited: boolean;
|
|
5025
|
-
} | undefined | null;
|
|
5026
|
-
};
|
|
5027
|
-
} | undefined | null;
|
|
5028
|
-
};
|
|
5029
|
-
};
|
|
5030
|
-
export type RequestFullFragment = {
|
|
5031
|
-
__typename: "Request";
|
|
5032
|
-
raw: string;
|
|
5033
|
-
id: string;
|
|
5034
|
-
host: string;
|
|
5035
|
-
port: number;
|
|
5036
|
-
path: string;
|
|
5037
|
-
query: string;
|
|
5038
|
-
method: string;
|
|
5039
|
-
edited: boolean;
|
|
5040
|
-
isTls: boolean;
|
|
5041
|
-
length: number;
|
|
5042
|
-
alteration: Alteration;
|
|
5043
|
-
fileExtension?: string | undefined | null;
|
|
5044
|
-
source: Source;
|
|
5045
|
-
createdAt: Date;
|
|
5046
|
-
edits: Array<{
|
|
5047
|
-
__typename: "Request";
|
|
5048
|
-
id: string;
|
|
5049
|
-
host: string;
|
|
5050
|
-
port: number;
|
|
5051
|
-
path: string;
|
|
5052
|
-
query: string;
|
|
5053
|
-
method: string;
|
|
5054
|
-
edited: boolean;
|
|
5055
|
-
isTls: boolean;
|
|
5056
|
-
length: number;
|
|
5057
|
-
alteration: Alteration;
|
|
5058
|
-
fileExtension?: string | undefined | null;
|
|
5059
|
-
source: Source;
|
|
5060
|
-
createdAt: Date;
|
|
5061
|
-
metadata: {
|
|
5062
|
-
__typename: "RequestMetadata";
|
|
5153
|
+
host: string;
|
|
5154
|
+
port: number;
|
|
5155
|
+
path: string;
|
|
5156
|
+
query: string;
|
|
5157
|
+
method: string;
|
|
5158
|
+
edited: boolean;
|
|
5159
|
+
isTls: boolean;
|
|
5160
|
+
length: number;
|
|
5161
|
+
alteration: Alteration;
|
|
5162
|
+
fileExtension?: string | undefined | null;
|
|
5163
|
+
source: Source;
|
|
5164
|
+
createdAt: Date;
|
|
5165
|
+
metadata: {
|
|
5166
|
+
__typename: "RequestMetadata";
|
|
5063
5167
|
id: string;
|
|
5064
5168
|
color?: string | undefined | null;
|
|
5065
5169
|
};
|
|
@@ -5416,10 +5520,17 @@ export type TamperRuleFullFragment = {
|
|
|
5416
5520
|
id: string;
|
|
5417
5521
|
};
|
|
5418
5522
|
};
|
|
5419
|
-
|
|
5523
|
+
type TaskMeta_ReplayTask_Fragment = {
|
|
5524
|
+
__typename: "ReplayTask";
|
|
5525
|
+
id: string;
|
|
5526
|
+
createdAt: Date;
|
|
5527
|
+
};
|
|
5528
|
+
type TaskMeta_WorkflowTask_Fragment = {
|
|
5529
|
+
__typename: "WorkflowTask";
|
|
5420
5530
|
id: string;
|
|
5421
5531
|
createdAt: Date;
|
|
5422
5532
|
};
|
|
5533
|
+
export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
5423
5534
|
export type UserProfileFullFragment = {
|
|
5424
5535
|
__typename: "UserProfile";
|
|
5425
5536
|
identity: {
|
|
@@ -5466,6 +5577,7 @@ export type WorkflowNodeDefinitionFullFragment = {
|
|
|
5466
5577
|
raw: JSONValue;
|
|
5467
5578
|
};
|
|
5468
5579
|
export type WorkflowTaskMetaFragment = {
|
|
5580
|
+
__typename: "WorkflowTask";
|
|
5469
5581
|
id: string;
|
|
5470
5582
|
createdAt: Date;
|
|
5471
5583
|
workflow: {
|
|
@@ -5672,6 +5784,12 @@ export type RenameAutomateEntryMutation = {
|
|
|
5672
5784
|
} | {
|
|
5673
5785
|
__typename: "AutomateNullPayload";
|
|
5674
5786
|
quantity: number;
|
|
5787
|
+
} | {
|
|
5788
|
+
__typename: "AutomateNumberPayload";
|
|
5789
|
+
range: {
|
|
5790
|
+
start: number;
|
|
5791
|
+
end: number;
|
|
5792
|
+
};
|
|
5675
5793
|
} | {
|
|
5676
5794
|
__typename: "AutomateSimpleListPayload";
|
|
5677
5795
|
list: Array<string>;
|
|
@@ -5747,6 +5865,12 @@ export type CreateAutomateSessionMutation = {
|
|
|
5747
5865
|
} | {
|
|
5748
5866
|
__typename: "AutomateNullPayload";
|
|
5749
5867
|
quantity: number;
|
|
5868
|
+
} | {
|
|
5869
|
+
__typename: "AutomateNumberPayload";
|
|
5870
|
+
range: {
|
|
5871
|
+
start: number;
|
|
5872
|
+
end: number;
|
|
5873
|
+
};
|
|
5750
5874
|
} | {
|
|
5751
5875
|
__typename: "AutomateSimpleListPayload";
|
|
5752
5876
|
list: Array<string>;
|
|
@@ -5837,6 +5961,12 @@ export type RenameAutomateSessionMutation = {
|
|
|
5837
5961
|
} | {
|
|
5838
5962
|
__typename: "AutomateNullPayload";
|
|
5839
5963
|
quantity: number;
|
|
5964
|
+
} | {
|
|
5965
|
+
__typename: "AutomateNumberPayload";
|
|
5966
|
+
range: {
|
|
5967
|
+
start: number;
|
|
5968
|
+
end: number;
|
|
5969
|
+
};
|
|
5840
5970
|
} | {
|
|
5841
5971
|
__typename: "AutomateSimpleListPayload";
|
|
5842
5972
|
list: Array<string>;
|
|
@@ -5919,6 +6049,12 @@ export type UpdateAutomateSessionMutation = {
|
|
|
5919
6049
|
} | {
|
|
5920
6050
|
__typename: "AutomateNullPayload";
|
|
5921
6051
|
quantity: number;
|
|
6052
|
+
} | {
|
|
6053
|
+
__typename: "AutomateNumberPayload";
|
|
6054
|
+
range: {
|
|
6055
|
+
start: number;
|
|
6056
|
+
end: number;
|
|
6057
|
+
};
|
|
5922
6058
|
} | {
|
|
5923
6059
|
__typename: "AutomateSimpleListPayload";
|
|
5924
6060
|
list: Array<string>;
|
|
@@ -6456,7 +6592,7 @@ export type DeleteFindingsMutation = {
|
|
|
6456
6592
|
};
|
|
6457
6593
|
};
|
|
6458
6594
|
export type DeleteInterceptEntriesMutationVariables = Exact<{
|
|
6459
|
-
filter?: InputMaybe<
|
|
6595
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
6460
6596
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
6461
6597
|
}>;
|
|
6462
6598
|
export type DeleteInterceptEntriesMutation = {
|
|
@@ -6904,8 +7040,16 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
6904
7040
|
__typename: "ReplayEntry";
|
|
6905
7041
|
id: string;
|
|
6906
7042
|
error?: string | undefined | null;
|
|
6907
|
-
|
|
6908
|
-
|
|
7043
|
+
connection: {
|
|
7044
|
+
__typename: "ConnectionInfo";
|
|
7045
|
+
host: string;
|
|
7046
|
+
port: number;
|
|
7047
|
+
isTls: boolean;
|
|
7048
|
+
};
|
|
7049
|
+
session: {
|
|
7050
|
+
id: string;
|
|
7051
|
+
};
|
|
7052
|
+
request?: {
|
|
6909
7053
|
__typename: "Request";
|
|
6910
7054
|
id: string;
|
|
6911
7055
|
host: string;
|
|
@@ -6935,7 +7079,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
6935
7079
|
alteration: Alteration;
|
|
6936
7080
|
edited: boolean;
|
|
6937
7081
|
} | undefined | null;
|
|
6938
|
-
};
|
|
7082
|
+
} | undefined | null;
|
|
6939
7083
|
} | undefined | null;
|
|
6940
7084
|
collection: {
|
|
6941
7085
|
id: string;
|
|
@@ -6945,8 +7089,16 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
6945
7089
|
__typename: "ReplayEntry";
|
|
6946
7090
|
id: string;
|
|
6947
7091
|
error?: string | undefined | null;
|
|
6948
|
-
|
|
6949
|
-
|
|
7092
|
+
connection: {
|
|
7093
|
+
__typename: "ConnectionInfo";
|
|
7094
|
+
host: string;
|
|
7095
|
+
port: number;
|
|
7096
|
+
isTls: boolean;
|
|
7097
|
+
};
|
|
7098
|
+
session: {
|
|
7099
|
+
id: string;
|
|
7100
|
+
};
|
|
7101
|
+
request?: {
|
|
6950
7102
|
__typename: "Request";
|
|
6951
7103
|
id: string;
|
|
6952
7104
|
host: string;
|
|
@@ -6976,7 +7128,7 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
6976
7128
|
alteration: Alteration;
|
|
6977
7129
|
edited: boolean;
|
|
6978
7130
|
} | undefined | null;
|
|
6979
|
-
};
|
|
7131
|
+
} | undefined | null;
|
|
6980
7132
|
}>;
|
|
6981
7133
|
pageInfo: {
|
|
6982
7134
|
__typename: "PageInfo";
|
|
@@ -7012,8 +7164,16 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
7012
7164
|
__typename: "ReplayEntry";
|
|
7013
7165
|
id: string;
|
|
7014
7166
|
error?: string | undefined | null;
|
|
7015
|
-
|
|
7016
|
-
|
|
7167
|
+
connection: {
|
|
7168
|
+
__typename: "ConnectionInfo";
|
|
7169
|
+
host: string;
|
|
7170
|
+
port: number;
|
|
7171
|
+
isTls: boolean;
|
|
7172
|
+
};
|
|
7173
|
+
session: {
|
|
7174
|
+
id: string;
|
|
7175
|
+
};
|
|
7176
|
+
request?: {
|
|
7017
7177
|
__typename: "Request";
|
|
7018
7178
|
id: string;
|
|
7019
7179
|
host: string;
|
|
@@ -7043,7 +7203,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
7043
7203
|
alteration: Alteration;
|
|
7044
7204
|
edited: boolean;
|
|
7045
7205
|
} | undefined | null;
|
|
7046
|
-
};
|
|
7206
|
+
} | undefined | null;
|
|
7047
7207
|
} | undefined | null;
|
|
7048
7208
|
collection: {
|
|
7049
7209
|
id: string;
|
|
@@ -7053,8 +7213,16 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
7053
7213
|
__typename: "ReplayEntry";
|
|
7054
7214
|
id: string;
|
|
7055
7215
|
error?: string | undefined | null;
|
|
7056
|
-
|
|
7057
|
-
|
|
7216
|
+
connection: {
|
|
7217
|
+
__typename: "ConnectionInfo";
|
|
7218
|
+
host: string;
|
|
7219
|
+
port: number;
|
|
7220
|
+
isTls: boolean;
|
|
7221
|
+
};
|
|
7222
|
+
session: {
|
|
7223
|
+
id: string;
|
|
7224
|
+
};
|
|
7225
|
+
request?: {
|
|
7058
7226
|
__typename: "Request";
|
|
7059
7227
|
id: string;
|
|
7060
7228
|
host: string;
|
|
@@ -7084,7 +7252,7 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
7084
7252
|
alteration: Alteration;
|
|
7085
7253
|
edited: boolean;
|
|
7086
7254
|
} | undefined | null;
|
|
7087
|
-
};
|
|
7255
|
+
} | undefined | null;
|
|
7088
7256
|
}>;
|
|
7089
7257
|
pageInfo: {
|
|
7090
7258
|
__typename: "PageInfo";
|
|
@@ -7125,8 +7293,16 @@ export type RenameReplaySessionMutation = {
|
|
|
7125
7293
|
__typename: "ReplayEntry";
|
|
7126
7294
|
id: string;
|
|
7127
7295
|
error?: string | undefined | null;
|
|
7128
|
-
|
|
7129
|
-
|
|
7296
|
+
connection: {
|
|
7297
|
+
__typename: "ConnectionInfo";
|
|
7298
|
+
host: string;
|
|
7299
|
+
port: number;
|
|
7300
|
+
isTls: boolean;
|
|
7301
|
+
};
|
|
7302
|
+
session: {
|
|
7303
|
+
id: string;
|
|
7304
|
+
};
|
|
7305
|
+
request?: {
|
|
7130
7306
|
__typename: "Request";
|
|
7131
7307
|
id: string;
|
|
7132
7308
|
host: string;
|
|
@@ -7156,7 +7332,7 @@ export type RenameReplaySessionMutation = {
|
|
|
7156
7332
|
alteration: Alteration;
|
|
7157
7333
|
edited: boolean;
|
|
7158
7334
|
} | undefined | null;
|
|
7159
|
-
};
|
|
7335
|
+
} | undefined | null;
|
|
7160
7336
|
} | undefined | null;
|
|
7161
7337
|
collection: {
|
|
7162
7338
|
id: string;
|
|
@@ -7166,8 +7342,16 @@ export type RenameReplaySessionMutation = {
|
|
|
7166
7342
|
__typename: "ReplayEntry";
|
|
7167
7343
|
id: string;
|
|
7168
7344
|
error?: string | undefined | null;
|
|
7169
|
-
|
|
7170
|
-
|
|
7345
|
+
connection: {
|
|
7346
|
+
__typename: "ConnectionInfo";
|
|
7347
|
+
host: string;
|
|
7348
|
+
port: number;
|
|
7349
|
+
isTls: boolean;
|
|
7350
|
+
};
|
|
7351
|
+
session: {
|
|
7352
|
+
id: string;
|
|
7353
|
+
};
|
|
7354
|
+
request?: {
|
|
7171
7355
|
__typename: "Request";
|
|
7172
7356
|
id: string;
|
|
7173
7357
|
host: string;
|
|
@@ -7197,7 +7381,7 @@ export type RenameReplaySessionMutation = {
|
|
|
7197
7381
|
alteration: Alteration;
|
|
7198
7382
|
edited: boolean;
|
|
7199
7383
|
} | undefined | null;
|
|
7200
|
-
};
|
|
7384
|
+
} | undefined | null;
|
|
7201
7385
|
}>;
|
|
7202
7386
|
pageInfo: {
|
|
7203
7387
|
__typename: "PageInfo";
|
|
@@ -7229,8 +7413,16 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
7229
7413
|
__typename: "ReplayEntry";
|
|
7230
7414
|
id: string;
|
|
7231
7415
|
error?: string | undefined | null;
|
|
7232
|
-
|
|
7233
|
-
|
|
7416
|
+
connection: {
|
|
7417
|
+
__typename: "ConnectionInfo";
|
|
7418
|
+
host: string;
|
|
7419
|
+
port: number;
|
|
7420
|
+
isTls: boolean;
|
|
7421
|
+
};
|
|
7422
|
+
session: {
|
|
7423
|
+
id: string;
|
|
7424
|
+
};
|
|
7425
|
+
request?: {
|
|
7234
7426
|
__typename: "Request";
|
|
7235
7427
|
id: string;
|
|
7236
7428
|
host: string;
|
|
@@ -7260,7 +7452,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
7260
7452
|
alteration: Alteration;
|
|
7261
7453
|
edited: boolean;
|
|
7262
7454
|
} | undefined | null;
|
|
7263
|
-
};
|
|
7455
|
+
} | undefined | null;
|
|
7264
7456
|
} | undefined | null;
|
|
7265
7457
|
collection: {
|
|
7266
7458
|
id: string;
|
|
@@ -7270,8 +7462,16 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
7270
7462
|
__typename: "ReplayEntry";
|
|
7271
7463
|
id: string;
|
|
7272
7464
|
error?: string | undefined | null;
|
|
7273
|
-
|
|
7274
|
-
|
|
7465
|
+
connection: {
|
|
7466
|
+
__typename: "ConnectionInfo";
|
|
7467
|
+
host: string;
|
|
7468
|
+
port: number;
|
|
7469
|
+
isTls: boolean;
|
|
7470
|
+
};
|
|
7471
|
+
session: {
|
|
7472
|
+
id: string;
|
|
7473
|
+
};
|
|
7474
|
+
request?: {
|
|
7275
7475
|
__typename: "Request";
|
|
7276
7476
|
id: string;
|
|
7277
7477
|
host: string;
|
|
@@ -7301,7 +7501,7 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
7301
7501
|
alteration: Alteration;
|
|
7302
7502
|
edited: boolean;
|
|
7303
7503
|
} | undefined | null;
|
|
7304
|
-
};
|
|
7504
|
+
} | undefined | null;
|
|
7305
7505
|
}>;
|
|
7306
7506
|
pageInfo: {
|
|
7307
7507
|
__typename: "PageInfo";
|
|
@@ -7348,8 +7548,16 @@ export type CreateReplaySessionMutation = {
|
|
|
7348
7548
|
__typename: "ReplayEntry";
|
|
7349
7549
|
id: string;
|
|
7350
7550
|
error?: string | undefined | null;
|
|
7351
|
-
|
|
7352
|
-
|
|
7551
|
+
connection: {
|
|
7552
|
+
__typename: "ConnectionInfo";
|
|
7553
|
+
host: string;
|
|
7554
|
+
port: number;
|
|
7555
|
+
isTls: boolean;
|
|
7556
|
+
};
|
|
7557
|
+
session: {
|
|
7558
|
+
id: string;
|
|
7559
|
+
};
|
|
7560
|
+
request?: {
|
|
7353
7561
|
__typename: "Request";
|
|
7354
7562
|
id: string;
|
|
7355
7563
|
host: string;
|
|
@@ -7379,7 +7587,7 @@ export type CreateReplaySessionMutation = {
|
|
|
7379
7587
|
alteration: Alteration;
|
|
7380
7588
|
edited: boolean;
|
|
7381
7589
|
} | undefined | null;
|
|
7382
|
-
};
|
|
7590
|
+
} | undefined | null;
|
|
7383
7591
|
} | undefined | null;
|
|
7384
7592
|
collection: {
|
|
7385
7593
|
id: string;
|
|
@@ -7389,8 +7597,16 @@ export type CreateReplaySessionMutation = {
|
|
|
7389
7597
|
__typename: "ReplayEntry";
|
|
7390
7598
|
id: string;
|
|
7391
7599
|
error?: string | undefined | null;
|
|
7392
|
-
|
|
7393
|
-
|
|
7600
|
+
connection: {
|
|
7601
|
+
__typename: "ConnectionInfo";
|
|
7602
|
+
host: string;
|
|
7603
|
+
port: number;
|
|
7604
|
+
isTls: boolean;
|
|
7605
|
+
};
|
|
7606
|
+
session: {
|
|
7607
|
+
id: string;
|
|
7608
|
+
};
|
|
7609
|
+
request?: {
|
|
7394
7610
|
__typename: "Request";
|
|
7395
7611
|
id: string;
|
|
7396
7612
|
host: string;
|
|
@@ -7420,7 +7636,7 @@ export type CreateReplaySessionMutation = {
|
|
|
7420
7636
|
alteration: Alteration;
|
|
7421
7637
|
edited: boolean;
|
|
7422
7638
|
} | undefined | null;
|
|
7423
|
-
};
|
|
7639
|
+
} | undefined | null;
|
|
7424
7640
|
}>;
|
|
7425
7641
|
pageInfo: {
|
|
7426
7642
|
__typename: "PageInfo";
|
|
@@ -7441,8 +7657,16 @@ export type CreateReplaySessionMutation = {
|
|
|
7441
7657
|
__typename: "ReplayEntry";
|
|
7442
7658
|
id: string;
|
|
7443
7659
|
error?: string | undefined | null;
|
|
7444
|
-
|
|
7445
|
-
|
|
7660
|
+
connection: {
|
|
7661
|
+
__typename: "ConnectionInfo";
|
|
7662
|
+
host: string;
|
|
7663
|
+
port: number;
|
|
7664
|
+
isTls: boolean;
|
|
7665
|
+
};
|
|
7666
|
+
session: {
|
|
7667
|
+
id: string;
|
|
7668
|
+
};
|
|
7669
|
+
request?: {
|
|
7446
7670
|
__typename: "Request";
|
|
7447
7671
|
id: string;
|
|
7448
7672
|
host: string;
|
|
@@ -7472,15 +7696,23 @@ export type CreateReplaySessionMutation = {
|
|
|
7472
7696
|
alteration: Alteration;
|
|
7473
7697
|
edited: boolean;
|
|
7474
7698
|
} | undefined | null;
|
|
7475
|
-
};
|
|
7699
|
+
} | undefined | null;
|
|
7476
7700
|
} | undefined | null;
|
|
7477
7701
|
entries: {
|
|
7478
7702
|
nodes: Array<{
|
|
7479
7703
|
__typename: "ReplayEntry";
|
|
7480
7704
|
id: string;
|
|
7481
7705
|
error?: string | undefined | null;
|
|
7482
|
-
|
|
7483
|
-
|
|
7706
|
+
connection: {
|
|
7707
|
+
__typename: "ConnectionInfo";
|
|
7708
|
+
host: string;
|
|
7709
|
+
port: number;
|
|
7710
|
+
isTls: boolean;
|
|
7711
|
+
};
|
|
7712
|
+
session: {
|
|
7713
|
+
id: string;
|
|
7714
|
+
};
|
|
7715
|
+
request?: {
|
|
7484
7716
|
__typename: "Request";
|
|
7485
7717
|
id: string;
|
|
7486
7718
|
host: string;
|
|
@@ -7510,7 +7742,7 @@ export type CreateReplaySessionMutation = {
|
|
|
7510
7742
|
alteration: Alteration;
|
|
7511
7743
|
edited: boolean;
|
|
7512
7744
|
} | undefined | null;
|
|
7513
|
-
};
|
|
7745
|
+
} | undefined | null;
|
|
7514
7746
|
}>;
|
|
7515
7747
|
pageInfo: {
|
|
7516
7748
|
__typename: "PageInfo";
|
|
@@ -7542,8 +7774,16 @@ export type MoveReplaySessionMutation = {
|
|
|
7542
7774
|
__typename: "ReplayEntry";
|
|
7543
7775
|
id: string;
|
|
7544
7776
|
error?: string | undefined | null;
|
|
7545
|
-
|
|
7546
|
-
|
|
7777
|
+
connection: {
|
|
7778
|
+
__typename: "ConnectionInfo";
|
|
7779
|
+
host: string;
|
|
7780
|
+
port: number;
|
|
7781
|
+
isTls: boolean;
|
|
7782
|
+
};
|
|
7783
|
+
session: {
|
|
7784
|
+
id: string;
|
|
7785
|
+
};
|
|
7786
|
+
request?: {
|
|
7547
7787
|
__typename: "Request";
|
|
7548
7788
|
id: string;
|
|
7549
7789
|
host: string;
|
|
@@ -7573,7 +7813,7 @@ export type MoveReplaySessionMutation = {
|
|
|
7573
7813
|
alteration: Alteration;
|
|
7574
7814
|
edited: boolean;
|
|
7575
7815
|
} | undefined | null;
|
|
7576
|
-
};
|
|
7816
|
+
} | undefined | null;
|
|
7577
7817
|
} | undefined | null;
|
|
7578
7818
|
collection: {
|
|
7579
7819
|
id: string;
|
|
@@ -7583,8 +7823,16 @@ export type MoveReplaySessionMutation = {
|
|
|
7583
7823
|
__typename: "ReplayEntry";
|
|
7584
7824
|
id: string;
|
|
7585
7825
|
error?: string | undefined | null;
|
|
7586
|
-
|
|
7587
|
-
|
|
7826
|
+
connection: {
|
|
7827
|
+
__typename: "ConnectionInfo";
|
|
7828
|
+
host: string;
|
|
7829
|
+
port: number;
|
|
7830
|
+
isTls: boolean;
|
|
7831
|
+
};
|
|
7832
|
+
session: {
|
|
7833
|
+
id: string;
|
|
7834
|
+
};
|
|
7835
|
+
request?: {
|
|
7588
7836
|
__typename: "Request";
|
|
7589
7837
|
id: string;
|
|
7590
7838
|
host: string;
|
|
@@ -7614,7 +7862,7 @@ export type MoveReplaySessionMutation = {
|
|
|
7614
7862
|
alteration: Alteration;
|
|
7615
7863
|
edited: boolean;
|
|
7616
7864
|
} | undefined | null;
|
|
7617
|
-
};
|
|
7865
|
+
} | undefined | null;
|
|
7618
7866
|
}>;
|
|
7619
7867
|
pageInfo: {
|
|
7620
7868
|
__typename: "PageInfo";
|
|
@@ -7633,21 +7881,29 @@ export type MoveReplaySessionMutation = {
|
|
|
7633
7881
|
};
|
|
7634
7882
|
};
|
|
7635
7883
|
export type StartReplayTaskMutationVariables = Exact<{
|
|
7636
|
-
|
|
7884
|
+
sessionId: Scalars["ID"]["input"];
|
|
7637
7885
|
input: StartReplayTaskInput;
|
|
7638
7886
|
}>;
|
|
7639
7887
|
export type StartReplayTaskMutation = {
|
|
7640
7888
|
startReplayTask: {
|
|
7641
|
-
task
|
|
7889
|
+
task?: {
|
|
7642
7890
|
__typename: "ReplayTask";
|
|
7643
7891
|
id: string;
|
|
7644
|
-
|
|
7645
|
-
replayEntry
|
|
7892
|
+
createdAt: Date;
|
|
7893
|
+
replayEntry: {
|
|
7646
7894
|
__typename: "ReplayEntry";
|
|
7647
7895
|
id: string;
|
|
7648
7896
|
error?: string | undefined | null;
|
|
7649
|
-
|
|
7650
|
-
|
|
7897
|
+
connection: {
|
|
7898
|
+
__typename: "ConnectionInfo";
|
|
7899
|
+
host: string;
|
|
7900
|
+
port: number;
|
|
7901
|
+
isTls: boolean;
|
|
7902
|
+
};
|
|
7903
|
+
session: {
|
|
7904
|
+
id: string;
|
|
7905
|
+
};
|
|
7906
|
+
request?: {
|
|
7651
7907
|
__typename: "Request";
|
|
7652
7908
|
id: string;
|
|
7653
7909
|
host: string;
|
|
@@ -7677,17 +7933,17 @@ export type StartReplayTaskMutation = {
|
|
|
7677
7933
|
alteration: Alteration;
|
|
7678
7934
|
edited: boolean;
|
|
7679
7935
|
} | undefined | null;
|
|
7680
|
-
};
|
|
7681
|
-
}
|
|
7682
|
-
};
|
|
7683
|
-
|
|
7684
|
-
|
|
7685
|
-
|
|
7686
|
-
|
|
7687
|
-
|
|
7688
|
-
|
|
7689
|
-
|
|
7690
|
-
|
|
7936
|
+
} | undefined | null;
|
|
7937
|
+
};
|
|
7938
|
+
} | undefined | null;
|
|
7939
|
+
error?: {
|
|
7940
|
+
__typename: "OtherUserError";
|
|
7941
|
+
code: string;
|
|
7942
|
+
} | {
|
|
7943
|
+
__typename: "TaskInProgressUserError";
|
|
7944
|
+
taskId: string;
|
|
7945
|
+
code: string;
|
|
7946
|
+
} | undefined | null;
|
|
7691
7947
|
};
|
|
7692
7948
|
};
|
|
7693
7949
|
export type UpdateRequestMetadataMutationVariables = Exact<{
|
|
@@ -8079,18 +8335,34 @@ export type MoveTamperRuleMutation = {
|
|
|
8079
8335
|
} | undefined | null;
|
|
8080
8336
|
};
|
|
8081
8337
|
};
|
|
8082
|
-
export type
|
|
8083
|
-
|
|
8338
|
+
export type CancelTaskMutationVariables = Exact<{
|
|
8339
|
+
id: Scalars["ID"]["input"];
|
|
8084
8340
|
}>;
|
|
8085
|
-
export type
|
|
8086
|
-
|
|
8087
|
-
|
|
8088
|
-
|
|
8089
|
-
|
|
8090
|
-
|
|
8091
|
-
} |
|
|
8092
|
-
|
|
8093
|
-
|
|
8341
|
+
export type CancelTaskMutation = {
|
|
8342
|
+
cancelTask: {
|
|
8343
|
+
cancelledId?: string | undefined | null;
|
|
8344
|
+
error?: {
|
|
8345
|
+
__typename: "OtherUserError";
|
|
8346
|
+
code: string;
|
|
8347
|
+
} | {
|
|
8348
|
+
__typename: "UnknownIdUserError";
|
|
8349
|
+
id: string;
|
|
8350
|
+
code: string;
|
|
8351
|
+
} | undefined | null;
|
|
8352
|
+
};
|
|
8353
|
+
};
|
|
8354
|
+
export type UpdateViewerSettingsMutationVariables = Exact<{
|
|
8355
|
+
input: UpdateViewerSettingsInput;
|
|
8356
|
+
}>;
|
|
8357
|
+
export type UpdateViewerSettingsMutation = {
|
|
8358
|
+
updateViewerSettings: {
|
|
8359
|
+
settings?: {
|
|
8360
|
+
__typename: "UserSettings";
|
|
8361
|
+
data: JSONValue;
|
|
8362
|
+
migrations: JSONValue;
|
|
8363
|
+
} | undefined | null;
|
|
8364
|
+
};
|
|
8365
|
+
};
|
|
8094
8366
|
export type CreateWorkflowMutationVariables = Exact<{
|
|
8095
8367
|
input: CreateWorkflowInput;
|
|
8096
8368
|
}>;
|
|
@@ -8248,6 +8520,7 @@ export type RunActiveWorkflowMutation = {
|
|
|
8248
8520
|
code: string;
|
|
8249
8521
|
} | undefined | null;
|
|
8250
8522
|
task?: {
|
|
8523
|
+
__typename: "WorkflowTask";
|
|
8251
8524
|
id: string;
|
|
8252
8525
|
createdAt: Date;
|
|
8253
8526
|
workflow: {
|
|
@@ -8412,6 +8685,12 @@ export type AutomateEntryQuery = {
|
|
|
8412
8685
|
} | {
|
|
8413
8686
|
__typename: "AutomateNullPayload";
|
|
8414
8687
|
quantity: number;
|
|
8688
|
+
} | {
|
|
8689
|
+
__typename: "AutomateNumberPayload";
|
|
8690
|
+
range: {
|
|
8691
|
+
start: number;
|
|
8692
|
+
end: number;
|
|
8693
|
+
};
|
|
8415
8694
|
} | {
|
|
8416
8695
|
__typename: "AutomateSimpleListPayload";
|
|
8417
8696
|
list: Array<string>;
|
|
@@ -8452,6 +8731,7 @@ export type AutomateEntryRequestsQueryVariables = Exact<{
|
|
|
8452
8731
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
8453
8732
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8454
8733
|
order?: InputMaybe<AutomateEntryRequestOrderInput>;
|
|
8734
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
8455
8735
|
}>;
|
|
8456
8736
|
export type AutomateEntryRequestsQuery = {
|
|
8457
8737
|
automateEntry?: {
|
|
@@ -8532,6 +8812,12 @@ export type AutomateEntryRequestsQuery = {
|
|
|
8532
8812
|
} | {
|
|
8533
8813
|
__typename: "AutomateNullPayload";
|
|
8534
8814
|
quantity: number;
|
|
8815
|
+
} | {
|
|
8816
|
+
__typename: "AutomateNumberPayload";
|
|
8817
|
+
range: {
|
|
8818
|
+
start: number;
|
|
8819
|
+
end: number;
|
|
8820
|
+
};
|
|
8535
8821
|
} | {
|
|
8536
8822
|
__typename: "AutomateSimpleListPayload";
|
|
8537
8823
|
list: Array<string>;
|
|
@@ -8570,6 +8856,7 @@ export type AutomateEntryRequestsByOffsetQueryVariables = Exact<{
|
|
|
8570
8856
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8571
8857
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
8572
8858
|
order?: InputMaybe<AutomateEntryRequestOrderInput>;
|
|
8859
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
8573
8860
|
}>;
|
|
8574
8861
|
export type AutomateEntryRequestsByOffsetQuery = {
|
|
8575
8862
|
automateEntry?: {
|
|
@@ -8650,6 +8937,12 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
8650
8937
|
} | {
|
|
8651
8938
|
__typename: "AutomateNullPayload";
|
|
8652
8939
|
quantity: number;
|
|
8940
|
+
} | {
|
|
8941
|
+
__typename: "AutomateNumberPayload";
|
|
8942
|
+
range: {
|
|
8943
|
+
start: number;
|
|
8944
|
+
end: number;
|
|
8945
|
+
};
|
|
8653
8946
|
} | {
|
|
8654
8947
|
__typename: "AutomateSimpleListPayload";
|
|
8655
8948
|
list: Array<string>;
|
|
@@ -8685,6 +8978,7 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
8685
8978
|
};
|
|
8686
8979
|
export type AutomateEntryRequestsCountQueryVariables = Exact<{
|
|
8687
8980
|
id: Scalars["ID"]["input"];
|
|
8981
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
8688
8982
|
}>;
|
|
8689
8983
|
export type AutomateEntryRequestsCountQuery = {
|
|
8690
8984
|
automateEntry?: {
|
|
@@ -8723,6 +9017,12 @@ export type AutomateEntryRequestsCountQuery = {
|
|
|
8723
9017
|
} | {
|
|
8724
9018
|
__typename: "AutomateNullPayload";
|
|
8725
9019
|
quantity: number;
|
|
9020
|
+
} | {
|
|
9021
|
+
__typename: "AutomateNumberPayload";
|
|
9022
|
+
range: {
|
|
9023
|
+
start: number;
|
|
9024
|
+
end: number;
|
|
9025
|
+
};
|
|
8726
9026
|
} | {
|
|
8727
9027
|
__typename: "AutomateSimpleListPayload";
|
|
8728
9028
|
list: Array<string>;
|
|
@@ -8820,6 +9120,12 @@ export type AutomateSessionQuery = {
|
|
|
8820
9120
|
} | {
|
|
8821
9121
|
__typename: "AutomateNullPayload";
|
|
8822
9122
|
quantity: number;
|
|
9123
|
+
} | {
|
|
9124
|
+
__typename: "AutomateNumberPayload";
|
|
9125
|
+
range: {
|
|
9126
|
+
start: number;
|
|
9127
|
+
end: number;
|
|
9128
|
+
};
|
|
8823
9129
|
} | {
|
|
8824
9130
|
__typename: "AutomateSimpleListPayload";
|
|
8825
9131
|
list: Array<string>;
|
|
@@ -9281,6 +9587,209 @@ export type FindingReportersQueryVariables = Exact<{
|
|
|
9281
9587
|
export type FindingReportersQuery = {
|
|
9282
9588
|
findingReporters: Array<string>;
|
|
9283
9589
|
};
|
|
9590
|
+
export type InterceptEntriesQueryVariables = Exact<{
|
|
9591
|
+
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
9592
|
+
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9593
|
+
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
9594
|
+
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9595
|
+
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
9596
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
9597
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9598
|
+
}>;
|
|
9599
|
+
export type InterceptEntriesQuery = {
|
|
9600
|
+
interceptEntries: {
|
|
9601
|
+
snapshot: number;
|
|
9602
|
+
edges: Array<{
|
|
9603
|
+
__typename: "InterceptEntryEdge";
|
|
9604
|
+
cursor: string;
|
|
9605
|
+
node: {
|
|
9606
|
+
__typename: "InterceptEntry";
|
|
9607
|
+
id: string;
|
|
9608
|
+
request: {
|
|
9609
|
+
__typename: "Request";
|
|
9610
|
+
id: string;
|
|
9611
|
+
host: string;
|
|
9612
|
+
port: number;
|
|
9613
|
+
path: string;
|
|
9614
|
+
query: string;
|
|
9615
|
+
method: string;
|
|
9616
|
+
edited: boolean;
|
|
9617
|
+
isTls: boolean;
|
|
9618
|
+
length: number;
|
|
9619
|
+
alteration: Alteration;
|
|
9620
|
+
fileExtension?: string | undefined | null;
|
|
9621
|
+
source: Source;
|
|
9622
|
+
createdAt: Date;
|
|
9623
|
+
metadata: {
|
|
9624
|
+
__typename: "RequestMetadata";
|
|
9625
|
+
id: string;
|
|
9626
|
+
color?: string | undefined | null;
|
|
9627
|
+
};
|
|
9628
|
+
response?: {
|
|
9629
|
+
__typename: "Response";
|
|
9630
|
+
id: string;
|
|
9631
|
+
statusCode: number;
|
|
9632
|
+
roundtripTime: number;
|
|
9633
|
+
length: number;
|
|
9634
|
+
createdAt: Date;
|
|
9635
|
+
alteration: Alteration;
|
|
9636
|
+
edited: boolean;
|
|
9637
|
+
} | undefined | null;
|
|
9638
|
+
};
|
|
9639
|
+
};
|
|
9640
|
+
}>;
|
|
9641
|
+
pageInfo: {
|
|
9642
|
+
__typename: "PageInfo";
|
|
9643
|
+
hasPreviousPage: boolean;
|
|
9644
|
+
hasNextPage: boolean;
|
|
9645
|
+
startCursor?: string | undefined | null;
|
|
9646
|
+
endCursor?: string | undefined | null;
|
|
9647
|
+
};
|
|
9648
|
+
};
|
|
9649
|
+
};
|
|
9650
|
+
export type InterceptEntriesByOffsetQueryVariables = Exact<{
|
|
9651
|
+
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9652
|
+
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9653
|
+
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
9654
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
9655
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9656
|
+
}>;
|
|
9657
|
+
export type InterceptEntriesByOffsetQuery = {
|
|
9658
|
+
interceptEntriesByOffset: {
|
|
9659
|
+
snapshot: number;
|
|
9660
|
+
edges: Array<{
|
|
9661
|
+
__typename: "InterceptEntryEdge";
|
|
9662
|
+
cursor: string;
|
|
9663
|
+
node: {
|
|
9664
|
+
__typename: "InterceptEntry";
|
|
9665
|
+
id: string;
|
|
9666
|
+
request: {
|
|
9667
|
+
__typename: "Request";
|
|
9668
|
+
id: string;
|
|
9669
|
+
host: string;
|
|
9670
|
+
port: number;
|
|
9671
|
+
path: string;
|
|
9672
|
+
query: string;
|
|
9673
|
+
method: string;
|
|
9674
|
+
edited: boolean;
|
|
9675
|
+
isTls: boolean;
|
|
9676
|
+
length: number;
|
|
9677
|
+
alteration: Alteration;
|
|
9678
|
+
fileExtension?: string | undefined | null;
|
|
9679
|
+
source: Source;
|
|
9680
|
+
createdAt: Date;
|
|
9681
|
+
metadata: {
|
|
9682
|
+
__typename: "RequestMetadata";
|
|
9683
|
+
id: string;
|
|
9684
|
+
color?: string | undefined | null;
|
|
9685
|
+
};
|
|
9686
|
+
response?: {
|
|
9687
|
+
__typename: "Response";
|
|
9688
|
+
id: string;
|
|
9689
|
+
statusCode: number;
|
|
9690
|
+
roundtripTime: number;
|
|
9691
|
+
length: number;
|
|
9692
|
+
createdAt: Date;
|
|
9693
|
+
alteration: Alteration;
|
|
9694
|
+
edited: boolean;
|
|
9695
|
+
} | undefined | null;
|
|
9696
|
+
};
|
|
9697
|
+
};
|
|
9698
|
+
}>;
|
|
9699
|
+
pageInfo: {
|
|
9700
|
+
__typename: "PageInfo";
|
|
9701
|
+
hasPreviousPage: boolean;
|
|
9702
|
+
hasNextPage: boolean;
|
|
9703
|
+
startCursor?: string | undefined | null;
|
|
9704
|
+
endCursor?: string | undefined | null;
|
|
9705
|
+
};
|
|
9706
|
+
};
|
|
9707
|
+
};
|
|
9708
|
+
export type InterceptEntryQueryVariables = Exact<{
|
|
9709
|
+
id: Scalars["ID"]["input"];
|
|
9710
|
+
}>;
|
|
9711
|
+
export type InterceptEntryQuery = {
|
|
9712
|
+
interceptEntry?: {
|
|
9713
|
+
__typename: "InterceptEntry";
|
|
9714
|
+
id: string;
|
|
9715
|
+
request: {
|
|
9716
|
+
__typename: "Request";
|
|
9717
|
+
id: string;
|
|
9718
|
+
host: string;
|
|
9719
|
+
port: number;
|
|
9720
|
+
path: string;
|
|
9721
|
+
query: string;
|
|
9722
|
+
method: string;
|
|
9723
|
+
edited: boolean;
|
|
9724
|
+
isTls: boolean;
|
|
9725
|
+
length: number;
|
|
9726
|
+
alteration: Alteration;
|
|
9727
|
+
fileExtension?: string | undefined | null;
|
|
9728
|
+
source: Source;
|
|
9729
|
+
createdAt: Date;
|
|
9730
|
+
raw: string;
|
|
9731
|
+
metadata: {
|
|
9732
|
+
__typename: "RequestMetadata";
|
|
9733
|
+
id: string;
|
|
9734
|
+
color?: string | undefined | null;
|
|
9735
|
+
};
|
|
9736
|
+
response?: {
|
|
9737
|
+
__typename: "Response";
|
|
9738
|
+
id: string;
|
|
9739
|
+
statusCode: number;
|
|
9740
|
+
roundtripTime: number;
|
|
9741
|
+
length: number;
|
|
9742
|
+
createdAt: Date;
|
|
9743
|
+
alteration: Alteration;
|
|
9744
|
+
edited: boolean;
|
|
9745
|
+
} | undefined | null;
|
|
9746
|
+
edits: Array<{
|
|
9747
|
+
__typename: "Request";
|
|
9748
|
+
id: string;
|
|
9749
|
+
host: string;
|
|
9750
|
+
port: number;
|
|
9751
|
+
path: string;
|
|
9752
|
+
query: string;
|
|
9753
|
+
method: string;
|
|
9754
|
+
edited: boolean;
|
|
9755
|
+
isTls: boolean;
|
|
9756
|
+
length: number;
|
|
9757
|
+
alteration: Alteration;
|
|
9758
|
+
fileExtension?: string | undefined | null;
|
|
9759
|
+
source: Source;
|
|
9760
|
+
createdAt: Date;
|
|
9761
|
+
metadata: {
|
|
9762
|
+
__typename: "RequestMetadata";
|
|
9763
|
+
id: string;
|
|
9764
|
+
color?: string | undefined | null;
|
|
9765
|
+
};
|
|
9766
|
+
response?: {
|
|
9767
|
+
__typename: "Response";
|
|
9768
|
+
id: string;
|
|
9769
|
+
statusCode: number;
|
|
9770
|
+
roundtripTime: number;
|
|
9771
|
+
length: number;
|
|
9772
|
+
createdAt: Date;
|
|
9773
|
+
alteration: Alteration;
|
|
9774
|
+
edited: boolean;
|
|
9775
|
+
} | undefined | null;
|
|
9776
|
+
}>;
|
|
9777
|
+
};
|
|
9778
|
+
} | undefined | null;
|
|
9779
|
+
};
|
|
9780
|
+
export type InterceptEntryCountQueryVariables = Exact<{
|
|
9781
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
9782
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9783
|
+
}>;
|
|
9784
|
+
export type InterceptEntryCountQuery = {
|
|
9785
|
+
interceptEntries: {
|
|
9786
|
+
count: {
|
|
9787
|
+
__typename: "Count";
|
|
9788
|
+
value: number;
|
|
9789
|
+
snapshot: number;
|
|
9790
|
+
};
|
|
9791
|
+
};
|
|
9792
|
+
};
|
|
9284
9793
|
export type HostedFilesQueryVariables = Exact<{
|
|
9285
9794
|
[key: string]: never;
|
|
9286
9795
|
}>;
|
|
@@ -9489,211 +9998,8 @@ export type InterceptStatusQueryVariables = Exact<{
|
|
|
9489
9998
|
export type InterceptStatusQuery = {
|
|
9490
9999
|
interceptStatus: InterceptStatus;
|
|
9491
10000
|
};
|
|
9492
|
-
export type
|
|
9493
|
-
|
|
9494
|
-
first?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9495
|
-
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
9496
|
-
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9497
|
-
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
9498
|
-
filter?: InputMaybe<FilterClauseInterceptEntryInput>;
|
|
9499
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9500
|
-
}>;
|
|
9501
|
-
export type InterceptEntriesQuery = {
|
|
9502
|
-
interceptEntries: {
|
|
9503
|
-
snapshot: number;
|
|
9504
|
-
edges: Array<{
|
|
9505
|
-
__typename: "InterceptEntryEdge";
|
|
9506
|
-
cursor: string;
|
|
9507
|
-
node: {
|
|
9508
|
-
__typename: "InterceptEntry";
|
|
9509
|
-
id: string;
|
|
9510
|
-
request: {
|
|
9511
|
-
__typename: "Request";
|
|
9512
|
-
id: string;
|
|
9513
|
-
host: string;
|
|
9514
|
-
port: number;
|
|
9515
|
-
path: string;
|
|
9516
|
-
query: string;
|
|
9517
|
-
method: string;
|
|
9518
|
-
edited: boolean;
|
|
9519
|
-
isTls: boolean;
|
|
9520
|
-
length: number;
|
|
9521
|
-
alteration: Alteration;
|
|
9522
|
-
fileExtension?: string | undefined | null;
|
|
9523
|
-
source: Source;
|
|
9524
|
-
createdAt: Date;
|
|
9525
|
-
metadata: {
|
|
9526
|
-
__typename: "RequestMetadata";
|
|
9527
|
-
id: string;
|
|
9528
|
-
color?: string | undefined | null;
|
|
9529
|
-
};
|
|
9530
|
-
response?: {
|
|
9531
|
-
__typename: "Response";
|
|
9532
|
-
id: string;
|
|
9533
|
-
statusCode: number;
|
|
9534
|
-
roundtripTime: number;
|
|
9535
|
-
length: number;
|
|
9536
|
-
createdAt: Date;
|
|
9537
|
-
alteration: Alteration;
|
|
9538
|
-
edited: boolean;
|
|
9539
|
-
} | undefined | null;
|
|
9540
|
-
};
|
|
9541
|
-
};
|
|
9542
|
-
}>;
|
|
9543
|
-
pageInfo: {
|
|
9544
|
-
__typename: "PageInfo";
|
|
9545
|
-
hasPreviousPage: boolean;
|
|
9546
|
-
hasNextPage: boolean;
|
|
9547
|
-
startCursor?: string | undefined | null;
|
|
9548
|
-
endCursor?: string | undefined | null;
|
|
9549
|
-
};
|
|
9550
|
-
};
|
|
9551
|
-
};
|
|
9552
|
-
export type InterceptEntriesByOffsetQueryVariables = Exact<{
|
|
9553
|
-
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9554
|
-
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
9555
|
-
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
9556
|
-
filter?: InputMaybe<FilterClauseInterceptEntryInput>;
|
|
9557
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9558
|
-
}>;
|
|
9559
|
-
export type InterceptEntriesByOffsetQuery = {
|
|
9560
|
-
interceptEntriesByOffset: {
|
|
9561
|
-
snapshot: number;
|
|
9562
|
-
edges: Array<{
|
|
9563
|
-
__typename: "InterceptEntryEdge";
|
|
9564
|
-
cursor: string;
|
|
9565
|
-
node: {
|
|
9566
|
-
__typename: "InterceptEntry";
|
|
9567
|
-
id: string;
|
|
9568
|
-
request: {
|
|
9569
|
-
__typename: "Request";
|
|
9570
|
-
id: string;
|
|
9571
|
-
host: string;
|
|
9572
|
-
port: number;
|
|
9573
|
-
path: string;
|
|
9574
|
-
query: string;
|
|
9575
|
-
method: string;
|
|
9576
|
-
edited: boolean;
|
|
9577
|
-
isTls: boolean;
|
|
9578
|
-
length: number;
|
|
9579
|
-
alteration: Alteration;
|
|
9580
|
-
fileExtension?: string | undefined | null;
|
|
9581
|
-
source: Source;
|
|
9582
|
-
createdAt: Date;
|
|
9583
|
-
metadata: {
|
|
9584
|
-
__typename: "RequestMetadata";
|
|
9585
|
-
id: string;
|
|
9586
|
-
color?: string | undefined | null;
|
|
9587
|
-
};
|
|
9588
|
-
response?: {
|
|
9589
|
-
__typename: "Response";
|
|
9590
|
-
id: string;
|
|
9591
|
-
statusCode: number;
|
|
9592
|
-
roundtripTime: number;
|
|
9593
|
-
length: number;
|
|
9594
|
-
createdAt: Date;
|
|
9595
|
-
alteration: Alteration;
|
|
9596
|
-
edited: boolean;
|
|
9597
|
-
} | undefined | null;
|
|
9598
|
-
};
|
|
9599
|
-
};
|
|
9600
|
-
}>;
|
|
9601
|
-
pageInfo: {
|
|
9602
|
-
__typename: "PageInfo";
|
|
9603
|
-
hasPreviousPage: boolean;
|
|
9604
|
-
hasNextPage: boolean;
|
|
9605
|
-
startCursor?: string | undefined | null;
|
|
9606
|
-
endCursor?: string | undefined | null;
|
|
9607
|
-
};
|
|
9608
|
-
};
|
|
9609
|
-
};
|
|
9610
|
-
export type InterceptEntryQueryVariables = Exact<{
|
|
9611
|
-
id: Scalars["ID"]["input"];
|
|
9612
|
-
}>;
|
|
9613
|
-
export type InterceptEntryQuery = {
|
|
9614
|
-
interceptEntry?: {
|
|
9615
|
-
__typename: "InterceptEntry";
|
|
9616
|
-
id: string;
|
|
9617
|
-
request: {
|
|
9618
|
-
__typename: "Request";
|
|
9619
|
-
id: string;
|
|
9620
|
-
host: string;
|
|
9621
|
-
port: number;
|
|
9622
|
-
path: string;
|
|
9623
|
-
query: string;
|
|
9624
|
-
method: string;
|
|
9625
|
-
edited: boolean;
|
|
9626
|
-
isTls: boolean;
|
|
9627
|
-
length: number;
|
|
9628
|
-
alteration: Alteration;
|
|
9629
|
-
fileExtension?: string | undefined | null;
|
|
9630
|
-
source: Source;
|
|
9631
|
-
createdAt: Date;
|
|
9632
|
-
raw: string;
|
|
9633
|
-
metadata: {
|
|
9634
|
-
__typename: "RequestMetadata";
|
|
9635
|
-
id: string;
|
|
9636
|
-
color?: string | undefined | null;
|
|
9637
|
-
};
|
|
9638
|
-
response?: {
|
|
9639
|
-
__typename: "Response";
|
|
9640
|
-
id: string;
|
|
9641
|
-
statusCode: number;
|
|
9642
|
-
roundtripTime: number;
|
|
9643
|
-
length: number;
|
|
9644
|
-
createdAt: Date;
|
|
9645
|
-
alteration: Alteration;
|
|
9646
|
-
edited: boolean;
|
|
9647
|
-
} | undefined | null;
|
|
9648
|
-
edits: Array<{
|
|
9649
|
-
__typename: "Request";
|
|
9650
|
-
id: string;
|
|
9651
|
-
host: string;
|
|
9652
|
-
port: number;
|
|
9653
|
-
path: string;
|
|
9654
|
-
query: string;
|
|
9655
|
-
method: string;
|
|
9656
|
-
edited: boolean;
|
|
9657
|
-
isTls: boolean;
|
|
9658
|
-
length: number;
|
|
9659
|
-
alteration: Alteration;
|
|
9660
|
-
fileExtension?: string | undefined | null;
|
|
9661
|
-
source: Source;
|
|
9662
|
-
createdAt: Date;
|
|
9663
|
-
metadata: {
|
|
9664
|
-
__typename: "RequestMetadata";
|
|
9665
|
-
id: string;
|
|
9666
|
-
color?: string | undefined | null;
|
|
9667
|
-
};
|
|
9668
|
-
response?: {
|
|
9669
|
-
__typename: "Response";
|
|
9670
|
-
id: string;
|
|
9671
|
-
statusCode: number;
|
|
9672
|
-
roundtripTime: number;
|
|
9673
|
-
length: number;
|
|
9674
|
-
createdAt: Date;
|
|
9675
|
-
alteration: Alteration;
|
|
9676
|
-
edited: boolean;
|
|
9677
|
-
} | undefined | null;
|
|
9678
|
-
}>;
|
|
9679
|
-
};
|
|
9680
|
-
} | undefined | null;
|
|
9681
|
-
};
|
|
9682
|
-
export type InterceptEntryCountQueryVariables = Exact<{
|
|
9683
|
-
filter?: InputMaybe<FilterClauseInterceptEntryInput>;
|
|
9684
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9685
|
-
}>;
|
|
9686
|
-
export type InterceptEntryCountQuery = {
|
|
9687
|
-
interceptEntries: {
|
|
9688
|
-
count: {
|
|
9689
|
-
__typename: "Count";
|
|
9690
|
-
value: number;
|
|
9691
|
-
snapshot: number;
|
|
9692
|
-
};
|
|
9693
|
-
};
|
|
9694
|
-
};
|
|
9695
|
-
export type UpstreamProxiesQueryVariables = Exact<{
|
|
9696
|
-
[key: string]: never;
|
|
10001
|
+
export type UpstreamProxiesQueryVariables = Exact<{
|
|
10002
|
+
[key: string]: never;
|
|
9697
10003
|
}>;
|
|
9698
10004
|
export type UpstreamProxiesQuery = {
|
|
9699
10005
|
upstreamProxies: Array<{
|
|
@@ -9788,10 +10094,19 @@ export type ReplayEntryQueryVariables = Exact<{
|
|
|
9788
10094
|
export type ReplayEntryQuery = {
|
|
9789
10095
|
replayEntry?: {
|
|
9790
10096
|
__typename: "ReplayEntry";
|
|
10097
|
+
raw: string;
|
|
9791
10098
|
id: string;
|
|
9792
10099
|
error?: string | undefined | null;
|
|
9793
|
-
|
|
9794
|
-
|
|
10100
|
+
connection: {
|
|
10101
|
+
__typename: "ConnectionInfo";
|
|
10102
|
+
host: string;
|
|
10103
|
+
port: number;
|
|
10104
|
+
isTls: boolean;
|
|
10105
|
+
};
|
|
10106
|
+
session: {
|
|
10107
|
+
id: string;
|
|
10108
|
+
};
|
|
10109
|
+
request?: {
|
|
9795
10110
|
__typename: "Request";
|
|
9796
10111
|
id: string;
|
|
9797
10112
|
host: string;
|
|
@@ -9821,7 +10136,7 @@ export type ReplayEntryQuery = {
|
|
|
9821
10136
|
alteration: Alteration;
|
|
9822
10137
|
edited: boolean;
|
|
9823
10138
|
} | undefined | null;
|
|
9824
|
-
};
|
|
10139
|
+
} | undefined | null;
|
|
9825
10140
|
} | undefined | null;
|
|
9826
10141
|
};
|
|
9827
10142
|
export type ActiveReplayEntryBySessionQueryVariables = Exact<{
|
|
@@ -9836,8 +10151,16 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
9836
10151
|
__typename: "ReplayEntry";
|
|
9837
10152
|
id: string;
|
|
9838
10153
|
error?: string | undefined | null;
|
|
9839
|
-
|
|
9840
|
-
|
|
10154
|
+
connection: {
|
|
10155
|
+
__typename: "ConnectionInfo";
|
|
10156
|
+
host: string;
|
|
10157
|
+
port: number;
|
|
10158
|
+
isTls: boolean;
|
|
10159
|
+
};
|
|
10160
|
+
session: {
|
|
10161
|
+
id: string;
|
|
10162
|
+
};
|
|
10163
|
+
request?: {
|
|
9841
10164
|
__typename: "Request";
|
|
9842
10165
|
id: string;
|
|
9843
10166
|
host: string;
|
|
@@ -9867,7 +10190,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
9867
10190
|
alteration: Alteration;
|
|
9868
10191
|
edited: boolean;
|
|
9869
10192
|
} | undefined | null;
|
|
9870
|
-
};
|
|
10193
|
+
} | undefined | null;
|
|
9871
10194
|
} | undefined | null;
|
|
9872
10195
|
collection: {
|
|
9873
10196
|
id: string;
|
|
@@ -9877,8 +10200,16 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
9877
10200
|
__typename: "ReplayEntry";
|
|
9878
10201
|
id: string;
|
|
9879
10202
|
error?: string | undefined | null;
|
|
9880
|
-
|
|
9881
|
-
|
|
10203
|
+
connection: {
|
|
10204
|
+
__typename: "ConnectionInfo";
|
|
10205
|
+
host: string;
|
|
10206
|
+
port: number;
|
|
10207
|
+
isTls: boolean;
|
|
10208
|
+
};
|
|
10209
|
+
session: {
|
|
10210
|
+
id: string;
|
|
10211
|
+
};
|
|
10212
|
+
request?: {
|
|
9882
10213
|
__typename: "Request";
|
|
9883
10214
|
id: string;
|
|
9884
10215
|
host: string;
|
|
@@ -9908,7 +10239,7 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
9908
10239
|
alteration: Alteration;
|
|
9909
10240
|
edited: boolean;
|
|
9910
10241
|
} | undefined | null;
|
|
9911
|
-
};
|
|
10242
|
+
} | undefined | null;
|
|
9912
10243
|
}>;
|
|
9913
10244
|
pageInfo: {
|
|
9914
10245
|
__typename: "PageInfo";
|
|
@@ -9940,8 +10271,16 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
9940
10271
|
__typename: "ReplayEntry";
|
|
9941
10272
|
id: string;
|
|
9942
10273
|
error?: string | undefined | null;
|
|
9943
|
-
|
|
9944
|
-
|
|
10274
|
+
connection: {
|
|
10275
|
+
__typename: "ConnectionInfo";
|
|
10276
|
+
host: string;
|
|
10277
|
+
port: number;
|
|
10278
|
+
isTls: boolean;
|
|
10279
|
+
};
|
|
10280
|
+
session: {
|
|
10281
|
+
id: string;
|
|
10282
|
+
};
|
|
10283
|
+
request?: {
|
|
9945
10284
|
__typename: "Request";
|
|
9946
10285
|
id: string;
|
|
9947
10286
|
host: string;
|
|
@@ -9971,7 +10310,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
9971
10310
|
alteration: Alteration;
|
|
9972
10311
|
edited: boolean;
|
|
9973
10312
|
} | undefined | null;
|
|
9974
|
-
};
|
|
10313
|
+
} | undefined | null;
|
|
9975
10314
|
};
|
|
9976
10315
|
}>;
|
|
9977
10316
|
pageInfo: {
|
|
@@ -9990,8 +10329,16 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
9990
10329
|
__typename: "ReplayEntry";
|
|
9991
10330
|
id: string;
|
|
9992
10331
|
error?: string | undefined | null;
|
|
9993
|
-
|
|
9994
|
-
|
|
10332
|
+
connection: {
|
|
10333
|
+
__typename: "ConnectionInfo";
|
|
10334
|
+
host: string;
|
|
10335
|
+
port: number;
|
|
10336
|
+
isTls: boolean;
|
|
10337
|
+
};
|
|
10338
|
+
session: {
|
|
10339
|
+
id: string;
|
|
10340
|
+
};
|
|
10341
|
+
request?: {
|
|
9995
10342
|
__typename: "Request";
|
|
9996
10343
|
id: string;
|
|
9997
10344
|
host: string;
|
|
@@ -10021,15 +10368,23 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
10021
10368
|
alteration: Alteration;
|
|
10022
10369
|
edited: boolean;
|
|
10023
10370
|
} | undefined | null;
|
|
10024
|
-
};
|
|
10371
|
+
} | undefined | null;
|
|
10025
10372
|
}>;
|
|
10026
10373
|
};
|
|
10027
10374
|
activeEntry?: {
|
|
10028
10375
|
__typename: "ReplayEntry";
|
|
10029
10376
|
id: string;
|
|
10030
10377
|
error?: string | undefined | null;
|
|
10031
|
-
|
|
10032
|
-
|
|
10378
|
+
connection: {
|
|
10379
|
+
__typename: "ConnectionInfo";
|
|
10380
|
+
host: string;
|
|
10381
|
+
port: number;
|
|
10382
|
+
isTls: boolean;
|
|
10383
|
+
};
|
|
10384
|
+
session: {
|
|
10385
|
+
id: string;
|
|
10386
|
+
};
|
|
10387
|
+
request?: {
|
|
10033
10388
|
__typename: "Request";
|
|
10034
10389
|
id: string;
|
|
10035
10390
|
host: string;
|
|
@@ -10059,7 +10414,7 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
10059
10414
|
alteration: Alteration;
|
|
10060
10415
|
edited: boolean;
|
|
10061
10416
|
} | undefined | null;
|
|
10062
|
-
};
|
|
10417
|
+
} | undefined | null;
|
|
10063
10418
|
} | undefined | null;
|
|
10064
10419
|
collection: {
|
|
10065
10420
|
id: string;
|
|
@@ -10075,8 +10430,16 @@ export type ReplaySessionEntriesQuery = {
|
|
|
10075
10430
|
__typename: "ReplayEntry";
|
|
10076
10431
|
id: string;
|
|
10077
10432
|
error?: string | undefined | null;
|
|
10078
|
-
|
|
10079
|
-
|
|
10433
|
+
connection: {
|
|
10434
|
+
__typename: "ConnectionInfo";
|
|
10435
|
+
host: string;
|
|
10436
|
+
port: number;
|
|
10437
|
+
isTls: boolean;
|
|
10438
|
+
};
|
|
10439
|
+
session: {
|
|
10440
|
+
id: string;
|
|
10441
|
+
};
|
|
10442
|
+
request?: {
|
|
10080
10443
|
__typename: "Request";
|
|
10081
10444
|
id: string;
|
|
10082
10445
|
host: string;
|
|
@@ -10106,7 +10469,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
10106
10469
|
alteration: Alteration;
|
|
10107
10470
|
edited: boolean;
|
|
10108
10471
|
} | undefined | null;
|
|
10109
|
-
};
|
|
10472
|
+
} | undefined | null;
|
|
10110
10473
|
} | undefined | null;
|
|
10111
10474
|
entries: {
|
|
10112
10475
|
edges: Array<{
|
|
@@ -10115,8 +10478,16 @@ export type ReplaySessionEntriesQuery = {
|
|
|
10115
10478
|
__typename: "ReplayEntry";
|
|
10116
10479
|
id: string;
|
|
10117
10480
|
error?: string | undefined | null;
|
|
10118
|
-
|
|
10119
|
-
|
|
10481
|
+
connection: {
|
|
10482
|
+
__typename: "ConnectionInfo";
|
|
10483
|
+
host: string;
|
|
10484
|
+
port: number;
|
|
10485
|
+
isTls: boolean;
|
|
10486
|
+
};
|
|
10487
|
+
session: {
|
|
10488
|
+
id: string;
|
|
10489
|
+
};
|
|
10490
|
+
request?: {
|
|
10120
10491
|
__typename: "Request";
|
|
10121
10492
|
id: string;
|
|
10122
10493
|
host: string;
|
|
@@ -10146,7 +10517,7 @@ export type ReplaySessionEntriesQuery = {
|
|
|
10146
10517
|
alteration: Alteration;
|
|
10147
10518
|
edited: boolean;
|
|
10148
10519
|
} | undefined | null;
|
|
10149
|
-
};
|
|
10520
|
+
} | undefined | null;
|
|
10150
10521
|
};
|
|
10151
10522
|
}>;
|
|
10152
10523
|
pageInfo: {
|
|
@@ -10182,8 +10553,16 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
10182
10553
|
__typename: "ReplayEntry";
|
|
10183
10554
|
id: string;
|
|
10184
10555
|
error?: string | undefined | null;
|
|
10185
|
-
|
|
10186
|
-
|
|
10556
|
+
connection: {
|
|
10557
|
+
__typename: "ConnectionInfo";
|
|
10558
|
+
host: string;
|
|
10559
|
+
port: number;
|
|
10560
|
+
isTls: boolean;
|
|
10561
|
+
};
|
|
10562
|
+
session: {
|
|
10563
|
+
id: string;
|
|
10564
|
+
};
|
|
10565
|
+
request?: {
|
|
10187
10566
|
__typename: "Request";
|
|
10188
10567
|
id: string;
|
|
10189
10568
|
host: string;
|
|
@@ -10213,7 +10592,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
10213
10592
|
alteration: Alteration;
|
|
10214
10593
|
edited: boolean;
|
|
10215
10594
|
} | undefined | null;
|
|
10216
|
-
};
|
|
10595
|
+
} | undefined | null;
|
|
10217
10596
|
} | undefined | null;
|
|
10218
10597
|
collection: {
|
|
10219
10598
|
id: string;
|
|
@@ -10223,8 +10602,16 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
10223
10602
|
__typename: "ReplayEntry";
|
|
10224
10603
|
id: string;
|
|
10225
10604
|
error?: string | undefined | null;
|
|
10226
|
-
|
|
10227
|
-
|
|
10605
|
+
connection: {
|
|
10606
|
+
__typename: "ConnectionInfo";
|
|
10607
|
+
host: string;
|
|
10608
|
+
port: number;
|
|
10609
|
+
isTls: boolean;
|
|
10610
|
+
};
|
|
10611
|
+
session: {
|
|
10612
|
+
id: string;
|
|
10613
|
+
};
|
|
10614
|
+
request?: {
|
|
10228
10615
|
__typename: "Request";
|
|
10229
10616
|
id: string;
|
|
10230
10617
|
host: string;
|
|
@@ -10254,7 +10641,7 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
10254
10641
|
alteration: Alteration;
|
|
10255
10642
|
edited: boolean;
|
|
10256
10643
|
} | undefined | null;
|
|
10257
|
-
};
|
|
10644
|
+
} | undefined | null;
|
|
10258
10645
|
}>;
|
|
10259
10646
|
pageInfo: {
|
|
10260
10647
|
__typename: "PageInfo";
|
|
@@ -10281,7 +10668,7 @@ export type RequestsQueryVariables = Exact<{
|
|
|
10281
10668
|
last?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10282
10669
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
10283
10670
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10284
|
-
filter?: InputMaybe<
|
|
10671
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
10285
10672
|
}>;
|
|
10286
10673
|
export type RequestsQuery = {
|
|
10287
10674
|
requests: {
|
|
@@ -10332,7 +10719,7 @@ export type RequestsQuery = {
|
|
|
10332
10719
|
};
|
|
10333
10720
|
export type RequestCountQueryVariables = Exact<{
|
|
10334
10721
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10335
|
-
filter?: InputMaybe<
|
|
10722
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
10336
10723
|
}>;
|
|
10337
10724
|
export type RequestCountQuery = {
|
|
10338
10725
|
requests: {
|
|
@@ -10417,7 +10804,7 @@ export type RequestsByOffsetQueryVariables = Exact<{
|
|
|
10417
10804
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
10418
10805
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
10419
10806
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
10420
|
-
filter?: InputMaybe<
|
|
10807
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
10421
10808
|
}>;
|
|
10422
10809
|
export type RequestsByOffsetQuery = {
|
|
10423
10810
|
requestsByOffset: {
|
|
@@ -10909,6 +11296,73 @@ export type TamperRuleCollectionsQuery = {
|
|
|
10909
11296
|
};
|
|
10910
11297
|
};
|
|
10911
11298
|
};
|
|
11299
|
+
export type GetTasksQueryVariables = Exact<{
|
|
11300
|
+
[key: string]: never;
|
|
11301
|
+
}>;
|
|
11302
|
+
export type GetTasksQuery = {
|
|
11303
|
+
tasks: Array<{
|
|
11304
|
+
__typename: "ReplayTask";
|
|
11305
|
+
id: string;
|
|
11306
|
+
createdAt: Date;
|
|
11307
|
+
replayEntry: {
|
|
11308
|
+
__typename: "ReplayEntry";
|
|
11309
|
+
id: string;
|
|
11310
|
+
error?: string | undefined | null;
|
|
11311
|
+
connection: {
|
|
11312
|
+
__typename: "ConnectionInfo";
|
|
11313
|
+
host: string;
|
|
11314
|
+
port: number;
|
|
11315
|
+
isTls: boolean;
|
|
11316
|
+
};
|
|
11317
|
+
session: {
|
|
11318
|
+
id: string;
|
|
11319
|
+
};
|
|
11320
|
+
request?: {
|
|
11321
|
+
__typename: "Request";
|
|
11322
|
+
id: string;
|
|
11323
|
+
host: string;
|
|
11324
|
+
port: number;
|
|
11325
|
+
path: string;
|
|
11326
|
+
query: string;
|
|
11327
|
+
method: string;
|
|
11328
|
+
edited: boolean;
|
|
11329
|
+
isTls: boolean;
|
|
11330
|
+
length: number;
|
|
11331
|
+
alteration: Alteration;
|
|
11332
|
+
fileExtension?: string | undefined | null;
|
|
11333
|
+
source: Source;
|
|
11334
|
+
createdAt: Date;
|
|
11335
|
+
metadata: {
|
|
11336
|
+
__typename: "RequestMetadata";
|
|
11337
|
+
id: string;
|
|
11338
|
+
color?: string | undefined | null;
|
|
11339
|
+
};
|
|
11340
|
+
response?: {
|
|
11341
|
+
__typename: "Response";
|
|
11342
|
+
id: string;
|
|
11343
|
+
statusCode: number;
|
|
11344
|
+
roundtripTime: number;
|
|
11345
|
+
length: number;
|
|
11346
|
+
createdAt: Date;
|
|
11347
|
+
alteration: Alteration;
|
|
11348
|
+
edited: boolean;
|
|
11349
|
+
} | undefined | null;
|
|
11350
|
+
} | undefined | null;
|
|
11351
|
+
};
|
|
11352
|
+
} | {
|
|
11353
|
+
__typename: "WorkflowTask";
|
|
11354
|
+
id: string;
|
|
11355
|
+
createdAt: Date;
|
|
11356
|
+
workflow: {
|
|
11357
|
+
__typename: "Workflow";
|
|
11358
|
+
id: string;
|
|
11359
|
+
kind: WorkflowKind;
|
|
11360
|
+
name: string;
|
|
11361
|
+
enabled: boolean;
|
|
11362
|
+
global: boolean;
|
|
11363
|
+
};
|
|
11364
|
+
}>;
|
|
11365
|
+
};
|
|
10912
11366
|
export type UserProfileQueryVariables = Exact<{
|
|
10913
11367
|
[key: string]: never;
|
|
10914
11368
|
}>;
|
|
@@ -11121,6 +11575,7 @@ export type CreatedAuthenticationTokenSubscription = {
|
|
|
11121
11575
|
};
|
|
11122
11576
|
export type CreatedAutomateEntryRequestSubscriptionVariables = Exact<{
|
|
11123
11577
|
order?: InputMaybe<AutomateEntryRequestOrderInput>;
|
|
11578
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
11124
11579
|
}>;
|
|
11125
11580
|
export type CreatedAutomateEntryRequestSubscription = {
|
|
11126
11581
|
createdAutomateEntryRequest: {
|
|
@@ -11666,15 +12121,19 @@ export type DeletedFindingsSubscription = {
|
|
|
11666
12121
|
snapshot: number;
|
|
11667
12122
|
};
|
|
11668
12123
|
};
|
|
11669
|
-
export type
|
|
11670
|
-
|
|
12124
|
+
export type CreatedInterceptEntrySubscriptionVariables = Exact<{
|
|
12125
|
+
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
12126
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12127
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
11671
12128
|
}>;
|
|
11672
|
-
export type
|
|
11673
|
-
|
|
12129
|
+
export type CreatedInterceptEntrySubscription = {
|
|
12130
|
+
createdInterceptEntry: {
|
|
11674
12131
|
snapshot: number;
|
|
11675
|
-
|
|
12132
|
+
interceptEntryEdge: {
|
|
12133
|
+
__typename: "InterceptEntryEdge";
|
|
12134
|
+
cursor: string;
|
|
11676
12135
|
node: {
|
|
11677
|
-
__typename: "
|
|
12136
|
+
__typename: "InterceptEntry";
|
|
11678
12137
|
id: string;
|
|
11679
12138
|
request: {
|
|
11680
12139
|
__typename: "Request";
|
|
@@ -11707,19 +12166,24 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
11707
12166
|
edited: boolean;
|
|
11708
12167
|
} | undefined | null;
|
|
11709
12168
|
};
|
|
11710
|
-
}
|
|
11711
|
-
|
|
12169
|
+
};
|
|
12170
|
+
};
|
|
12171
|
+
};
|
|
12172
|
+
};
|
|
12173
|
+
export type UpdatedInterceptEntrySubscriptionVariables = Exact<{
|
|
12174
|
+
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
12175
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12176
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12177
|
+
}>;
|
|
12178
|
+
export type UpdatedInterceptEntrySubscription = {
|
|
12179
|
+
updatedInterceptEntry: {
|
|
12180
|
+
snapshot: number;
|
|
12181
|
+
interceptEntryEdge: {
|
|
12182
|
+
__typename: "InterceptEntryEdge";
|
|
12183
|
+
cursor: string;
|
|
12184
|
+
node: {
|
|
12185
|
+
__typename: "InterceptEntry";
|
|
11712
12186
|
id: string;
|
|
11713
|
-
response: {
|
|
11714
|
-
__typename: "Response";
|
|
11715
|
-
id: string;
|
|
11716
|
-
statusCode: number;
|
|
11717
|
-
roundtripTime: number;
|
|
11718
|
-
length: number;
|
|
11719
|
-
createdAt: Date;
|
|
11720
|
-
alteration: Alteration;
|
|
11721
|
-
edited: boolean;
|
|
11722
|
-
};
|
|
11723
12187
|
request: {
|
|
11724
12188
|
__typename: "Request";
|
|
11725
12189
|
id: string;
|
|
@@ -11755,37 +12219,69 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
11755
12219
|
};
|
|
11756
12220
|
};
|
|
11757
12221
|
};
|
|
11758
|
-
export type
|
|
12222
|
+
export type DeletedInterceptEntrySubscriptionVariables = Exact<{
|
|
11759
12223
|
[key: string]: never;
|
|
11760
12224
|
}>;
|
|
11761
|
-
export type
|
|
11762
|
-
|
|
11763
|
-
|
|
11764
|
-
|
|
11765
|
-
|
|
11766
|
-
|
|
11767
|
-
|
|
11768
|
-
|
|
11769
|
-
|
|
11770
|
-
|
|
11771
|
-
|
|
11772
|
-
|
|
12225
|
+
export type DeletedInterceptEntrySubscription = {
|
|
12226
|
+
deletedInterceptEntry: {
|
|
12227
|
+
deletedEntryId: string;
|
|
12228
|
+
snapshot: number;
|
|
12229
|
+
};
|
|
12230
|
+
};
|
|
12231
|
+
export type StartedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
|
|
12232
|
+
[key: string]: never;
|
|
12233
|
+
}>;
|
|
12234
|
+
export type StartedDeleteInterceptEntriesTaskSubscription = {
|
|
12235
|
+
startedDeleteInterceptEntriesTask: {
|
|
12236
|
+
task: {
|
|
12237
|
+
__typename: "DeleteInterceptEntriesTask";
|
|
12238
|
+
id: string;
|
|
12239
|
+
deletedEntryIds: Array<string>;
|
|
11773
12240
|
};
|
|
11774
12241
|
};
|
|
11775
12242
|
};
|
|
11776
|
-
export type
|
|
11777
|
-
|
|
11778
|
-
filter?: InputMaybe<FilterClauseInterceptEntryInput>;
|
|
11779
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12243
|
+
export type UpdatedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
|
|
12244
|
+
[key: string]: never;
|
|
11780
12245
|
}>;
|
|
11781
|
-
export type
|
|
11782
|
-
|
|
12246
|
+
export type UpdatedDeleteInterceptEntriesTaskSubscription = {
|
|
12247
|
+
updatedDeleteInterceptEntriesTask: {
|
|
11783
12248
|
snapshot: number;
|
|
11784
|
-
|
|
11785
|
-
__typename: "
|
|
11786
|
-
|
|
12249
|
+
task: {
|
|
12250
|
+
__typename: "DeleteInterceptEntriesTask";
|
|
12251
|
+
id: string;
|
|
12252
|
+
deletedEntryIds: Array<string>;
|
|
12253
|
+
};
|
|
12254
|
+
};
|
|
12255
|
+
};
|
|
12256
|
+
export type FinishedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
|
|
12257
|
+
[key: string]: never;
|
|
12258
|
+
}>;
|
|
12259
|
+
export type FinishedDeleteInterceptEntriesTaskSubscription = {
|
|
12260
|
+
finishedDeleteInterceptEntriesTask: {
|
|
12261
|
+
task: {
|
|
12262
|
+
__typename: "DeleteInterceptEntriesTask";
|
|
12263
|
+
id: string;
|
|
12264
|
+
deletedEntryIds: Array<string>;
|
|
12265
|
+
};
|
|
12266
|
+
error?: {
|
|
12267
|
+
__typename: "InternalUserError";
|
|
12268
|
+
message: string;
|
|
12269
|
+
code: string;
|
|
12270
|
+
} | {
|
|
12271
|
+
__typename: "OtherUserError";
|
|
12272
|
+
code: string;
|
|
12273
|
+
} | undefined | null;
|
|
12274
|
+
};
|
|
12275
|
+
};
|
|
12276
|
+
export type CreatedInterceptMessageSubscriptionVariables = Exact<{
|
|
12277
|
+
[key: string]: never;
|
|
12278
|
+
}>;
|
|
12279
|
+
export type CreatedInterceptMessageSubscription = {
|
|
12280
|
+
createdInterceptMessage: {
|
|
12281
|
+
snapshot: number;
|
|
12282
|
+
messageEdge: {
|
|
11787
12283
|
node: {
|
|
11788
|
-
__typename: "
|
|
12284
|
+
__typename: "InterceptRequestMessage";
|
|
11789
12285
|
id: string;
|
|
11790
12286
|
request: {
|
|
11791
12287
|
__typename: "Request";
|
|
@@ -11808,34 +12304,29 @@ export type CreatedInterceptEntrySubscription = {
|
|
|
11808
12304
|
color?: string | undefined | null;
|
|
11809
12305
|
};
|
|
11810
12306
|
response?: {
|
|
11811
|
-
__typename: "Response";
|
|
11812
|
-
id: string;
|
|
11813
|
-
statusCode: number;
|
|
11814
|
-
roundtripTime: number;
|
|
11815
|
-
length: number;
|
|
11816
|
-
createdAt: Date;
|
|
11817
|
-
alteration: Alteration;
|
|
11818
|
-
edited: boolean;
|
|
11819
|
-
} | undefined | null;
|
|
11820
|
-
};
|
|
11821
|
-
}
|
|
11822
|
-
|
|
11823
|
-
};
|
|
11824
|
-
};
|
|
11825
|
-
export type UpdatedInterceptEntrySubscriptionVariables = Exact<{
|
|
11826
|
-
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
11827
|
-
filter?: InputMaybe<FilterClauseInterceptEntryInput>;
|
|
11828
|
-
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
11829
|
-
}>;
|
|
11830
|
-
export type UpdatedInterceptEntrySubscription = {
|
|
11831
|
-
updatedInterceptEntry: {
|
|
11832
|
-
snapshot: number;
|
|
11833
|
-
interceptEntryEdge: {
|
|
11834
|
-
__typename: "InterceptEntryEdge";
|
|
11835
|
-
cursor: string;
|
|
11836
|
-
node: {
|
|
11837
|
-
__typename: "InterceptEntry";
|
|
12307
|
+
__typename: "Response";
|
|
12308
|
+
id: string;
|
|
12309
|
+
statusCode: number;
|
|
12310
|
+
roundtripTime: number;
|
|
12311
|
+
length: number;
|
|
12312
|
+
createdAt: Date;
|
|
12313
|
+
alteration: Alteration;
|
|
12314
|
+
edited: boolean;
|
|
12315
|
+
} | undefined | null;
|
|
12316
|
+
};
|
|
12317
|
+
} | {
|
|
12318
|
+
__typename: "InterceptResponseMessage";
|
|
11838
12319
|
id: string;
|
|
12320
|
+
response: {
|
|
12321
|
+
__typename: "Response";
|
|
12322
|
+
id: string;
|
|
12323
|
+
statusCode: number;
|
|
12324
|
+
roundtripTime: number;
|
|
12325
|
+
length: number;
|
|
12326
|
+
createdAt: Date;
|
|
12327
|
+
alteration: Alteration;
|
|
12328
|
+
edited: boolean;
|
|
12329
|
+
};
|
|
11839
12330
|
request: {
|
|
11840
12331
|
__typename: "Request";
|
|
11841
12332
|
id: string;
|
|
@@ -11871,58 +12362,22 @@ export type UpdatedInterceptEntrySubscription = {
|
|
|
11871
12362
|
};
|
|
11872
12363
|
};
|
|
11873
12364
|
};
|
|
11874
|
-
export type
|
|
11875
|
-
[key: string]: never;
|
|
11876
|
-
}>;
|
|
11877
|
-
export type DeletedInterceptEntrySubscription = {
|
|
11878
|
-
deletedInterceptEntry: {
|
|
11879
|
-
deletedEntryId: string;
|
|
11880
|
-
snapshot: number;
|
|
11881
|
-
};
|
|
11882
|
-
};
|
|
11883
|
-
export type StartedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
|
|
11884
|
-
[key: string]: never;
|
|
11885
|
-
}>;
|
|
11886
|
-
export type StartedDeleteInterceptEntriesTaskSubscription = {
|
|
11887
|
-
startedDeleteInterceptEntriesTask: {
|
|
11888
|
-
task: {
|
|
11889
|
-
__typename: "DeleteInterceptEntriesTask";
|
|
11890
|
-
id: string;
|
|
11891
|
-
deletedEntryIds: Array<string>;
|
|
11892
|
-
};
|
|
11893
|
-
};
|
|
11894
|
-
};
|
|
11895
|
-
export type UpdatedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
|
|
11896
|
-
[key: string]: never;
|
|
11897
|
-
}>;
|
|
11898
|
-
export type UpdatedDeleteInterceptEntriesTaskSubscription = {
|
|
11899
|
-
updatedDeleteInterceptEntriesTask: {
|
|
11900
|
-
snapshot: number;
|
|
11901
|
-
task: {
|
|
11902
|
-
__typename: "DeleteInterceptEntriesTask";
|
|
11903
|
-
id: string;
|
|
11904
|
-
deletedEntryIds: Array<string>;
|
|
11905
|
-
};
|
|
11906
|
-
};
|
|
11907
|
-
};
|
|
11908
|
-
export type FinishedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
|
|
12365
|
+
export type UpdatedInterceptOptionsSubscriptionVariables = Exact<{
|
|
11909
12366
|
[key: string]: never;
|
|
11910
12367
|
}>;
|
|
11911
|
-
export type
|
|
11912
|
-
|
|
11913
|
-
|
|
11914
|
-
|
|
11915
|
-
|
|
11916
|
-
|
|
12368
|
+
export type UpdatedInterceptOptionsSubscription = {
|
|
12369
|
+
updatedInterceptOptions: {
|
|
12370
|
+
options: {
|
|
12371
|
+
request: {
|
|
12372
|
+
enabled: boolean;
|
|
12373
|
+
};
|
|
12374
|
+
response: {
|
|
12375
|
+
enabled: boolean;
|
|
12376
|
+
};
|
|
12377
|
+
scope?: {
|
|
12378
|
+
scopeId: string;
|
|
12379
|
+
} | undefined | null;
|
|
11917
12380
|
};
|
|
11918
|
-
error?: {
|
|
11919
|
-
__typename: "InternalUserError";
|
|
11920
|
-
message: string;
|
|
11921
|
-
code: string;
|
|
11922
|
-
} | {
|
|
11923
|
-
__typename: "OtherUserError";
|
|
11924
|
-
code: string;
|
|
11925
|
-
} | undefined | null;
|
|
11926
12381
|
};
|
|
11927
12382
|
};
|
|
11928
12383
|
export type CreatedPluginPackageSubscriptionVariables = Exact<{
|
|
@@ -12051,8 +12506,16 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12051
12506
|
__typename: "ReplayEntry";
|
|
12052
12507
|
id: string;
|
|
12053
12508
|
error?: string | undefined | null;
|
|
12054
|
-
|
|
12055
|
-
|
|
12509
|
+
connection: {
|
|
12510
|
+
__typename: "ConnectionInfo";
|
|
12511
|
+
host: string;
|
|
12512
|
+
port: number;
|
|
12513
|
+
isTls: boolean;
|
|
12514
|
+
};
|
|
12515
|
+
session: {
|
|
12516
|
+
id: string;
|
|
12517
|
+
};
|
|
12518
|
+
request?: {
|
|
12056
12519
|
__typename: "Request";
|
|
12057
12520
|
id: string;
|
|
12058
12521
|
host: string;
|
|
@@ -12082,7 +12545,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12082
12545
|
alteration: Alteration;
|
|
12083
12546
|
edited: boolean;
|
|
12084
12547
|
} | undefined | null;
|
|
12085
|
-
};
|
|
12548
|
+
} | undefined | null;
|
|
12086
12549
|
} | undefined | null;
|
|
12087
12550
|
collection: {
|
|
12088
12551
|
id: string;
|
|
@@ -12092,8 +12555,16 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12092
12555
|
__typename: "ReplayEntry";
|
|
12093
12556
|
id: string;
|
|
12094
12557
|
error?: string | undefined | null;
|
|
12095
|
-
|
|
12096
|
-
|
|
12558
|
+
connection: {
|
|
12559
|
+
__typename: "ConnectionInfo";
|
|
12560
|
+
host: string;
|
|
12561
|
+
port: number;
|
|
12562
|
+
isTls: boolean;
|
|
12563
|
+
};
|
|
12564
|
+
session: {
|
|
12565
|
+
id: string;
|
|
12566
|
+
};
|
|
12567
|
+
request?: {
|
|
12097
12568
|
__typename: "Request";
|
|
12098
12569
|
id: string;
|
|
12099
12570
|
host: string;
|
|
@@ -12123,7 +12594,7 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12123
12594
|
alteration: Alteration;
|
|
12124
12595
|
edited: boolean;
|
|
12125
12596
|
} | undefined | null;
|
|
12126
|
-
};
|
|
12597
|
+
} | undefined | null;
|
|
12127
12598
|
}>;
|
|
12128
12599
|
pageInfo: {
|
|
12129
12600
|
__typename: "PageInfo";
|
|
@@ -12142,64 +12613,10 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
12142
12613
|
};
|
|
12143
12614
|
};
|
|
12144
12615
|
};
|
|
12145
|
-
export type UpdatedReplayTaskSubscriptionVariables = Exact<{
|
|
12146
|
-
[key: string]: never;
|
|
12147
|
-
}>;
|
|
12148
|
-
export type UpdatedReplayTaskSubscription = {
|
|
12149
|
-
updatedReplayTask: {
|
|
12150
|
-
snapshot: number;
|
|
12151
|
-
replayTaskEdge: {
|
|
12152
|
-
__typename: "ReplayTaskEdge";
|
|
12153
|
-
cursor: string;
|
|
12154
|
-
node: {
|
|
12155
|
-
__typename: "ReplayTask";
|
|
12156
|
-
id: string;
|
|
12157
|
-
error?: string | undefined | null;
|
|
12158
|
-
replayEntry?: {
|
|
12159
|
-
__typename: "ReplayEntry";
|
|
12160
|
-
id: string;
|
|
12161
|
-
error?: string | undefined | null;
|
|
12162
|
-
sessionId: string;
|
|
12163
|
-
request: {
|
|
12164
|
-
__typename: "Request";
|
|
12165
|
-
id: string;
|
|
12166
|
-
host: string;
|
|
12167
|
-
port: number;
|
|
12168
|
-
path: string;
|
|
12169
|
-
query: string;
|
|
12170
|
-
method: string;
|
|
12171
|
-
edited: boolean;
|
|
12172
|
-
isTls: boolean;
|
|
12173
|
-
length: number;
|
|
12174
|
-
alteration: Alteration;
|
|
12175
|
-
fileExtension?: string | undefined | null;
|
|
12176
|
-
source: Source;
|
|
12177
|
-
createdAt: Date;
|
|
12178
|
-
metadata: {
|
|
12179
|
-
__typename: "RequestMetadata";
|
|
12180
|
-
id: string;
|
|
12181
|
-
color?: string | undefined | null;
|
|
12182
|
-
};
|
|
12183
|
-
response?: {
|
|
12184
|
-
__typename: "Response";
|
|
12185
|
-
id: string;
|
|
12186
|
-
statusCode: number;
|
|
12187
|
-
roundtripTime: number;
|
|
12188
|
-
length: number;
|
|
12189
|
-
createdAt: Date;
|
|
12190
|
-
alteration: Alteration;
|
|
12191
|
-
edited: boolean;
|
|
12192
|
-
} | undefined | null;
|
|
12193
|
-
};
|
|
12194
|
-
} | undefined | null;
|
|
12195
|
-
};
|
|
12196
|
-
};
|
|
12197
|
-
};
|
|
12198
|
-
};
|
|
12199
12616
|
export type CreatedRequestSubscriptionVariables = Exact<{
|
|
12200
12617
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
12201
12618
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12202
|
-
filter?: InputMaybe<
|
|
12619
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12203
12620
|
}>;
|
|
12204
12621
|
export type CreatedRequestSubscription = {
|
|
12205
12622
|
createdRequest: {
|
|
@@ -12244,7 +12661,7 @@ export type CreatedRequestSubscription = {
|
|
|
12244
12661
|
export type UpdatedRequestSubscriptionVariables = Exact<{
|
|
12245
12662
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
12246
12663
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
12247
|
-
filter?: InputMaybe<
|
|
12664
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
12248
12665
|
}>;
|
|
12249
12666
|
export type UpdatedRequestSubscription = {
|
|
12250
12667
|
updatedRequest: {
|
|
@@ -12511,6 +12928,56 @@ export type StartedTaskSubscriptionVariables = Exact<{
|
|
|
12511
12928
|
export type StartedTaskSubscription = {
|
|
12512
12929
|
startedTask: {
|
|
12513
12930
|
task: {
|
|
12931
|
+
__typename: "ReplayTask";
|
|
12932
|
+
id: string;
|
|
12933
|
+
createdAt: Date;
|
|
12934
|
+
replayEntry: {
|
|
12935
|
+
__typename: "ReplayEntry";
|
|
12936
|
+
id: string;
|
|
12937
|
+
error?: string | undefined | null;
|
|
12938
|
+
connection: {
|
|
12939
|
+
__typename: "ConnectionInfo";
|
|
12940
|
+
host: string;
|
|
12941
|
+
port: number;
|
|
12942
|
+
isTls: boolean;
|
|
12943
|
+
};
|
|
12944
|
+
session: {
|
|
12945
|
+
id: string;
|
|
12946
|
+
};
|
|
12947
|
+
request?: {
|
|
12948
|
+
__typename: "Request";
|
|
12949
|
+
id: string;
|
|
12950
|
+
host: string;
|
|
12951
|
+
port: number;
|
|
12952
|
+
path: string;
|
|
12953
|
+
query: string;
|
|
12954
|
+
method: string;
|
|
12955
|
+
edited: boolean;
|
|
12956
|
+
isTls: boolean;
|
|
12957
|
+
length: number;
|
|
12958
|
+
alteration: Alteration;
|
|
12959
|
+
fileExtension?: string | undefined | null;
|
|
12960
|
+
source: Source;
|
|
12961
|
+
createdAt: Date;
|
|
12962
|
+
metadata: {
|
|
12963
|
+
__typename: "RequestMetadata";
|
|
12964
|
+
id: string;
|
|
12965
|
+
color?: string | undefined | null;
|
|
12966
|
+
};
|
|
12967
|
+
response?: {
|
|
12968
|
+
__typename: "Response";
|
|
12969
|
+
id: string;
|
|
12970
|
+
statusCode: number;
|
|
12971
|
+
roundtripTime: number;
|
|
12972
|
+
length: number;
|
|
12973
|
+
createdAt: Date;
|
|
12974
|
+
alteration: Alteration;
|
|
12975
|
+
edited: boolean;
|
|
12976
|
+
} | undefined | null;
|
|
12977
|
+
} | undefined | null;
|
|
12978
|
+
};
|
|
12979
|
+
} | {
|
|
12980
|
+
__typename: "WorkflowTask";
|
|
12514
12981
|
id: string;
|
|
12515
12982
|
createdAt: Date;
|
|
12516
12983
|
workflow: {
|
|
@@ -12530,6 +12997,56 @@ export type FinishedTaskSubscriptionVariables = Exact<{
|
|
|
12530
12997
|
export type FinishedTaskSubscription = {
|
|
12531
12998
|
finishedTask: {
|
|
12532
12999
|
task: {
|
|
13000
|
+
__typename: "ReplayTask";
|
|
13001
|
+
id: string;
|
|
13002
|
+
createdAt: Date;
|
|
13003
|
+
replayEntry: {
|
|
13004
|
+
__typename: "ReplayEntry";
|
|
13005
|
+
id: string;
|
|
13006
|
+
error?: string | undefined | null;
|
|
13007
|
+
connection: {
|
|
13008
|
+
__typename: "ConnectionInfo";
|
|
13009
|
+
host: string;
|
|
13010
|
+
port: number;
|
|
13011
|
+
isTls: boolean;
|
|
13012
|
+
};
|
|
13013
|
+
session: {
|
|
13014
|
+
id: string;
|
|
13015
|
+
};
|
|
13016
|
+
request?: {
|
|
13017
|
+
__typename: "Request";
|
|
13018
|
+
id: string;
|
|
13019
|
+
host: string;
|
|
13020
|
+
port: number;
|
|
13021
|
+
path: string;
|
|
13022
|
+
query: string;
|
|
13023
|
+
method: string;
|
|
13024
|
+
edited: boolean;
|
|
13025
|
+
isTls: boolean;
|
|
13026
|
+
length: number;
|
|
13027
|
+
alteration: Alteration;
|
|
13028
|
+
fileExtension?: string | undefined | null;
|
|
13029
|
+
source: Source;
|
|
13030
|
+
createdAt: Date;
|
|
13031
|
+
metadata: {
|
|
13032
|
+
__typename: "RequestMetadata";
|
|
13033
|
+
id: string;
|
|
13034
|
+
color?: string | undefined | null;
|
|
13035
|
+
};
|
|
13036
|
+
response?: {
|
|
13037
|
+
__typename: "Response";
|
|
13038
|
+
id: string;
|
|
13039
|
+
statusCode: number;
|
|
13040
|
+
roundtripTime: number;
|
|
13041
|
+
length: number;
|
|
13042
|
+
createdAt: Date;
|
|
13043
|
+
alteration: Alteration;
|
|
13044
|
+
edited: boolean;
|
|
13045
|
+
} | undefined | null;
|
|
13046
|
+
} | undefined | null;
|
|
13047
|
+
};
|
|
13048
|
+
} | {
|
|
13049
|
+
__typename: "WorkflowTask";
|
|
12533
13050
|
id: string;
|
|
12534
13051
|
createdAt: Date;
|
|
12535
13052
|
workflow: {
|
|
@@ -12646,12 +13163,14 @@ export declare const RetryOnFailureSettingFullFragmentDoc = "\n fragment retr
|
|
|
12646
13163
|
export declare const SimpleListPayloadOptionsFullFragmentDoc = "\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n ";
|
|
12647
13164
|
export declare const HostedFilePayloadOptionsFullFragmentDoc = "\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n ";
|
|
12648
13165
|
export declare const NullPayloadOptionsFullFragmentDoc = "\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n ";
|
|
13166
|
+
export declare const RangeFullFragmentDoc = "\n fragment rangeFull on Range {\n start\n end\n}\n ";
|
|
13167
|
+
export declare const NumberPayloadOptionsFullFragmentDoc = "\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n ";
|
|
12649
13168
|
export declare const AutomatePrefixPreprocessorFullFragmentDoc = "\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
12650
13169
|
export declare const AutomateSuffixPreprocessorFullFragmentDoc = "\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
12651
13170
|
export declare const AutomateWorkflowPreprocessorFullFragmentDoc = "\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n ";
|
|
12652
13171
|
export declare const AutomateUrlEncodePreprocessorFullFragmentDoc = "\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n ";
|
|
12653
13172
|
export declare const AutomatePreprocessorFullFragmentDoc = "\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 ";
|
|
12654
|
-
export declare const AutomatePayloadFullFragmentDoc = "\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 }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n ";
|
|
13173
|
+
export declare const AutomatePayloadFullFragmentDoc = "\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 ";
|
|
12655
13174
|
export declare const AutomatePlaceholderFullFragmentDoc = "\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
12656
13175
|
export declare const AutomateSettingsFullFragmentDoc = "\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 ";
|
|
12657
13176
|
export declare const AutomateEntryFullFragmentDoc = "\n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n ";
|
|
@@ -12706,7 +13225,7 @@ export declare const InterceptEntryMetaFragmentDoc = "\n fragment interceptEn
|
|
|
12706
13225
|
export declare const RequestFullFieldsFragmentDoc = "\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
12707
13226
|
export declare const RequestFullFragmentDoc = "\n fragment requestFull on Request {\n ...requestFullFields\n}\n ";
|
|
12708
13227
|
export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\n }\n}\n ";
|
|
12709
|
-
export declare const
|
|
13228
|
+
export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
|
|
12710
13229
|
export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
12711
13230
|
export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n updatedAt\n createdAt\n}\n ";
|
|
12712
13231
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
@@ -12724,13 +13243,14 @@ export declare const PluginMetaFragmentDoc = "\n fragment pluginMeta on Plugi
|
|
|
12724
13243
|
export declare const PluginFrontendMetaFragmentDoc = "\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n}\n ";
|
|
12725
13244
|
export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n ";
|
|
12726
13245
|
export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n}\n ";
|
|
12727
|
-
export declare const ReplayEntryMetaFragmentDoc = "\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n
|
|
13246
|
+
export declare const ReplayEntryMetaFragmentDoc = "\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 ";
|
|
13247
|
+
export declare const ReplayEntryFullFragmentDoc = "\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n}\n ";
|
|
12728
13248
|
export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
12729
13249
|
export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
12730
13250
|
export declare const ReplaySessionMetaFragmentDoc = "\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 ";
|
|
12731
13251
|
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
12732
|
-
export declare const
|
|
12733
|
-
export declare const
|
|
13252
|
+
export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
|
|
13253
|
+
export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n ";
|
|
12734
13254
|
export declare const RequestEdgeMetaFragmentDoc = "\n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n ";
|
|
12735
13255
|
export declare const ResponseFullFragmentDoc = "\n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\n}\n ";
|
|
12736
13256
|
export declare const ReleaseFullFragmentDoc = "\n fragment releaseFull on Release {\n __typename\n links {\n __typename\n display\n link\n platform\n }\n releasedAt\n version\n}\n ";
|
|
@@ -12750,8 +13270,7 @@ export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsF
|
|
|
12750
13270
|
export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
12751
13271
|
export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
|
|
12752
13272
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
12753
|
-
export declare const
|
|
12754
|
-
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskFull\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
13273
|
+
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
12755
13274
|
export declare const SendAssistantMessageDocument = "\n mutation sendAssistantMessage($sessionId: ID!, $message: String) {\n sendAssistantMessage(sessionId: $sessionId, message: $message) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\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 authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
12756
13275
|
export declare const CreateAssistantSessionDocument = "\n mutation createAssistantSession($input: CreateAssistantSessionInput!) {\n createAssistantSession(input: $input) {\n error {\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n session {\n ...assistantSessionMeta\n }\n }\n}\n \n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: 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 assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
12757
13276
|
export declare const DeleteAssistantSessionDocument = "\n mutation deleteAssistantSession($id: ID!) {\n deleteAssistantSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -12760,11 +13279,11 @@ export declare const StartAuthenticationFlowDocument = "\n mutation startAuth
|
|
|
12760
13279
|
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 ";
|
|
12761
13280
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
|
|
12762
13281
|
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 ";
|
|
12763
|
-
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 }\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 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 ";
|
|
12764
|
-
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 }\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 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 ";
|
|
13282
|
+
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 ";
|
|
13283
|
+
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 ";
|
|
12765
13284
|
export declare const DeleteAutomateSessionDocument = "\n mutation deleteAutomateSession($id: ID!) {\n deleteAutomateSession(id: $id) {\n deletedId\n }\n}\n ";
|
|
12766
|
-
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 }\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 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 ";
|
|
12767
|
-
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 }\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 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 ";
|
|
13285
|
+
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 ";
|
|
13286
|
+
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 ";
|
|
12768
13287
|
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 ";
|
|
12769
13288
|
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 ";
|
|
12770
13289
|
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 ";
|
|
@@ -12787,7 +13306,7 @@ export declare const CreateFilterPresetDocument = "\n mutation createFilterPr
|
|
|
12787
13306
|
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 ";
|
|
12788
13307
|
export declare const DeleteFilterPresetDocument = "\n mutation deleteFilterPreset($id: ID!) {\n deleteFilterPreset(id: $id) {\n deletedId\n }\n}\n ";
|
|
12789
13308
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($ids: [ID!]!) {\n deleteFindings(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
12790
|
-
export declare const DeleteInterceptEntriesDocument = "\n mutation deleteInterceptEntries($filter:
|
|
13309
|
+
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 ";
|
|
12791
13310
|
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 ";
|
|
12792
13311
|
export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile($id: ID!) {\n deleteHostedFile(id: $id) {\n deletedId\n }\n}\n ";
|
|
12793
13312
|
export declare const RenameHostedFileDocument = "\n mutation renameHostedFile($id: ID!, $name: String!) {\n renameHostedFile(id: $id, name: $name) {\n hostedFile {\n ...hostedFileFull\n }\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n updatedAt\n createdAt\n}\n ";
|
|
@@ -12810,16 +13329,15 @@ export declare const CreateProjectDocument = "\n mutation createProject($inpu
|
|
|
12810
13329
|
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
12811
13330
|
export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n }\n}\n ";
|
|
12812
13331
|
export declare const RenameProjectDocument = "\n mutation renameProject($id: ID!, $name: String!) {\n renameProject(id: $id, name: $name) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\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 ";
|
|
12813
|
-
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
|
|
12814
|
-
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
|
|
13332
|
+
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 ";
|
|
13333
|
+
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 ";
|
|
12815
13334
|
export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
12816
|
-
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
|
|
12817
|
-
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
|
|
13335
|
+
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 ";
|
|
13336
|
+
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 ";
|
|
12818
13337
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
12819
|
-
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
|
|
12820
|
-
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
|
|
12821
|
-
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($
|
|
12822
|
-
export declare const CancelReplayTaskDocument = "\n mutation cancelReplayTask($id: ID!) {\n cancelReplayTask(id: $id) {\n cancelledId\n }\n}\n ";
|
|
13338
|
+
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 ";
|
|
13339
|
+
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 ";
|
|
13340
|
+
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 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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
12823
13341
|
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 ";
|
|
12824
13342
|
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 ";
|
|
12825
13343
|
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 ";
|
|
@@ -12838,6 +13356,7 @@ export declare const EnableTamperRuleDocument = "\n mutation enableTamperRule
|
|
|
12838
13356
|
export declare const DisableTamperRuleDocument = "\n mutation disableTamperRule($id: ID!) {\n disableTamperRule(id: $id) {\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 ";
|
|
12839
13357
|
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 ";
|
|
12840
13358
|
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 ";
|
|
13359
|
+
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 ";
|
|
12841
13360
|
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 ";
|
|
12842
13361
|
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 nodeId\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}\n ";
|
|
12843
13362
|
export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -12845,19 +13364,19 @@ export declare const ToggleWorkflowDocument = "\n mutation toggleWorkflow($id
|
|
|
12845
13364
|
export declare const RenameWorkflowDocument = "\n mutation renameWorkflow($id: ID!, $name: String!) {\n renameWorkflow(id: $id, name: $name) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 \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}\n ";
|
|
12846
13365
|
export declare const UpdateWorkflowDocument = "\n mutation updateWorkflow($id: ID!, $input: UpdateWorkflowInput!) {\n updateWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\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}\n ";
|
|
12847
13366
|
export declare const RunConvertWorkflowDocument = "\n mutation runConvertWorkflow($id: ID!, $input: Blob!) {\n runConvertWorkflow(id: $id, input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n output\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
12848
|
-
export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...
|
|
13367
|
+
export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\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}\n ";
|
|
12849
13368
|
export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\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}\n ";
|
|
12850
13369
|
export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n nodeId\n message\n reason\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}\n ";
|
|
12851
13370
|
export declare const AssistantModelsDocument = "\n query assistantModels {\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
12852
13371
|
export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
12853
13372
|
export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
12854
13373
|
export declare const AssistantUsageDocument = "\n query assistantUsage {\n viewer {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n ";
|
|
12855
|
-
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 }\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 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 ";
|
|
12856
|
-
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\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 }\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 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 ";
|
|
12857
|
-
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order) {\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 }\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 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 ";
|
|
12858
|
-
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID
|
|
13374
|
+
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 ";
|
|
13375
|
+
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 ";
|
|
13376
|
+
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 ";
|
|
13377
|
+
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 ";
|
|
12859
13378
|
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 ";
|
|
12860
|
-
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 }\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 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 ";
|
|
13379
|
+
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 ";
|
|
12861
13380
|
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 ";
|
|
12862
13381
|
export declare const BackupsDocument = "\n query backups {\n backups {\n ...backupMeta\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 ";
|
|
12863
13382
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
@@ -12875,28 +13394,28 @@ export declare const GetFindingsAfterDocument = "\n query getFindingsAfter($a
|
|
|
12875
13394
|
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 ";
|
|
12876
13395
|
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 ";
|
|
12877
13396
|
export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
|
|
13397
|
+
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 ";
|
|
13398
|
+
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 ";
|
|
13399
|
+
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 ";
|
|
13400
|
+
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 ";
|
|
12878
13401
|
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 ";
|
|
12879
13402
|
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 ";
|
|
12880
13403
|
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 ";
|
|
12881
13404
|
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 ";
|
|
12882
13405
|
export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
|
|
12883
|
-
export declare const InterceptEntriesDocument = "\n query interceptEntries($after: String, $first: Int, $before: String, $last: Int, $order: InterceptEntryOrderInput, $filter: FilterClauseInterceptEntryInput, $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 ...interceptEntryEdgeWithMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeWithMeta 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 ";
|
|
12884
|
-
export declare const InterceptEntriesByOffsetDocument = "\n query interceptEntriesByOffset($limit: Int, $offset: Int, $order: InterceptEntryOrderInput, $filter: FilterClauseInterceptEntryInput, $scopeId: ID) {\n interceptEntriesByOffset(\n limit: $limit\n offset: $offset\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeWithMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeWithMeta 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 ";
|
|
12885
|
-
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 ";
|
|
12886
|
-
export declare const InterceptEntryCountDocument = "\n query interceptEntryCount($filter: FilterClauseInterceptEntryInput, $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 ";
|
|
12887
13406
|
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxies {\n ...upstreamProxyFull\n }\n}\n \n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
12888
13407
|
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 }\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 ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 ";
|
|
12889
13408
|
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
12890
13409
|
export declare const ProjectsDocument = "\n query projects {\n projects {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
12891
|
-
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...
|
|
12892
|
-
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
|
|
12893
|
-
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
|
|
12894
|
-
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
|
|
12895
|
-
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
|
|
12896
|
-
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter:
|
|
12897
|
-
export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter:
|
|
13410
|
+
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}\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 ";
|
|
13411
|
+
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 ";
|
|
13412
|
+
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 ";
|
|
13413
|
+
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 ";
|
|
13414
|
+
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 ";
|
|
13415
|
+
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 ";
|
|
13416
|
+
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 ";
|
|
12898
13417
|
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 ";
|
|
12899
|
-
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter:
|
|
13418
|
+
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 ";
|
|
12900
13419
|
export declare const ResponseDocument = "\n query response($id: ID!) {\n response(id: $id) {\n ...responseFull\n }\n}\n \n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\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 ";
|
|
12901
13420
|
export declare const GetRuntimeDocument = "\n query getRuntime {\n runtime {\n ...runtimeFull\n }\n}\n \n fragment runtimeFull on Runtime {\n __typename\n version\n platform\n availableUpdate {\n ...releaseFull\n }\n}\n \n\n fragment releaseFull on Release {\n __typename\n links {\n __typename\n display\n link\n platform\n }\n releasedAt\n version\n}\n ";
|
|
12902
13421
|
export declare const GetLogsDocument = "\n query getLogs {\n runtime {\n logs\n }\n}\n ";
|
|
@@ -12914,6 +13433,7 @@ export declare const WebsocketMessagesByOffsetDocument = "\n query websocketM
|
|
|
12914
13433
|
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 ";
|
|
12915
13434
|
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 ";
|
|
12916
13435
|
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 ";
|
|
13436
|
+
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}\n ";
|
|
12917
13437
|
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 ";
|
|
12918
13438
|
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 ";
|
|
12919
13439
|
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}\n ";
|
|
@@ -12924,7 +13444,7 @@ export declare const CreatedAssistantMessageTaskDocument = "\n subscription c
|
|
|
12924
13444
|
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 ";
|
|
12925
13445
|
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 ";
|
|
12926
13446
|
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 ";
|
|
12927
|
-
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput) {\n createdAutomateEntryRequest {\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 ";
|
|
13447
|
+
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 ";
|
|
12928
13448
|
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 ";
|
|
12929
13449
|
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
|
|
12930
13450
|
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 ";
|
|
@@ -12948,24 +13468,23 @@ export declare const UpdatedFilterPresetDocument = "\n subscription updatedFi
|
|
|
12948
13468
|
export declare const DeletedFilterPresetDocument = "\n subscription deletedFilterPreset {\n deletedFilterPreset {\n deletedFilterId\n }\n}\n ";
|
|
12949
13469
|
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 ";
|
|
12950
13470
|
export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
|
|
12951
|
-
export declare const
|
|
12952
|
-
export declare const
|
|
12953
|
-
export declare const CreatedInterceptEntryDocument = "\n subscription createdInterceptEntry($order: InterceptEntryOrderInput, $filter: FilterClauseInterceptEntryInput, $scopeId: ID) {\n createdInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeWithMeta\n }\n snapshot\n }\n}\n \n fragment interceptEntryEdgeWithMeta 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 ";
|
|
12954
|
-
export declare const UpdatedInterceptEntryDocument = "\n subscription updatedInterceptEntry($order: InterceptEntryOrderInput, $filter: FilterClauseInterceptEntryInput, $scopeId: ID) {\n updatedInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeWithMeta\n }\n snapshot\n }\n}\n \n fragment interceptEntryEdgeWithMeta 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 ";
|
|
13471
|
+
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 ";
|
|
13472
|
+
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 ";
|
|
12955
13473
|
export declare const DeletedInterceptEntryDocument = "\n subscription deletedInterceptEntry {\n deletedInterceptEntry {\n deletedEntryId\n snapshot\n }\n}\n ";
|
|
12956
13474
|
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 ";
|
|
12957
13475
|
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 ";
|
|
12958
13476
|
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 ";
|
|
13477
|
+
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 ";
|
|
13478
|
+
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 ";
|
|
12959
13479
|
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 }\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 ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 ";
|
|
12960
13480
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
12961
13481
|
export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n \n\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\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 ";
|
|
12962
13482
|
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
12963
13483
|
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
12964
13484
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
12965
|
-
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
|
|
12966
|
-
export declare const
|
|
12967
|
-
export declare const
|
|
12968
|
-
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: FilterClauseRequestResponseInput) {\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 ";
|
|
13485
|
+
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 ";
|
|
13486
|
+
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 ";
|
|
13487
|
+
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 ";
|
|
12969
13488
|
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 ";
|
|
12970
13489
|
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 ";
|
|
12971
13490
|
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 ";
|
|
@@ -12973,8 +13492,8 @@ export declare const CreatedSitemapEntryDocument = "\n subscription createdSi
|
|
|
12973
13492
|
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 ";
|
|
12974
13493
|
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 ";
|
|
12975
13494
|
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 ";
|
|
12976
|
-
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...
|
|
12977
|
-
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...
|
|
13495
|
+
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}\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 ";
|
|
13496
|
+
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}\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 ";
|
|
12978
13497
|
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}\n ";
|
|
12979
13498
|
export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
|
|
12980
13499
|
export declare const UpdatedWorkflowDocument = "\n subscription updatedWorkflow {\n updatedWorkflow {\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}\n ";
|
|
@@ -13047,7 +13566,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
13047
13566
|
createReplaySession(variables: CreateReplaySessionMutationVariables, options?: C): Promise<CreateReplaySessionMutation>;
|
|
13048
13567
|
moveReplaySession(variables: MoveReplaySessionMutationVariables, options?: C): Promise<MoveReplaySessionMutation>;
|
|
13049
13568
|
startReplayTask(variables: StartReplayTaskMutationVariables, options?: C): Promise<StartReplayTaskMutation>;
|
|
13050
|
-
cancelReplayTask(variables: CancelReplayTaskMutationVariables, options?: C): Promise<CancelReplayTaskMutation>;
|
|
13051
13569
|
updateRequestMetadata(variables: UpdateRequestMetadataMutationVariables, options?: C): Promise<UpdateRequestMetadataMutation>;
|
|
13052
13570
|
startExportRequestsTask(variables: StartExportRequestsTaskMutationVariables, options?: C): Promise<StartExportRequestsTaskMutation>;
|
|
13053
13571
|
renderRequest(variables: RenderRequestMutationVariables, options?: C): Promise<RenderRequestMutation>;
|
|
@@ -13066,6 +13584,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
13066
13584
|
disableTamperRule(variables: DisableTamperRuleMutationVariables, options?: C): Promise<DisableTamperRuleMutation>;
|
|
13067
13585
|
rankTamperRule(variables: RankTamperRuleMutationVariables, options?: C): Promise<RankTamperRuleMutation>;
|
|
13068
13586
|
moveTamperRule(variables: MoveTamperRuleMutationVariables, options?: C): Promise<MoveTamperRuleMutation>;
|
|
13587
|
+
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
13069
13588
|
updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
|
|
13070
13589
|
createWorkflow(variables: CreateWorkflowMutationVariables, options?: C): Promise<CreateWorkflowMutation>;
|
|
13071
13590
|
deleteWorkflow(variables: DeleteWorkflowMutationVariables, options?: C): Promise<DeleteWorkflowMutation>;
|
|
@@ -13103,15 +13622,15 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
13103
13622
|
getFindingsByOffset(variables: GetFindingsByOffsetQueryVariables, options?: C): Promise<GetFindingsByOffsetQuery>;
|
|
13104
13623
|
getFindingsCount(variables: GetFindingsCountQueryVariables, options?: C): Promise<GetFindingsCountQuery>;
|
|
13105
13624
|
findingReporters(variables?: FindingReportersQueryVariables, options?: C): Promise<FindingReportersQuery>;
|
|
13625
|
+
interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
|
|
13626
|
+
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
13627
|
+
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
|
13628
|
+
interceptEntryCount(variables?: InterceptEntryCountQueryVariables, options?: C): Promise<InterceptEntryCountQuery>;
|
|
13106
13629
|
hostedFiles(variables?: HostedFilesQueryVariables, options?: C): Promise<HostedFilesQuery>;
|
|
13107
13630
|
interceptRequestMessages(variables: InterceptRequestMessagesQueryVariables, options?: C): Promise<InterceptRequestMessagesQuery>;
|
|
13108
13631
|
interceptResponseMessages(variables: InterceptResponseMessagesQueryVariables, options?: C): Promise<InterceptResponseMessagesQuery>;
|
|
13109
13632
|
interceptOptions(variables?: InterceptOptionsQueryVariables, options?: C): Promise<InterceptOptionsQuery>;
|
|
13110
13633
|
interceptStatus(variables?: InterceptStatusQueryVariables, options?: C): Promise<InterceptStatusQuery>;
|
|
13111
|
-
interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
|
|
13112
|
-
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
13113
|
-
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
|
13114
|
-
interceptEntryCount(variables?: InterceptEntryCountQueryVariables, options?: C): Promise<InterceptEntryCountQuery>;
|
|
13115
13634
|
upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
|
|
13116
13635
|
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
13117
13636
|
currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
|
|
@@ -13142,6 +13661,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
13142
13661
|
websocketMessageCount(variables: WebsocketMessageCountQueryVariables, options?: C): Promise<WebsocketMessageCountQuery>;
|
|
13143
13662
|
websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
|
|
13144
13663
|
tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
|
|
13664
|
+
getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
|
|
13145
13665
|
userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
|
|
13146
13666
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|
|
13147
13667
|
workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
|
|
@@ -13176,14 +13696,14 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
13176
13696
|
deletedFilterPreset(variables?: DeletedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<DeletedFilterPresetSubscription>;
|
|
13177
13697
|
createdFinding(variables?: CreatedFindingSubscriptionVariables, options?: C): AsyncIterable<CreatedFindingSubscription>;
|
|
13178
13698
|
deletedFindings(variables?: DeletedFindingsSubscriptionVariables, options?: C): AsyncIterable<DeletedFindingsSubscription>;
|
|
13179
|
-
createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
|
|
13180
|
-
updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
|
|
13181
13699
|
createdInterceptEntry(variables?: CreatedInterceptEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptEntrySubscription>;
|
|
13182
13700
|
updatedInterceptEntry(variables?: UpdatedInterceptEntrySubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptEntrySubscription>;
|
|
13183
13701
|
deletedInterceptEntry(variables?: DeletedInterceptEntrySubscriptionVariables, options?: C): AsyncIterable<DeletedInterceptEntrySubscription>;
|
|
13184
13702
|
startedDeleteInterceptEntriesTask(variables?: StartedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<StartedDeleteInterceptEntriesTaskSubscription>;
|
|
13185
13703
|
updatedDeleteInterceptEntriesTask(variables?: UpdatedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedDeleteInterceptEntriesTaskSubscription>;
|
|
13186
13704
|
finishedDeleteInterceptEntriesTask(variables?: FinishedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedDeleteInterceptEntriesTaskSubscription>;
|
|
13705
|
+
createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
|
|
13706
|
+
updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
|
|
13187
13707
|
createdPluginPackage(variables?: CreatedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<CreatedPluginPackageSubscription>;
|
|
13188
13708
|
deletedPluginPackage(variables?: DeletedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<DeletedPluginPackageSubscription>;
|
|
13189
13709
|
updatedPlugin(variables?: UpdatedPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedPluginSubscription>;
|
|
@@ -13191,7 +13711,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
13191
13711
|
updatedProject(variables?: UpdatedProjectSubscriptionVariables, options?: C): AsyncIterable<UpdatedProjectSubscription>;
|
|
13192
13712
|
deletedProject(variables?: DeletedProjectSubscriptionVariables, options?: C): AsyncIterable<DeletedProjectSubscription>;
|
|
13193
13713
|
updatedReplaySession(variables?: UpdatedReplaySessionSubscriptionVariables, options?: C): AsyncIterable<UpdatedReplaySessionSubscription>;
|
|
13194
|
-
updatedReplayTask(variables?: UpdatedReplayTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedReplayTaskSubscription>;
|
|
13195
13714
|
createdRequest(variables?: CreatedRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedRequestSubscription>;
|
|
13196
13715
|
updatedRequest(variables?: UpdatedRequestSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestSubscription>;
|
|
13197
13716
|
updatedRequestMetadata(variables?: UpdatedRequestMetadataSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestMetadataSubscription>;
|