@caido/sdk-frontend 0.37.0 → 0.39.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.
@@ -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"]>;
@@ -618,6 +631,17 @@ export type CreateFilterPresetPayload = {
618
631
  error?: Maybe<CreateFilterPresetError>;
619
632
  filter?: Maybe<FilterPreset>;
620
633
  };
634
+ export type CreateFindingError = OtherUserError | UnknownIdUserError;
635
+ export type CreateFindingInput = {
636
+ dedupeKey?: InputMaybe<Scalars["String"]["input"]>;
637
+ description?: InputMaybe<Scalars["String"]["input"]>;
638
+ reporter: Scalars["String"]["input"];
639
+ title: Scalars["String"]["input"];
640
+ };
641
+ export type CreateFindingPayload = {
642
+ error?: Maybe<CreateFindingError>;
643
+ finding?: Maybe<Finding>;
644
+ };
621
645
  export type CreateProjectInput = {
622
646
  name: Scalars["String"]["input"];
623
647
  };
@@ -1031,65 +1055,6 @@ export type EnableTamperRulePayload = {
1031
1055
  export type FilterClauseFindingInput = {
1032
1056
  reporter?: InputMaybe<Scalars["String"]["input"]>;
1033
1057
  };
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
1058
  export type FilterPreset = {
1094
1059
  alias: Scalars["Alias"]["output"];
1095
1060
  clause: Scalars["HTTPQL"]["output"];
@@ -1105,6 +1070,7 @@ export type FilterPresetEdge = {
1105
1070
  };
1106
1071
  export type Finding = {
1107
1072
  createdAt: Scalars["Timestamp"]["output"];
1073
+ dedupeKey?: Maybe<Scalars["String"]["output"]>;
1108
1074
  description?: Maybe<Scalars["String"]["output"]>;
1109
1075
  host: Scalars["String"]["output"];
1110
1076
  id: Scalars["ID"]["output"];
@@ -1360,13 +1326,13 @@ export type MutationRoot = {
1360
1326
  cancelAutomateTask: CancelAutomateTaskPayload;
1361
1327
  cancelBackupTask: CancelBackupTaskPayload;
1362
1328
  cancelDataExportTask: CancelDataExportTaskPayload;
1363
- cancelReplayTask: CancelReplayTaskPayload;
1364
1329
  cancelRestoreBackupTask: CancelRestoreBackupTaskPayload;
1365
1330
  cancelTask: CancelTaskPayload;
1366
1331
  createAssistantSession: CreateAssistantSessionPayload;
1367
1332
  createAutomateSession: CreateAutomateSessionPayload;
1368
1333
  createBackup: CreateBackupPayload;
1369
1334
  createFilterPreset: CreateFilterPresetPayload;
1335
+ createFinding: CreateFindingPayload;
1370
1336
  createProject: CreateProjectPayload;
1371
1337
  createReplaySession: CreateReplaySessionPayload;
1372
1338
  createReplaySessionCollection: CreateReplaySessionCollectionPayload;
@@ -1468,9 +1434,6 @@ export type MutationRootCancelBackupTaskArgs = {
1468
1434
  export type MutationRootCancelDataExportTaskArgs = {
1469
1435
  id: Scalars["ID"]["input"];
1470
1436
  };
1471
- export type MutationRootCancelReplayTaskArgs = {
1472
- id: Scalars["ID"]["input"];
1473
- };
1474
1437
  export type MutationRootCancelRestoreBackupTaskArgs = {
1475
1438
  id: Scalars["ID"]["input"];
1476
1439
  };
@@ -1489,6 +1452,10 @@ export type MutationRootCreateBackupArgs = {
1489
1452
  export type MutationRootCreateFilterPresetArgs = {
1490
1453
  input: CreateFilterPresetInput;
1491
1454
  };
1455
+ export type MutationRootCreateFindingArgs = {
1456
+ input: CreateFindingInput;
1457
+ requestId: Scalars["ID"]["input"];
1458
+ };
1492
1459
  export type MutationRootCreateProjectArgs = {
1493
1460
  input: CreateProjectInput;
1494
1461
  };
@@ -1541,7 +1508,7 @@ export type MutationRootDeleteHostedFileArgs = {
1541
1508
  id: Scalars["ID"]["input"];
1542
1509
  };
1543
1510
  export type MutationRootDeleteInterceptEntriesArgs = {
1544
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
1511
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
1545
1512
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
1546
1513
  };
1547
1514
  export type MutationRootDeleteInterceptEntryArgs = {
@@ -1720,7 +1687,7 @@ export type MutationRootStartExportRequestsTaskArgs = {
1720
1687
  };
1721
1688
  export type MutationRootStartReplayTaskArgs = {
1722
1689
  input: StartReplayTaskInput;
1723
- replaySessionId: Scalars["ID"]["input"];
1690
+ sessionId: Scalars["ID"]["input"];
1724
1691
  };
1725
1692
  export type MutationRootTestTamperRuleArgs = {
1726
1693
  input: TestTamperRuleInput;
@@ -1829,14 +1796,25 @@ export type PluginAuthor = {
1829
1796
  name?: Maybe<Scalars["String"]["output"]>;
1830
1797
  url?: Maybe<Scalars["String"]["output"]>;
1831
1798
  };
1799
+ export type PluginBackend = Plugin & {
1800
+ enabled: Scalars["Boolean"]["output"];
1801
+ id: Scalars["ID"]["output"];
1802
+ manifestId: Scalars["ID"]["output"];
1803
+ name?: Maybe<Scalars["String"]["output"]>;
1804
+ package: PluginPackage;
1805
+ runtime: PluginRuntime;
1806
+ state: PluginState;
1807
+ };
1832
1808
  export declare const PluginErrorReason: {
1833
1809
  readonly AlreadyInstalled: "ALREADY_INSTALLED";
1834
1810
  readonly InvalidManifest: "INVALID_MANIFEST";
1811
+ readonly InvalidOperation: "INVALID_OPERATION";
1835
1812
  readonly InvalidPackage: "INVALID_PACKAGE";
1836
1813
  readonly MissingFile: "MISSING_FILE";
1837
1814
  };
1838
1815
  export type PluginErrorReason = (typeof PluginErrorReason)[keyof typeof PluginErrorReason];
1839
1816
  export type PluginFrontend = Plugin & {
1817
+ backend?: Maybe<PluginBackend>;
1840
1818
  data?: Maybe<Scalars["JSON"]["output"]>;
1841
1819
  enabled: Scalars["Boolean"]["output"];
1842
1820
  entrypoint?: Maybe<Scalars["String"]["output"]>;
@@ -1859,6 +1837,14 @@ export type PluginPackage = {
1859
1837
  export type PluginPackageSource = {
1860
1838
  file: Scalars["Upload"]["input"];
1861
1839
  };
1840
+ export declare const PluginRuntime: {
1841
+ readonly Javascript: "JAVASCRIPT";
1842
+ };
1843
+ export type PluginRuntime = (typeof PluginRuntime)[keyof typeof PluginRuntime];
1844
+ export type PluginState = {
1845
+ error?: Maybe<Scalars["String"]["output"]>;
1846
+ running: Scalars["Boolean"]["output"];
1847
+ };
1862
1848
  export type PluginUserError = UserError & {
1863
1849
  code: Scalars["String"]["output"];
1864
1850
  reason: PluginErrorReason;
@@ -2003,14 +1989,14 @@ export type QueryRootFindingsByOffsetArgs = {
2003
1989
  export type QueryRootInterceptEntriesArgs = {
2004
1990
  after?: InputMaybe<Scalars["String"]["input"]>;
2005
1991
  before?: InputMaybe<Scalars["String"]["input"]>;
2006
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
1992
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2007
1993
  first?: InputMaybe<Scalars["Int"]["input"]>;
2008
1994
  last?: InputMaybe<Scalars["Int"]["input"]>;
2009
1995
  order?: InputMaybe<InterceptEntryOrderInput>;
2010
1996
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2011
1997
  };
2012
1998
  export type QueryRootInterceptEntriesByOffsetArgs = {
2013
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
1999
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2014
2000
  limit?: InputMaybe<Scalars["Int"]["input"]>;
2015
2001
  offset?: InputMaybe<Scalars["Int"]["input"]>;
2016
2002
  order?: InputMaybe<InterceptEntryOrderInput>;
@@ -2050,14 +2036,14 @@ export type QueryRootRequestArgs = {
2050
2036
  export type QueryRootRequestsArgs = {
2051
2037
  after?: InputMaybe<Scalars["String"]["input"]>;
2052
2038
  before?: InputMaybe<Scalars["String"]["input"]>;
2053
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
2039
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2054
2040
  first?: InputMaybe<Scalars["Int"]["input"]>;
2055
2041
  last?: InputMaybe<Scalars["Int"]["input"]>;
2056
2042
  order?: InputMaybe<RequestResponseOrderInput>;
2057
2043
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2058
2044
  };
2059
2045
  export type QueryRootRequestsByOffsetArgs = {
2060
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
2046
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2061
2047
  limit?: InputMaybe<Scalars["Int"]["input"]>;
2062
2048
  offset?: InputMaybe<Scalars["Int"]["input"]>;
2063
2049
  order?: InputMaybe<RequestResponseOrderInput>;
@@ -2130,6 +2116,14 @@ export type QueryRootTamperRuleCollectionsArgs = {
2130
2116
  export type QueryRootWorkflowArgs = {
2131
2117
  id: Scalars["ID"]["input"];
2132
2118
  };
2119
+ export type Range = {
2120
+ end: Scalars["Int"]["output"];
2121
+ start: Scalars["Int"]["output"];
2122
+ };
2123
+ export type RangeInput = {
2124
+ end: Scalars["Int"]["input"];
2125
+ start: Scalars["Int"]["input"];
2126
+ };
2133
2127
  export type RankTamperRuleInput = {
2134
2128
  afterId?: InputMaybe<Scalars["ID"]["input"]>;
2135
2129
  beforeId?: InputMaybe<Scalars["ID"]["input"]>;
@@ -2223,10 +2217,14 @@ export type RenderRequestPayload = {
2223
2217
  render?: Maybe<Scalars["Image"]["output"]>;
2224
2218
  };
2225
2219
  export type ReplayEntry = {
2220
+ connection: ConnectionInfo;
2221
+ createdAt: Scalars["Timestamp"]["output"];
2226
2222
  error?: Maybe<Scalars["String"]["output"]>;
2227
2223
  id: Scalars["ID"]["output"];
2228
- request: Request;
2229
- sessionId: Scalars["ID"]["output"];
2224
+ raw: Scalars["Blob"]["output"];
2225
+ request?: Maybe<Request>;
2226
+ session: ReplaySession;
2227
+ settings: ReplayEntrySettings;
2230
2228
  };
2231
2229
  export type ReplayEntryConnection = {
2232
2230
  count: Count;
@@ -2253,6 +2251,57 @@ export type ReplayEntryOrderInput = {
2253
2251
  by: ReplayEntryOrderBy;
2254
2252
  ordering: Ordering;
2255
2253
  };
2254
+ export type ReplayEntrySettings = {
2255
+ placeholders: Array<ReplayPlaceholder>;
2256
+ };
2257
+ export type ReplayEntrySettingsInput = {
2258
+ placeholders: Array<ReplayPlaceholderInput>;
2259
+ updateContentLength: Scalars["Boolean"]["input"];
2260
+ };
2261
+ export type ReplayPlaceholder = {
2262
+ inputRange: Range;
2263
+ outputRange: Range;
2264
+ preprocessors: Array<ReplayPreprocessor>;
2265
+ };
2266
+ export type ReplayPlaceholderInput = {
2267
+ inputRange: RangeInput;
2268
+ outputRange: RangeInput;
2269
+ preprocessors: Array<ReplayPreprocessorInput>;
2270
+ };
2271
+ export type ReplayPrefixPreprocessor = {
2272
+ value: Scalars["String"]["output"];
2273
+ };
2274
+ export type ReplayPrefixPreprocessorInput = {
2275
+ value: Scalars["String"]["input"];
2276
+ };
2277
+ export type ReplayPreprocessor = {
2278
+ options: ReplayPreprocessorOptions;
2279
+ };
2280
+ export type ReplayPreprocessorInput = {
2281
+ options: ReplayPreprocessorOptionsInput;
2282
+ };
2283
+ export type ReplayPreprocessorOptions = ReplayPrefixPreprocessor | ReplaySuffixPreprocessor | ReplayUrlEncodePreprocessor | ReplayWorkflowPreprocessor;
2284
+ export type ReplayPreprocessorOptionsInput = {
2285
+ prefix: ReplayPrefixPreprocessorInput;
2286
+ suffix?: never;
2287
+ urlEncode?: never;
2288
+ workflow?: never;
2289
+ } | {
2290
+ prefix?: never;
2291
+ suffix: ReplaySuffixPreprocessorInput;
2292
+ urlEncode?: never;
2293
+ workflow?: never;
2294
+ } | {
2295
+ prefix?: never;
2296
+ suffix?: never;
2297
+ urlEncode: ReplayUrlEncodePreprocessorInput;
2298
+ workflow?: never;
2299
+ } | {
2300
+ prefix?: never;
2301
+ suffix?: never;
2302
+ urlEncode?: never;
2303
+ workflow: ReplayWorkflowPreprocessorInput;
2304
+ };
2256
2305
  export type ReplaySession = {
2257
2306
  activeEntry?: Maybe<ReplayEntry>;
2258
2307
  collection: ReplaySessionCollection;
@@ -2306,17 +2355,30 @@ export type ReplaySessionEdge = {
2306
2355
  /** The item at the end of the edge */
2307
2356
  node: ReplaySession;
2308
2357
  };
2309
- export type ReplayTask = {
2310
- error?: Maybe<Scalars["String"]["output"]>;
2358
+ export type ReplaySuffixPreprocessor = {
2359
+ value: Scalars["String"]["output"];
2360
+ };
2361
+ export type ReplaySuffixPreprocessorInput = {
2362
+ value: Scalars["String"]["input"];
2363
+ };
2364
+ export type ReplayTask = Task & {
2365
+ createdAt: Scalars["DateTime"]["output"];
2311
2366
  id: Scalars["ID"]["output"];
2312
- replayEntry?: Maybe<ReplayEntry>;
2367
+ replayEntry: ReplayEntry;
2313
2368
  };
2314
- /** An edge in a connection. */
2315
- export type ReplayTaskEdge = {
2316
- /** A cursor for use in pagination */
2317
- cursor: Scalars["String"]["output"];
2318
- /** The item at the end of the edge */
2319
- node: ReplayTask;
2369
+ export type ReplayUrlEncodePreprocessor = {
2370
+ charset?: Maybe<Scalars["String"]["output"]>;
2371
+ nonAscii: Scalars["Boolean"]["output"];
2372
+ };
2373
+ export type ReplayUrlEncodePreprocessorInput = {
2374
+ charset?: InputMaybe<Scalars["String"]["input"]>;
2375
+ nonAscii: Scalars["Boolean"]["input"];
2376
+ };
2377
+ export type ReplayWorkflowPreprocessor = {
2378
+ id: Scalars["ID"]["output"];
2379
+ };
2380
+ export type ReplayWorkflowPreprocessorInput = {
2381
+ id: Scalars["ID"]["input"];
2320
2382
  };
2321
2383
  export type Request = {
2322
2384
  alteration: Alteration;
@@ -2359,10 +2421,6 @@ export type RequestMetadata = {
2359
2421
  color?: Maybe<Scalars["String"]["output"]>;
2360
2422
  id: Scalars["ID"]["output"];
2361
2423
  };
2362
- export type RequestOptions = {
2363
- withTls: Scalars["Boolean"]["input"];
2364
- withUpdatedContentLength: Scalars["Boolean"]["input"];
2365
- };
2366
2424
  export type RequestRawInput = {
2367
2425
  connectionInfo: ConnectionInfoInput;
2368
2426
  raw: Scalars["Blob"]["input"];
@@ -2559,7 +2617,7 @@ export type StartAutomateTaskPayload = {
2559
2617
  automateTask?: Maybe<AutomateTask>;
2560
2618
  };
2561
2619
  export type StartExportRequestsTaskInput = {
2562
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
2620
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2563
2621
  format: DataExportFormat;
2564
2622
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2565
2623
  settings: DataExportSettings;
@@ -2569,14 +2627,15 @@ export type StartExportRequestsTaskPayload = {
2569
2627
  task?: Maybe<DataExportTask>;
2570
2628
  };
2571
2629
  export type StartExportRequestsTaskPayloadError = OtherUserError | PermissionDeniedUserError;
2630
+ export type StartReplayTaskError = OtherUserError | TaskInProgressUserError;
2572
2631
  export type StartReplayTaskInput = {
2573
- host: Scalars["String"]["input"];
2574
- options: RequestOptions;
2575
- port: Scalars["Port"]["input"];
2632
+ connection: ConnectionInfoInput;
2576
2633
  raw: Scalars["Blob"]["input"];
2634
+ settings: ReplayEntrySettingsInput;
2577
2635
  };
2578
2636
  export type StartReplayTaskPayload = {
2579
- task: ReplayTask;
2637
+ error?: Maybe<StartReplayTaskError>;
2638
+ task?: Maybe<ReplayTask>;
2580
2639
  };
2581
2640
  export type StartedBackupTaskPayload = {
2582
2641
  task: BackupTask;
@@ -2759,7 +2818,6 @@ export type SubscriptionRoot = {
2759
2818
  updatedProject: UpdatedProjectPayload;
2760
2819
  updatedReplaySession: UpdatedReplaySessionPayload;
2761
2820
  updatedReplaySessionCollection: UpdatedReplaySessionCollectionPayload;
2762
- updatedReplayTask: UpdatedReplayTaskPayload;
2763
2821
  updatedRequest: UpdatedRequestPayload;
2764
2822
  updatedRequestMetadata: UpdatedRequestMetadataPayload;
2765
2823
  updatedScope: UpdatedScopePayload;
@@ -2774,12 +2832,15 @@ export type SubscriptionRoot = {
2774
2832
  export type SubscriptionRootCreatedAuthenticationTokenArgs = {
2775
2833
  requestId: Scalars["ID"]["input"];
2776
2834
  };
2835
+ export type SubscriptionRootCreatedAutomateEntryRequestArgs = {
2836
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2837
+ };
2777
2838
  export type SubscriptionRootCreatedInterceptEntryArgs = {
2778
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
2839
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2779
2840
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2780
2841
  };
2781
2842
  export type SubscriptionRootCreatedRequestArgs = {
2782
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
2843
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2783
2844
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2784
2845
  };
2785
2846
  export type SubscriptionRootCreatedSitemapEntryArgs = {
@@ -2790,11 +2851,11 @@ export type SubscriptionRootCreatedStreamArgs = {
2790
2851
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2791
2852
  };
2792
2853
  export type SubscriptionRootUpdatedInterceptEntryArgs = {
2793
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
2854
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2794
2855
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2795
2856
  };
2796
2857
  export type SubscriptionRootUpdatedRequestArgs = {
2797
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
2858
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2798
2859
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2799
2860
  };
2800
2861
  export type SubscriptionRootUpdatedSitemapEntryArgs = {
@@ -3050,10 +3111,6 @@ export type UpdatedReplaySessionPayload = {
3050
3111
  sessionEdge: ReplaySessionEdge;
3051
3112
  snapshot: Scalars["Snapshot"]["output"];
3052
3113
  };
3053
- export type UpdatedReplayTaskPayload = {
3054
- replayTaskEdge: ReplayTaskEdge;
3055
- snapshot: Scalars["Snapshot"]["output"];
3056
- };
3057
3114
  export type UpdatedRequestMetadataPayload = {
3058
3115
  metadata: RequestMetadata;
3059
3116
  snapshot: Scalars["Snapshot"]["output"];
@@ -3342,6 +3399,12 @@ export type AutomateEntryFullFragment = {
3342
3399
  } | {
3343
3400
  __typename: "AutomateNullPayload";
3344
3401
  quantity: number;
3402
+ } | {
3403
+ __typename: "AutomateNumberPayload";
3404
+ range: {
3405
+ start: number;
3406
+ end: number;
3407
+ };
3345
3408
  } | {
3346
3409
  __typename: "AutomateSimpleListPayload";
3347
3410
  list: Array<string>;
@@ -3518,6 +3581,12 @@ export type AutomateSessionFullFragment = {
3518
3581
  } | {
3519
3582
  __typename: "AutomateNullPayload";
3520
3583
  quantity: number;
3584
+ } | {
3585
+ __typename: "AutomateNumberPayload";
3586
+ range: {
3587
+ start: number;
3588
+ end: number;
3589
+ };
3521
3590
  } | {
3522
3591
  __typename: "AutomateSimpleListPayload";
3523
3592
  list: Array<string>;
@@ -3580,6 +3649,12 @@ export type AutomateSettingsFullFragment = {
3580
3649
  } | {
3581
3650
  __typename: "AutomateNullPayload";
3582
3651
  quantity: number;
3652
+ } | {
3653
+ __typename: "AutomateNumberPayload";
3654
+ range: {
3655
+ start: number;
3656
+ end: number;
3657
+ };
3583
3658
  } | {
3584
3659
  __typename: "AutomateSimpleListPayload";
3585
3660
  list: Array<string>;
@@ -3627,6 +3702,12 @@ export type AutomatePayloadFullFragment = {
3627
3702
  } | {
3628
3703
  __typename: "AutomateNullPayload";
3629
3704
  quantity: number;
3705
+ } | {
3706
+ __typename: "AutomateNumberPayload";
3707
+ range: {
3708
+ start: number;
3709
+ end: number;
3710
+ };
3630
3711
  } | {
3631
3712
  __typename: "AutomateSimpleListPayload";
3632
3713
  list: Array<string>;
@@ -3701,6 +3782,13 @@ export type NullPayloadOptionsFullFragment = {
3701
3782
  __typename: "AutomateNullPayload";
3702
3783
  quantity: number;
3703
3784
  };
3785
+ export type NumberPayloadOptionsFullFragment = {
3786
+ __typename: "AutomateNumberPayload";
3787
+ range: {
3788
+ start: number;
3789
+ end: number;
3790
+ };
3791
+ };
3704
3792
  export type AutomateTaskMetaFragment = {
3705
3793
  id: string;
3706
3794
  paused: boolean;
@@ -4345,7 +4433,7 @@ export type InterceptEntryMetaFragment = {
4345
4433
  } | undefined | null;
4346
4434
  };
4347
4435
  };
4348
- export type InterceptEntryEdgeWithMetaFragment = {
4436
+ export type InterceptEntryEdgeMetaFragment = {
4349
4437
  __typename: "InterceptEntryEdge";
4350
4438
  cursor: string;
4351
4439
  node: {
@@ -4612,8 +4700,8 @@ export type PageInfoFullFragment = {
4612
4700
  startCursor?: string | undefined | null;
4613
4701
  endCursor?: string | undefined | null;
4614
4702
  };
4615
- export type PluginMetaFragment = {
4616
- __typename: "PluginFrontend";
4703
+ type PluginMeta_PluginBackend_Fragment = {
4704
+ __typename: "PluginBackend";
4617
4705
  id: string;
4618
4706
  name?: string | undefined | null;
4619
4707
  enabled: boolean;
@@ -4622,10 +4710,8 @@ export type PluginMetaFragment = {
4622
4710
  id: string;
4623
4711
  };
4624
4712
  };
4625
- export type PluginFrontendMetaFragment = {
4713
+ type PluginMeta_PluginFrontend_Fragment = {
4626
4714
  __typename: "PluginFrontend";
4627
- entrypoint?: string | undefined | null;
4628
- style?: string | undefined | null;
4629
4715
  id: string;
4630
4716
  name?: string | undefined | null;
4631
4717
  enabled: boolean;
@@ -4634,15 +4720,39 @@ export type PluginFrontendMetaFragment = {
4634
4720
  id: string;
4635
4721
  };
4636
4722
  };
4723
+ export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment;
4724
+ export type PluginBackendMetaFragment = {
4725
+ __typename: "PluginBackend";
4726
+ id: string;
4727
+ };
4728
+ export type PluginBackendFullFragment = {
4729
+ __typename: "PluginBackend";
4730
+ runtime: PluginRuntime;
4731
+ id: string;
4732
+ name?: string | undefined | null;
4733
+ enabled: boolean;
4734
+ manifestId: string;
4735
+ state: {
4736
+ error?: string | undefined | null;
4737
+ running: boolean;
4738
+ };
4739
+ package: {
4740
+ id: string;
4741
+ };
4742
+ };
4637
4743
  export type PluginFrontendFullFragment = {
4638
4744
  __typename: "PluginFrontend";
4639
- data?: JSONValue | undefined | null;
4640
4745
  entrypoint?: string | undefined | null;
4641
4746
  style?: string | undefined | null;
4747
+ data?: JSONValue | undefined | null;
4642
4748
  id: string;
4643
4749
  name?: string | undefined | null;
4644
4750
  enabled: boolean;
4645
4751
  manifestId: string;
4752
+ backend?: {
4753
+ __typename: "PluginBackend";
4754
+ id: string;
4755
+ } | undefined | null;
4646
4756
  package: {
4647
4757
  id: string;
4648
4758
  };
@@ -4673,14 +4783,32 @@ export type PluginPackageFullFragment = {
4673
4783
  installedAt: Date;
4674
4784
  manifestId: string;
4675
4785
  plugins: Array<{
4786
+ __typename: "PluginBackend";
4787
+ runtime: PluginRuntime;
4788
+ id: string;
4789
+ name?: string | undefined | null;
4790
+ enabled: boolean;
4791
+ manifestId: string;
4792
+ state: {
4793
+ error?: string | undefined | null;
4794
+ running: boolean;
4795
+ };
4796
+ package: {
4797
+ id: string;
4798
+ };
4799
+ } | {
4676
4800
  __typename: "PluginFrontend";
4677
- data?: JSONValue | undefined | null;
4678
4801
  entrypoint?: string | undefined | null;
4679
4802
  style?: string | undefined | null;
4803
+ data?: JSONValue | undefined | null;
4680
4804
  id: string;
4681
4805
  name?: string | undefined | null;
4682
4806
  enabled: boolean;
4683
4807
  manifestId: string;
4808
+ backend?: {
4809
+ __typename: "PluginBackend";
4810
+ id: string;
4811
+ } | undefined | null;
4684
4812
  package: {
4685
4813
  id: string;
4686
4814
  };
@@ -4705,12 +4833,24 @@ export type ProjectFullFragment = {
4705
4833
  id: string;
4706
4834
  }>;
4707
4835
  };
4836
+ export type RangeFullFragment = {
4837
+ start: number;
4838
+ end: number;
4839
+ };
4708
4840
  export type ReplayEntryMetaFragment = {
4709
4841
  __typename: "ReplayEntry";
4710
4842
  id: string;
4711
4843
  error?: string | undefined | null;
4712
- sessionId: string;
4713
- request: {
4844
+ connection: {
4845
+ __typename: "ConnectionInfo";
4846
+ host: string;
4847
+ port: number;
4848
+ isTls: boolean;
4849
+ };
4850
+ session: {
4851
+ id: string;
4852
+ };
4853
+ request?: {
4714
4854
  __typename: "Request";
4715
4855
  id: string;
4716
4856
  host: string;
@@ -4740,7 +4880,83 @@ export type ReplayEntryMetaFragment = {
4740
4880
  alteration: Alteration;
4741
4881
  edited: boolean;
4742
4882
  } | undefined | null;
4883
+ } | undefined | null;
4884
+ };
4885
+ export type ReplayEntryFullFragment = {
4886
+ __typename: "ReplayEntry";
4887
+ raw: string;
4888
+ id: string;
4889
+ error?: string | undefined | null;
4890
+ settings: {
4891
+ placeholders: Array<{
4892
+ __typename: "ReplayPlaceholder";
4893
+ inputRange: {
4894
+ start: number;
4895
+ end: number;
4896
+ };
4897
+ outputRange: {
4898
+ start: number;
4899
+ end: number;
4900
+ };
4901
+ preprocessors: Array<{
4902
+ __typename: "ReplayPreprocessor";
4903
+ options: {
4904
+ __typename: "ReplayPrefixPreprocessor";
4905
+ value: string;
4906
+ } | {
4907
+ __typename: "ReplaySuffixPreprocessor";
4908
+ value: string;
4909
+ } | {
4910
+ __typename: "ReplayUrlEncodePreprocessor";
4911
+ charset?: string | undefined | null;
4912
+ nonAscii: boolean;
4913
+ } | {
4914
+ __typename: "ReplayWorkflowPreprocessor";
4915
+ id: string;
4916
+ };
4917
+ }>;
4918
+ }>;
4919
+ };
4920
+ connection: {
4921
+ __typename: "ConnectionInfo";
4922
+ host: string;
4923
+ port: number;
4924
+ isTls: boolean;
4925
+ };
4926
+ session: {
4927
+ id: string;
4743
4928
  };
4929
+ request?: {
4930
+ __typename: "Request";
4931
+ id: string;
4932
+ host: string;
4933
+ port: number;
4934
+ path: string;
4935
+ query: string;
4936
+ method: string;
4937
+ edited: boolean;
4938
+ isTls: boolean;
4939
+ length: number;
4940
+ alteration: Alteration;
4941
+ fileExtension?: string | undefined | null;
4942
+ source: Source;
4943
+ createdAt: Date;
4944
+ metadata: {
4945
+ __typename: "RequestMetadata";
4946
+ id: string;
4947
+ color?: string | undefined | null;
4948
+ };
4949
+ response?: {
4950
+ __typename: "Response";
4951
+ id: string;
4952
+ statusCode: number;
4953
+ roundtripTime: number;
4954
+ length: number;
4955
+ createdAt: Date;
4956
+ alteration: Alteration;
4957
+ edited: boolean;
4958
+ } | undefined | null;
4959
+ } | undefined | null;
4744
4960
  };
4745
4961
  export type ReplaySessionMetaFragment = {
4746
4962
  __typename: "ReplaySession";
@@ -4750,8 +4966,16 @@ export type ReplaySessionMetaFragment = {
4750
4966
  __typename: "ReplayEntry";
4751
4967
  id: string;
4752
4968
  error?: string | undefined | null;
4753
- sessionId: string;
4754
- request: {
4969
+ connection: {
4970
+ __typename: "ConnectionInfo";
4971
+ host: string;
4972
+ port: number;
4973
+ isTls: boolean;
4974
+ };
4975
+ session: {
4976
+ id: string;
4977
+ };
4978
+ request?: {
4755
4979
  __typename: "Request";
4756
4980
  id: string;
4757
4981
  host: string;
@@ -4781,7 +5005,7 @@ export type ReplaySessionMetaFragment = {
4781
5005
  alteration: Alteration;
4782
5006
  edited: boolean;
4783
5007
  } | undefined | null;
4784
- };
5008
+ } | undefined | null;
4785
5009
  } | undefined | null;
4786
5010
  collection: {
4787
5011
  id: string;
@@ -4791,8 +5015,16 @@ export type ReplaySessionMetaFragment = {
4791
5015
  __typename: "ReplayEntry";
4792
5016
  id: string;
4793
5017
  error?: string | undefined | null;
4794
- sessionId: string;
4795
- request: {
5018
+ connection: {
5019
+ __typename: "ConnectionInfo";
5020
+ host: string;
5021
+ port: number;
5022
+ isTls: boolean;
5023
+ };
5024
+ session: {
5025
+ id: string;
5026
+ };
5027
+ request?: {
4796
5028
  __typename: "Request";
4797
5029
  id: string;
4798
5030
  host: string;
@@ -4822,7 +5054,7 @@ export type ReplaySessionMetaFragment = {
4822
5054
  alteration: Alteration;
4823
5055
  edited: boolean;
4824
5056
  } | undefined | null;
4825
- };
5057
+ } | undefined | null;
4826
5058
  }>;
4827
5059
  pageInfo: {
4828
5060
  __typename: "PageInfo";
@@ -4850,15 +5082,23 @@ export type ReplaySessionCollectionMetaFragment = {
4850
5082
  __typename: "ReplayEntry";
4851
5083
  id: string;
4852
5084
  error?: string | undefined | null;
4853
- sessionId: string;
4854
- request: {
4855
- __typename: "Request";
4856
- id: string;
5085
+ connection: {
5086
+ __typename: "ConnectionInfo";
4857
5087
  host: string;
4858
5088
  port: number;
4859
- path: string;
4860
- query: string;
4861
- method: string;
5089
+ isTls: boolean;
5090
+ };
5091
+ session: {
5092
+ id: string;
5093
+ };
5094
+ request?: {
5095
+ __typename: "Request";
5096
+ id: string;
5097
+ host: string;
5098
+ port: number;
5099
+ path: string;
5100
+ query: string;
5101
+ method: string;
4862
5102
  edited: boolean;
4863
5103
  isTls: boolean;
4864
5104
  length: number;
@@ -4881,7 +5121,7 @@ export type ReplaySessionCollectionMetaFragment = {
4881
5121
  alteration: Alteration;
4882
5122
  edited: boolean;
4883
5123
  } | undefined | null;
4884
- };
5124
+ } | undefined | null;
4885
5125
  } | undefined | null;
4886
5126
  collection: {
4887
5127
  id: string;
@@ -4891,8 +5131,16 @@ export type ReplaySessionCollectionMetaFragment = {
4891
5131
  __typename: "ReplayEntry";
4892
5132
  id: string;
4893
5133
  error?: string | undefined | null;
4894
- sessionId: string;
4895
- request: {
5134
+ connection: {
5135
+ __typename: "ConnectionInfo";
5136
+ host: string;
5137
+ port: number;
5138
+ isTls: boolean;
5139
+ };
5140
+ session: {
5141
+ id: string;
5142
+ };
5143
+ request?: {
4896
5144
  __typename: "Request";
4897
5145
  id: string;
4898
5146
  host: string;
@@ -4922,7 +5170,7 @@ export type ReplaySessionCollectionMetaFragment = {
4922
5170
  alteration: Alteration;
4923
5171
  edited: boolean;
4924
5172
  } | undefined | null;
4925
- };
5173
+ } | undefined | null;
4926
5174
  }>;
4927
5175
  pageInfo: {
4928
5176
  __typename: "PageInfo";
@@ -4942,13 +5190,21 @@ export type ReplaySessionCollectionMetaFragment = {
4942
5190
  export type ReplayTaskMetaFragment = {
4943
5191
  __typename: "ReplayTask";
4944
5192
  id: string;
4945
- error?: string | undefined | null;
4946
- replayEntry?: {
5193
+ createdAt: Date;
5194
+ replayEntry: {
4947
5195
  __typename: "ReplayEntry";
4948
5196
  id: string;
4949
5197
  error?: string | undefined | null;
4950
- sessionId: string;
4951
- request: {
5198
+ connection: {
5199
+ __typename: "ConnectionInfo";
5200
+ host: string;
5201
+ port: number;
5202
+ isTls: boolean;
5203
+ };
5204
+ session: {
5205
+ id: string;
5206
+ };
5207
+ request?: {
4952
5208
  __typename: "Request";
4953
5209
  id: string;
4954
5210
  host: string;
@@ -4978,55 +5234,71 @@ export type ReplayTaskMetaFragment = {
4978
5234
  alteration: Alteration;
4979
5235
  edited: boolean;
4980
5236
  } | undefined | null;
4981
- };
4982
- } | undefined | null;
5237
+ } | undefined | null;
5238
+ };
4983
5239
  };
4984
- export type ReplayTaskEdgeMetaFragment = {
4985
- __typename: "ReplayTaskEdge";
4986
- cursor: string;
4987
- node: {
4988
- __typename: "ReplayTask";
5240
+ export type ReplayPrefixPreprocessorFullFragment = {
5241
+ __typename: "ReplayPrefixPreprocessor";
5242
+ value: string;
5243
+ };
5244
+ export type ReplaySuffixPreprocessorFullFragment = {
5245
+ __typename: "ReplaySuffixPreprocessor";
5246
+ value: string;
5247
+ };
5248
+ export type ReplayUrlEncodePreprocessorFullFragment = {
5249
+ __typename: "ReplayUrlEncodePreprocessor";
5250
+ charset?: string | undefined | null;
5251
+ nonAscii: boolean;
5252
+ };
5253
+ export type ReplayWorkflowPreprocessorFullFragment = {
5254
+ __typename: "ReplayWorkflowPreprocessor";
5255
+ id: string;
5256
+ };
5257
+ export type ReplayPreprocessorFullFragment = {
5258
+ __typename: "ReplayPreprocessor";
5259
+ options: {
5260
+ __typename: "ReplayPrefixPreprocessor";
5261
+ value: string;
5262
+ } | {
5263
+ __typename: "ReplaySuffixPreprocessor";
5264
+ value: string;
5265
+ } | {
5266
+ __typename: "ReplayUrlEncodePreprocessor";
5267
+ charset?: string | undefined | null;
5268
+ nonAscii: boolean;
5269
+ } | {
5270
+ __typename: "ReplayWorkflowPreprocessor";
4989
5271
  id: string;
4990
- error?: string | undefined | null;
4991
- replayEntry?: {
4992
- __typename: "ReplayEntry";
4993
- id: string;
4994
- error?: string | undefined | null;
4995
- sessionId: string;
4996
- request: {
4997
- __typename: "Request";
4998
- id: string;
4999
- host: string;
5000
- port: number;
5001
- path: string;
5002
- query: string;
5003
- method: string;
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
5272
  };
5029
5273
  };
5274
+ export type ReplayPlaceholderFullFragment = {
5275
+ __typename: "ReplayPlaceholder";
5276
+ inputRange: {
5277
+ start: number;
5278
+ end: number;
5279
+ };
5280
+ outputRange: {
5281
+ start: number;
5282
+ end: number;
5283
+ };
5284
+ preprocessors: Array<{
5285
+ __typename: "ReplayPreprocessor";
5286
+ options: {
5287
+ __typename: "ReplayPrefixPreprocessor";
5288
+ value: string;
5289
+ } | {
5290
+ __typename: "ReplaySuffixPreprocessor";
5291
+ value: string;
5292
+ } | {
5293
+ __typename: "ReplayUrlEncodePreprocessor";
5294
+ charset?: string | undefined | null;
5295
+ nonAscii: boolean;
5296
+ } | {
5297
+ __typename: "ReplayWorkflowPreprocessor";
5298
+ id: string;
5299
+ };
5300
+ }>;
5301
+ };
5030
5302
  export type RequestFullFragment = {
5031
5303
  __typename: "Request";
5032
5304
  raw: string;
@@ -5416,10 +5688,17 @@ export type TamperRuleFullFragment = {
5416
5688
  id: string;
5417
5689
  };
5418
5690
  };
5419
- export type TaskFullFragment = {
5691
+ type TaskMeta_ReplayTask_Fragment = {
5692
+ __typename: "ReplayTask";
5693
+ id: string;
5694
+ createdAt: Date;
5695
+ };
5696
+ type TaskMeta_WorkflowTask_Fragment = {
5697
+ __typename: "WorkflowTask";
5420
5698
  id: string;
5421
5699
  createdAt: Date;
5422
5700
  };
5701
+ export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
5423
5702
  export type UserProfileFullFragment = {
5424
5703
  __typename: "UserProfile";
5425
5704
  identity: {
@@ -5466,6 +5745,7 @@ export type WorkflowNodeDefinitionFullFragment = {
5466
5745
  raw: JSONValue;
5467
5746
  };
5468
5747
  export type WorkflowTaskMetaFragment = {
5748
+ __typename: "WorkflowTask";
5469
5749
  id: string;
5470
5750
  createdAt: Date;
5471
5751
  workflow: {
@@ -5672,6 +5952,12 @@ export type RenameAutomateEntryMutation = {
5672
5952
  } | {
5673
5953
  __typename: "AutomateNullPayload";
5674
5954
  quantity: number;
5955
+ } | {
5956
+ __typename: "AutomateNumberPayload";
5957
+ range: {
5958
+ start: number;
5959
+ end: number;
5960
+ };
5675
5961
  } | {
5676
5962
  __typename: "AutomateSimpleListPayload";
5677
5963
  list: Array<string>;
@@ -5747,6 +6033,12 @@ export type CreateAutomateSessionMutation = {
5747
6033
  } | {
5748
6034
  __typename: "AutomateNullPayload";
5749
6035
  quantity: number;
6036
+ } | {
6037
+ __typename: "AutomateNumberPayload";
6038
+ range: {
6039
+ start: number;
6040
+ end: number;
6041
+ };
5750
6042
  } | {
5751
6043
  __typename: "AutomateSimpleListPayload";
5752
6044
  list: Array<string>;
@@ -5837,6 +6129,12 @@ export type RenameAutomateSessionMutation = {
5837
6129
  } | {
5838
6130
  __typename: "AutomateNullPayload";
5839
6131
  quantity: number;
6132
+ } | {
6133
+ __typename: "AutomateNumberPayload";
6134
+ range: {
6135
+ start: number;
6136
+ end: number;
6137
+ };
5840
6138
  } | {
5841
6139
  __typename: "AutomateSimpleListPayload";
5842
6140
  list: Array<string>;
@@ -5919,6 +6217,12 @@ export type UpdateAutomateSessionMutation = {
5919
6217
  } | {
5920
6218
  __typename: "AutomateNullPayload";
5921
6219
  quantity: number;
6220
+ } | {
6221
+ __typename: "AutomateNumberPayload";
6222
+ range: {
6223
+ start: number;
6224
+ end: number;
6225
+ };
5922
6226
  } | {
5923
6227
  __typename: "AutomateSimpleListPayload";
5924
6228
  list: Array<string>;
@@ -6447,6 +6751,62 @@ export type DeleteFilterPresetMutation = {
6447
6751
  deletedId?: string | undefined | null;
6448
6752
  };
6449
6753
  };
6754
+ export type CreateFindingMutationVariables = Exact<{
6755
+ requestId: Scalars["ID"]["input"];
6756
+ input: CreateFindingInput;
6757
+ }>;
6758
+ export type CreateFindingMutation = {
6759
+ createFinding: {
6760
+ finding?: {
6761
+ id: string;
6762
+ title: string;
6763
+ description?: string | undefined | null;
6764
+ reporter: string;
6765
+ host: string;
6766
+ path: string;
6767
+ createdAt: Date;
6768
+ request: {
6769
+ __typename: "Request";
6770
+ id: string;
6771
+ host: string;
6772
+ port: number;
6773
+ path: string;
6774
+ query: string;
6775
+ method: string;
6776
+ edited: boolean;
6777
+ isTls: boolean;
6778
+ length: number;
6779
+ alteration: Alteration;
6780
+ fileExtension?: string | undefined | null;
6781
+ source: Source;
6782
+ createdAt: Date;
6783
+ metadata: {
6784
+ __typename: "RequestMetadata";
6785
+ id: string;
6786
+ color?: string | undefined | null;
6787
+ };
6788
+ response?: {
6789
+ __typename: "Response";
6790
+ id: string;
6791
+ statusCode: number;
6792
+ roundtripTime: number;
6793
+ length: number;
6794
+ createdAt: Date;
6795
+ alteration: Alteration;
6796
+ edited: boolean;
6797
+ } | undefined | null;
6798
+ };
6799
+ } | undefined | null;
6800
+ error?: {
6801
+ __typename: "OtherUserError";
6802
+ code: string;
6803
+ } | {
6804
+ __typename: "UnknownIdUserError";
6805
+ id: string;
6806
+ code: string;
6807
+ } | undefined | null;
6808
+ };
6809
+ };
6450
6810
  export type DeleteFindingsMutationVariables = Exact<{
6451
6811
  ids: Array<Scalars["ID"]["input"]> | Scalars["ID"]["input"];
6452
6812
  }>;
@@ -6456,7 +6816,7 @@ export type DeleteFindingsMutation = {
6456
6816
  };
6457
6817
  };
6458
6818
  export type DeleteInterceptEntriesMutationVariables = Exact<{
6459
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
6819
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
6460
6820
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
6461
6821
  }>;
6462
6822
  export type DeleteInterceptEntriesMutation = {
@@ -6684,14 +7044,32 @@ export type InstallPluginPackageMutation = {
6684
7044
  installedAt: Date;
6685
7045
  manifestId: string;
6686
7046
  plugins: Array<{
7047
+ __typename: "PluginBackend";
7048
+ runtime: PluginRuntime;
7049
+ id: string;
7050
+ name?: string | undefined | null;
7051
+ enabled: boolean;
7052
+ manifestId: string;
7053
+ state: {
7054
+ error?: string | undefined | null;
7055
+ running: boolean;
7056
+ };
7057
+ package: {
7058
+ id: string;
7059
+ };
7060
+ } | {
6687
7061
  __typename: "PluginFrontend";
6688
- data?: JSONValue | undefined | null;
6689
7062
  entrypoint?: string | undefined | null;
6690
7063
  style?: string | undefined | null;
7064
+ data?: JSONValue | undefined | null;
6691
7065
  id: string;
6692
7066
  name?: string | undefined | null;
6693
7067
  enabled: boolean;
6694
7068
  manifestId: string;
7069
+ backend?: {
7070
+ __typename: "PluginBackend";
7071
+ id: string;
7072
+ } | undefined | null;
6695
7073
  package: {
6696
7074
  id: string;
6697
7075
  };
@@ -6735,14 +7113,32 @@ export type TogglePluginMutationVariables = Exact<{
6735
7113
  export type TogglePluginMutation = {
6736
7114
  togglePlugin: {
6737
7115
  plugin?: {
7116
+ __typename: "PluginBackend";
7117
+ runtime: PluginRuntime;
7118
+ id: string;
7119
+ name?: string | undefined | null;
7120
+ enabled: boolean;
7121
+ manifestId: string;
7122
+ state: {
7123
+ error?: string | undefined | null;
7124
+ running: boolean;
7125
+ };
7126
+ package: {
7127
+ id: string;
7128
+ };
7129
+ } | {
6738
7130
  __typename: "PluginFrontend";
6739
- data?: JSONValue | undefined | null;
6740
7131
  entrypoint?: string | undefined | null;
6741
7132
  style?: string | undefined | null;
7133
+ data?: JSONValue | undefined | null;
6742
7134
  id: string;
6743
7135
  name?: string | undefined | null;
6744
7136
  enabled: boolean;
6745
7137
  manifestId: string;
7138
+ backend?: {
7139
+ __typename: "PluginBackend";
7140
+ id: string;
7141
+ } | undefined | null;
6746
7142
  package: {
6747
7143
  id: string;
6748
7144
  };
@@ -6768,14 +7164,32 @@ export type SetPluginDataMutationVariables = Exact<{
6768
7164
  export type SetPluginDataMutation = {
6769
7165
  setPluginData: {
6770
7166
  plugin?: {
7167
+ __typename: "PluginBackend";
7168
+ runtime: PluginRuntime;
7169
+ id: string;
7170
+ name?: string | undefined | null;
7171
+ enabled: boolean;
7172
+ manifestId: string;
7173
+ state: {
7174
+ error?: string | undefined | null;
7175
+ running: boolean;
7176
+ };
7177
+ package: {
7178
+ id: string;
7179
+ };
7180
+ } | {
6771
7181
  __typename: "PluginFrontend";
6772
- data?: JSONValue | undefined | null;
6773
7182
  entrypoint?: string | undefined | null;
6774
7183
  style?: string | undefined | null;
7184
+ data?: JSONValue | undefined | null;
6775
7185
  id: string;
6776
7186
  name?: string | undefined | null;
6777
7187
  enabled: boolean;
6778
7188
  manifestId: string;
7189
+ backend?: {
7190
+ __typename: "PluginBackend";
7191
+ id: string;
7192
+ } | undefined | null;
6779
7193
  package: {
6780
7194
  id: string;
6781
7195
  };
@@ -6904,8 +7318,16 @@ export type RenameReplaySessionCollectionMutation = {
6904
7318
  __typename: "ReplayEntry";
6905
7319
  id: string;
6906
7320
  error?: string | undefined | null;
6907
- sessionId: string;
6908
- request: {
7321
+ connection: {
7322
+ __typename: "ConnectionInfo";
7323
+ host: string;
7324
+ port: number;
7325
+ isTls: boolean;
7326
+ };
7327
+ session: {
7328
+ id: string;
7329
+ };
7330
+ request?: {
6909
7331
  __typename: "Request";
6910
7332
  id: string;
6911
7333
  host: string;
@@ -6935,7 +7357,7 @@ export type RenameReplaySessionCollectionMutation = {
6935
7357
  alteration: Alteration;
6936
7358
  edited: boolean;
6937
7359
  } | undefined | null;
6938
- };
7360
+ } | undefined | null;
6939
7361
  } | undefined | null;
6940
7362
  collection: {
6941
7363
  id: string;
@@ -6945,8 +7367,16 @@ export type RenameReplaySessionCollectionMutation = {
6945
7367
  __typename: "ReplayEntry";
6946
7368
  id: string;
6947
7369
  error?: string | undefined | null;
6948
- sessionId: string;
6949
- request: {
7370
+ connection: {
7371
+ __typename: "ConnectionInfo";
7372
+ host: string;
7373
+ port: number;
7374
+ isTls: boolean;
7375
+ };
7376
+ session: {
7377
+ id: string;
7378
+ };
7379
+ request?: {
6950
7380
  __typename: "Request";
6951
7381
  id: string;
6952
7382
  host: string;
@@ -6976,7 +7406,7 @@ export type RenameReplaySessionCollectionMutation = {
6976
7406
  alteration: Alteration;
6977
7407
  edited: boolean;
6978
7408
  } | undefined | null;
6979
- };
7409
+ } | undefined | null;
6980
7410
  }>;
6981
7411
  pageInfo: {
6982
7412
  __typename: "PageInfo";
@@ -7012,8 +7442,16 @@ export type CreateReplaySessionCollectionMutation = {
7012
7442
  __typename: "ReplayEntry";
7013
7443
  id: string;
7014
7444
  error?: string | undefined | null;
7015
- sessionId: string;
7016
- request: {
7445
+ connection: {
7446
+ __typename: "ConnectionInfo";
7447
+ host: string;
7448
+ port: number;
7449
+ isTls: boolean;
7450
+ };
7451
+ session: {
7452
+ id: string;
7453
+ };
7454
+ request?: {
7017
7455
  __typename: "Request";
7018
7456
  id: string;
7019
7457
  host: string;
@@ -7043,7 +7481,7 @@ export type CreateReplaySessionCollectionMutation = {
7043
7481
  alteration: Alteration;
7044
7482
  edited: boolean;
7045
7483
  } | undefined | null;
7046
- };
7484
+ } | undefined | null;
7047
7485
  } | undefined | null;
7048
7486
  collection: {
7049
7487
  id: string;
@@ -7053,8 +7491,16 @@ export type CreateReplaySessionCollectionMutation = {
7053
7491
  __typename: "ReplayEntry";
7054
7492
  id: string;
7055
7493
  error?: string | undefined | null;
7056
- sessionId: string;
7057
- request: {
7494
+ connection: {
7495
+ __typename: "ConnectionInfo";
7496
+ host: string;
7497
+ port: number;
7498
+ isTls: boolean;
7499
+ };
7500
+ session: {
7501
+ id: string;
7502
+ };
7503
+ request?: {
7058
7504
  __typename: "Request";
7059
7505
  id: string;
7060
7506
  host: string;
@@ -7084,7 +7530,7 @@ export type CreateReplaySessionCollectionMutation = {
7084
7530
  alteration: Alteration;
7085
7531
  edited: boolean;
7086
7532
  } | undefined | null;
7087
- };
7533
+ } | undefined | null;
7088
7534
  }>;
7089
7535
  pageInfo: {
7090
7536
  __typename: "PageInfo";
@@ -7125,8 +7571,16 @@ export type RenameReplaySessionMutation = {
7125
7571
  __typename: "ReplayEntry";
7126
7572
  id: string;
7127
7573
  error?: string | undefined | null;
7128
- sessionId: string;
7129
- request: {
7574
+ connection: {
7575
+ __typename: "ConnectionInfo";
7576
+ host: string;
7577
+ port: number;
7578
+ isTls: boolean;
7579
+ };
7580
+ session: {
7581
+ id: string;
7582
+ };
7583
+ request?: {
7130
7584
  __typename: "Request";
7131
7585
  id: string;
7132
7586
  host: string;
@@ -7156,7 +7610,7 @@ export type RenameReplaySessionMutation = {
7156
7610
  alteration: Alteration;
7157
7611
  edited: boolean;
7158
7612
  } | undefined | null;
7159
- };
7613
+ } | undefined | null;
7160
7614
  } | undefined | null;
7161
7615
  collection: {
7162
7616
  id: string;
@@ -7166,8 +7620,16 @@ export type RenameReplaySessionMutation = {
7166
7620
  __typename: "ReplayEntry";
7167
7621
  id: string;
7168
7622
  error?: string | undefined | null;
7169
- sessionId: string;
7170
- request: {
7623
+ connection: {
7624
+ __typename: "ConnectionInfo";
7625
+ host: string;
7626
+ port: number;
7627
+ isTls: boolean;
7628
+ };
7629
+ session: {
7630
+ id: string;
7631
+ };
7632
+ request?: {
7171
7633
  __typename: "Request";
7172
7634
  id: string;
7173
7635
  host: string;
@@ -7197,7 +7659,7 @@ export type RenameReplaySessionMutation = {
7197
7659
  alteration: Alteration;
7198
7660
  edited: boolean;
7199
7661
  } | undefined | null;
7200
- };
7662
+ } | undefined | null;
7201
7663
  }>;
7202
7664
  pageInfo: {
7203
7665
  __typename: "PageInfo";
@@ -7229,8 +7691,16 @@ export type SetActiveReplaySessionEntryMutation = {
7229
7691
  __typename: "ReplayEntry";
7230
7692
  id: string;
7231
7693
  error?: string | undefined | null;
7232
- sessionId: string;
7233
- request: {
7694
+ connection: {
7695
+ __typename: "ConnectionInfo";
7696
+ host: string;
7697
+ port: number;
7698
+ isTls: boolean;
7699
+ };
7700
+ session: {
7701
+ id: string;
7702
+ };
7703
+ request?: {
7234
7704
  __typename: "Request";
7235
7705
  id: string;
7236
7706
  host: string;
@@ -7260,7 +7730,7 @@ export type SetActiveReplaySessionEntryMutation = {
7260
7730
  alteration: Alteration;
7261
7731
  edited: boolean;
7262
7732
  } | undefined | null;
7263
- };
7733
+ } | undefined | null;
7264
7734
  } | undefined | null;
7265
7735
  collection: {
7266
7736
  id: string;
@@ -7270,8 +7740,16 @@ export type SetActiveReplaySessionEntryMutation = {
7270
7740
  __typename: "ReplayEntry";
7271
7741
  id: string;
7272
7742
  error?: string | undefined | null;
7273
- sessionId: string;
7274
- request: {
7743
+ connection: {
7744
+ __typename: "ConnectionInfo";
7745
+ host: string;
7746
+ port: number;
7747
+ isTls: boolean;
7748
+ };
7749
+ session: {
7750
+ id: string;
7751
+ };
7752
+ request?: {
7275
7753
  __typename: "Request";
7276
7754
  id: string;
7277
7755
  host: string;
@@ -7301,7 +7779,7 @@ export type SetActiveReplaySessionEntryMutation = {
7301
7779
  alteration: Alteration;
7302
7780
  edited: boolean;
7303
7781
  } | undefined | null;
7304
- };
7782
+ } | undefined | null;
7305
7783
  }>;
7306
7784
  pageInfo: {
7307
7785
  __typename: "PageInfo";
@@ -7348,8 +7826,16 @@ export type CreateReplaySessionMutation = {
7348
7826
  __typename: "ReplayEntry";
7349
7827
  id: string;
7350
7828
  error?: string | undefined | null;
7351
- sessionId: string;
7352
- request: {
7829
+ connection: {
7830
+ __typename: "ConnectionInfo";
7831
+ host: string;
7832
+ port: number;
7833
+ isTls: boolean;
7834
+ };
7835
+ session: {
7836
+ id: string;
7837
+ };
7838
+ request?: {
7353
7839
  __typename: "Request";
7354
7840
  id: string;
7355
7841
  host: string;
@@ -7379,7 +7865,7 @@ export type CreateReplaySessionMutation = {
7379
7865
  alteration: Alteration;
7380
7866
  edited: boolean;
7381
7867
  } | undefined | null;
7382
- };
7868
+ } | undefined | null;
7383
7869
  } | undefined | null;
7384
7870
  collection: {
7385
7871
  id: string;
@@ -7389,8 +7875,16 @@ export type CreateReplaySessionMutation = {
7389
7875
  __typename: "ReplayEntry";
7390
7876
  id: string;
7391
7877
  error?: string | undefined | null;
7392
- sessionId: string;
7393
- request: {
7878
+ connection: {
7879
+ __typename: "ConnectionInfo";
7880
+ host: string;
7881
+ port: number;
7882
+ isTls: boolean;
7883
+ };
7884
+ session: {
7885
+ id: string;
7886
+ };
7887
+ request?: {
7394
7888
  __typename: "Request";
7395
7889
  id: string;
7396
7890
  host: string;
@@ -7420,7 +7914,7 @@ export type CreateReplaySessionMutation = {
7420
7914
  alteration: Alteration;
7421
7915
  edited: boolean;
7422
7916
  } | undefined | null;
7423
- };
7917
+ } | undefined | null;
7424
7918
  }>;
7425
7919
  pageInfo: {
7426
7920
  __typename: "PageInfo";
@@ -7441,8 +7935,16 @@ export type CreateReplaySessionMutation = {
7441
7935
  __typename: "ReplayEntry";
7442
7936
  id: string;
7443
7937
  error?: string | undefined | null;
7444
- sessionId: string;
7445
- request: {
7938
+ connection: {
7939
+ __typename: "ConnectionInfo";
7940
+ host: string;
7941
+ port: number;
7942
+ isTls: boolean;
7943
+ };
7944
+ session: {
7945
+ id: string;
7946
+ };
7947
+ request?: {
7446
7948
  __typename: "Request";
7447
7949
  id: string;
7448
7950
  host: string;
@@ -7472,15 +7974,23 @@ export type CreateReplaySessionMutation = {
7472
7974
  alteration: Alteration;
7473
7975
  edited: boolean;
7474
7976
  } | undefined | null;
7475
- };
7977
+ } | undefined | null;
7476
7978
  } | undefined | null;
7477
7979
  entries: {
7478
7980
  nodes: Array<{
7479
7981
  __typename: "ReplayEntry";
7480
7982
  id: string;
7481
7983
  error?: string | undefined | null;
7482
- sessionId: string;
7483
- request: {
7984
+ connection: {
7985
+ __typename: "ConnectionInfo";
7986
+ host: string;
7987
+ port: number;
7988
+ isTls: boolean;
7989
+ };
7990
+ session: {
7991
+ id: string;
7992
+ };
7993
+ request?: {
7484
7994
  __typename: "Request";
7485
7995
  id: string;
7486
7996
  host: string;
@@ -7510,7 +8020,7 @@ export type CreateReplaySessionMutation = {
7510
8020
  alteration: Alteration;
7511
8021
  edited: boolean;
7512
8022
  } | undefined | null;
7513
- };
8023
+ } | undefined | null;
7514
8024
  }>;
7515
8025
  pageInfo: {
7516
8026
  __typename: "PageInfo";
@@ -7542,8 +8052,16 @@ export type MoveReplaySessionMutation = {
7542
8052
  __typename: "ReplayEntry";
7543
8053
  id: string;
7544
8054
  error?: string | undefined | null;
7545
- sessionId: string;
7546
- request: {
8055
+ connection: {
8056
+ __typename: "ConnectionInfo";
8057
+ host: string;
8058
+ port: number;
8059
+ isTls: boolean;
8060
+ };
8061
+ session: {
8062
+ id: string;
8063
+ };
8064
+ request?: {
7547
8065
  __typename: "Request";
7548
8066
  id: string;
7549
8067
  host: string;
@@ -7573,7 +8091,7 @@ export type MoveReplaySessionMutation = {
7573
8091
  alteration: Alteration;
7574
8092
  edited: boolean;
7575
8093
  } | undefined | null;
7576
- };
8094
+ } | undefined | null;
7577
8095
  } | undefined | null;
7578
8096
  collection: {
7579
8097
  id: string;
@@ -7583,8 +8101,16 @@ export type MoveReplaySessionMutation = {
7583
8101
  __typename: "ReplayEntry";
7584
8102
  id: string;
7585
8103
  error?: string | undefined | null;
7586
- sessionId: string;
7587
- request: {
8104
+ connection: {
8105
+ __typename: "ConnectionInfo";
8106
+ host: string;
8107
+ port: number;
8108
+ isTls: boolean;
8109
+ };
8110
+ session: {
8111
+ id: string;
8112
+ };
8113
+ request?: {
7588
8114
  __typename: "Request";
7589
8115
  id: string;
7590
8116
  host: string;
@@ -7614,7 +8140,7 @@ export type MoveReplaySessionMutation = {
7614
8140
  alteration: Alteration;
7615
8141
  edited: boolean;
7616
8142
  } | undefined | null;
7617
- };
8143
+ } | undefined | null;
7618
8144
  }>;
7619
8145
  pageInfo: {
7620
8146
  __typename: "PageInfo";
@@ -7633,21 +8159,29 @@ export type MoveReplaySessionMutation = {
7633
8159
  };
7634
8160
  };
7635
8161
  export type StartReplayTaskMutationVariables = Exact<{
7636
- replaySessionId: Scalars["ID"]["input"];
8162
+ sessionId: Scalars["ID"]["input"];
7637
8163
  input: StartReplayTaskInput;
7638
8164
  }>;
7639
8165
  export type StartReplayTaskMutation = {
7640
8166
  startReplayTask: {
7641
- task: {
8167
+ task?: {
7642
8168
  __typename: "ReplayTask";
7643
8169
  id: string;
7644
- error?: string | undefined | null;
7645
- replayEntry?: {
8170
+ createdAt: Date;
8171
+ replayEntry: {
7646
8172
  __typename: "ReplayEntry";
7647
8173
  id: string;
7648
8174
  error?: string | undefined | null;
7649
- sessionId: string;
7650
- request: {
8175
+ connection: {
8176
+ __typename: "ConnectionInfo";
8177
+ host: string;
8178
+ port: number;
8179
+ isTls: boolean;
8180
+ };
8181
+ session: {
8182
+ id: string;
8183
+ };
8184
+ request?: {
7651
8185
  __typename: "Request";
7652
8186
  id: string;
7653
8187
  host: string;
@@ -7677,17 +8211,17 @@ export type StartReplayTaskMutation = {
7677
8211
  alteration: Alteration;
7678
8212
  edited: boolean;
7679
8213
  } | undefined | null;
7680
- };
7681
- } | undefined | null;
7682
- };
7683
- };
7684
- };
7685
- export type CancelReplayTaskMutationVariables = Exact<{
7686
- id: Scalars["ID"]["input"];
7687
- }>;
7688
- export type CancelReplayTaskMutation = {
7689
- cancelReplayTask: {
7690
- cancelledId: string;
8214
+ } | undefined | null;
8215
+ };
8216
+ } | undefined | null;
8217
+ error?: {
8218
+ __typename: "OtherUserError";
8219
+ code: string;
8220
+ } | {
8221
+ __typename: "TaskInProgressUserError";
8222
+ taskId: string;
8223
+ code: string;
8224
+ } | undefined | null;
7691
8225
  };
7692
8226
  };
7693
8227
  export type UpdateRequestMetadataMutationVariables = Exact<{
@@ -8079,6 +8613,22 @@ export type MoveTamperRuleMutation = {
8079
8613
  } | undefined | null;
8080
8614
  };
8081
8615
  };
8616
+ export type CancelTaskMutationVariables = Exact<{
8617
+ id: Scalars["ID"]["input"];
8618
+ }>;
8619
+ export type CancelTaskMutation = {
8620
+ cancelTask: {
8621
+ cancelledId?: string | undefined | null;
8622
+ error?: {
8623
+ __typename: "OtherUserError";
8624
+ code: string;
8625
+ } | {
8626
+ __typename: "UnknownIdUserError";
8627
+ id: string;
8628
+ code: string;
8629
+ } | undefined | null;
8630
+ };
8631
+ };
8082
8632
  export type UpdateViewerSettingsMutationVariables = Exact<{
8083
8633
  input: UpdateViewerSettingsInput;
8084
8634
  }>;
@@ -8248,6 +8798,7 @@ export type RunActiveWorkflowMutation = {
8248
8798
  code: string;
8249
8799
  } | undefined | null;
8250
8800
  task?: {
8801
+ __typename: "WorkflowTask";
8251
8802
  id: string;
8252
8803
  createdAt: Date;
8253
8804
  workflow: {
@@ -8412,6 +8963,12 @@ export type AutomateEntryQuery = {
8412
8963
  } | {
8413
8964
  __typename: "AutomateNullPayload";
8414
8965
  quantity: number;
8966
+ } | {
8967
+ __typename: "AutomateNumberPayload";
8968
+ range: {
8969
+ start: number;
8970
+ end: number;
8971
+ };
8415
8972
  } | {
8416
8973
  __typename: "AutomateSimpleListPayload";
8417
8974
  list: Array<string>;
@@ -8452,6 +9009,7 @@ export type AutomateEntryRequestsQueryVariables = Exact<{
8452
9009
  before?: InputMaybe<Scalars["String"]["input"]>;
8453
9010
  last?: InputMaybe<Scalars["Int"]["input"]>;
8454
9011
  order?: InputMaybe<AutomateEntryRequestOrderInput>;
9012
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
8455
9013
  }>;
8456
9014
  export type AutomateEntryRequestsQuery = {
8457
9015
  automateEntry?: {
@@ -8532,6 +9090,12 @@ export type AutomateEntryRequestsQuery = {
8532
9090
  } | {
8533
9091
  __typename: "AutomateNullPayload";
8534
9092
  quantity: number;
9093
+ } | {
9094
+ __typename: "AutomateNumberPayload";
9095
+ range: {
9096
+ start: number;
9097
+ end: number;
9098
+ };
8535
9099
  } | {
8536
9100
  __typename: "AutomateSimpleListPayload";
8537
9101
  list: Array<string>;
@@ -8570,6 +9134,7 @@ export type AutomateEntryRequestsByOffsetQueryVariables = Exact<{
8570
9134
  limit?: InputMaybe<Scalars["Int"]["input"]>;
8571
9135
  offset?: InputMaybe<Scalars["Int"]["input"]>;
8572
9136
  order?: InputMaybe<AutomateEntryRequestOrderInput>;
9137
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
8573
9138
  }>;
8574
9139
  export type AutomateEntryRequestsByOffsetQuery = {
8575
9140
  automateEntry?: {
@@ -8650,6 +9215,12 @@ export type AutomateEntryRequestsByOffsetQuery = {
8650
9215
  } | {
8651
9216
  __typename: "AutomateNullPayload";
8652
9217
  quantity: number;
9218
+ } | {
9219
+ __typename: "AutomateNumberPayload";
9220
+ range: {
9221
+ start: number;
9222
+ end: number;
9223
+ };
8653
9224
  } | {
8654
9225
  __typename: "AutomateSimpleListPayload";
8655
9226
  list: Array<string>;
@@ -8685,6 +9256,7 @@ export type AutomateEntryRequestsByOffsetQuery = {
8685
9256
  };
8686
9257
  export type AutomateEntryRequestsCountQueryVariables = Exact<{
8687
9258
  id: Scalars["ID"]["input"];
9259
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
8688
9260
  }>;
8689
9261
  export type AutomateEntryRequestsCountQuery = {
8690
9262
  automateEntry?: {
@@ -8723,6 +9295,12 @@ export type AutomateEntryRequestsCountQuery = {
8723
9295
  } | {
8724
9296
  __typename: "AutomateNullPayload";
8725
9297
  quantity: number;
9298
+ } | {
9299
+ __typename: "AutomateNumberPayload";
9300
+ range: {
9301
+ start: number;
9302
+ end: number;
9303
+ };
8726
9304
  } | {
8727
9305
  __typename: "AutomateSimpleListPayload";
8728
9306
  list: Array<string>;
@@ -8820,6 +9398,12 @@ export type AutomateSessionQuery = {
8820
9398
  } | {
8821
9399
  __typename: "AutomateNullPayload";
8822
9400
  quantity: number;
9401
+ } | {
9402
+ __typename: "AutomateNumberPayload";
9403
+ range: {
9404
+ start: number;
9405
+ end: number;
9406
+ };
8823
9407
  } | {
8824
9408
  __typename: "AutomateSimpleListPayload";
8825
9409
  list: Array<string>;
@@ -9281,75 +9865,165 @@ export type FindingReportersQueryVariables = Exact<{
9281
9865
  export type FindingReportersQuery = {
9282
9866
  findingReporters: Array<string>;
9283
9867
  };
9284
- export type HostedFilesQueryVariables = Exact<{
9285
- [key: string]: never;
9286
- }>;
9287
- export type HostedFilesQuery = {
9288
- hostedFiles: Array<{
9289
- __typename: "HostedFile";
9290
- id: string;
9291
- name: string;
9292
- path: string;
9293
- size: number;
9294
- updatedAt: Date;
9295
- createdAt: Date;
9296
- }>;
9297
- };
9298
- export type InterceptRequestMessagesQueryVariables = Exact<{
9299
- first: Scalars["Int"]["input"];
9868
+ export type InterceptEntriesQueryVariables = Exact<{
9869
+ after?: InputMaybe<Scalars["String"]["input"]>;
9870
+ first?: InputMaybe<Scalars["Int"]["input"]>;
9871
+ before?: InputMaybe<Scalars["String"]["input"]>;
9872
+ last?: InputMaybe<Scalars["Int"]["input"]>;
9873
+ order?: InputMaybe<InterceptEntryOrderInput>;
9874
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
9875
+ scopeId?: InputMaybe<Scalars["ID"]["input"]>;
9300
9876
  }>;
9301
- export type InterceptRequestMessagesQuery = {
9302
- interceptMessages: {
9303
- nodes: Array<{
9304
- __typename: "InterceptRequestMessage";
9305
- id: string;
9306
- request: {
9307
- __typename: "Request";
9877
+ export type InterceptEntriesQuery = {
9878
+ interceptEntries: {
9879
+ snapshot: number;
9880
+ edges: Array<{
9881
+ __typename: "InterceptEntryEdge";
9882
+ cursor: string;
9883
+ node: {
9884
+ __typename: "InterceptEntry";
9308
9885
  id: string;
9309
- host: string;
9310
- port: number;
9311
- path: string;
9312
- query: string;
9313
- method: string;
9314
- edited: boolean;
9315
- isTls: boolean;
9316
- length: number;
9317
- alteration: Alteration;
9318
- fileExtension?: string | undefined | null;
9319
- source: Source;
9320
- createdAt: Date;
9321
- metadata: {
9322
- __typename: "RequestMetadata";
9323
- id: string;
9324
- color?: string | undefined | null;
9325
- };
9326
- response?: {
9327
- __typename: "Response";
9886
+ request: {
9887
+ __typename: "Request";
9328
9888
  id: string;
9329
- statusCode: number;
9330
- roundtripTime: number;
9889
+ host: string;
9890
+ port: number;
9891
+ path: string;
9892
+ query: string;
9893
+ method: string;
9894
+ edited: boolean;
9895
+ isTls: boolean;
9331
9896
  length: number;
9332
- createdAt: Date;
9333
9897
  alteration: Alteration;
9334
- edited: boolean;
9335
- } | undefined | null;
9336
- };
9337
- } | {
9338
- __typename: "InterceptResponseMessage";
9339
- id: string;
9340
- response: {
9341
- __typename: "Response";
9342
- id: string;
9343
- statusCode: number;
9344
- roundtripTime: number;
9345
- length: number;
9346
- createdAt: Date;
9347
- alteration: Alteration;
9348
- edited: boolean;
9898
+ fileExtension?: string | undefined | null;
9899
+ source: Source;
9900
+ createdAt: Date;
9901
+ metadata: {
9902
+ __typename: "RequestMetadata";
9903
+ id: string;
9904
+ color?: string | undefined | null;
9905
+ };
9906
+ response?: {
9907
+ __typename: "Response";
9908
+ id: string;
9909
+ statusCode: number;
9910
+ roundtripTime: number;
9911
+ length: number;
9912
+ createdAt: Date;
9913
+ alteration: Alteration;
9914
+ edited: boolean;
9915
+ } | undefined | null;
9916
+ };
9349
9917
  };
9350
- request: {
9351
- __typename: "Request";
9352
- id: string;
9918
+ }>;
9919
+ pageInfo: {
9920
+ __typename: "PageInfo";
9921
+ hasPreviousPage: boolean;
9922
+ hasNextPage: boolean;
9923
+ startCursor?: string | undefined | null;
9924
+ endCursor?: string | undefined | null;
9925
+ };
9926
+ };
9927
+ };
9928
+ export type InterceptEntriesByOffsetQueryVariables = Exact<{
9929
+ limit?: InputMaybe<Scalars["Int"]["input"]>;
9930
+ offset?: InputMaybe<Scalars["Int"]["input"]>;
9931
+ order?: InputMaybe<InterceptEntryOrderInput>;
9932
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
9933
+ scopeId?: InputMaybe<Scalars["ID"]["input"]>;
9934
+ }>;
9935
+ export type InterceptEntriesByOffsetQuery = {
9936
+ interceptEntriesByOffset: {
9937
+ snapshot: number;
9938
+ edges: Array<{
9939
+ __typename: "InterceptEntryEdge";
9940
+ cursor: string;
9941
+ node: {
9942
+ __typename: "InterceptEntry";
9943
+ id: string;
9944
+ request: {
9945
+ __typename: "Request";
9946
+ id: string;
9947
+ host: string;
9948
+ port: number;
9949
+ path: string;
9950
+ query: string;
9951
+ method: string;
9952
+ edited: boolean;
9953
+ isTls: boolean;
9954
+ length: number;
9955
+ alteration: Alteration;
9956
+ fileExtension?: string | undefined | null;
9957
+ source: Source;
9958
+ createdAt: Date;
9959
+ metadata: {
9960
+ __typename: "RequestMetadata";
9961
+ id: string;
9962
+ color?: string | undefined | null;
9963
+ };
9964
+ response?: {
9965
+ __typename: "Response";
9966
+ id: string;
9967
+ statusCode: number;
9968
+ roundtripTime: number;
9969
+ length: number;
9970
+ createdAt: Date;
9971
+ alteration: Alteration;
9972
+ edited: boolean;
9973
+ } | undefined | null;
9974
+ };
9975
+ };
9976
+ }>;
9977
+ pageInfo: {
9978
+ __typename: "PageInfo";
9979
+ hasPreviousPage: boolean;
9980
+ hasNextPage: boolean;
9981
+ startCursor?: string | undefined | null;
9982
+ endCursor?: string | undefined | null;
9983
+ };
9984
+ };
9985
+ };
9986
+ export type InterceptEntryQueryVariables = Exact<{
9987
+ id: Scalars["ID"]["input"];
9988
+ }>;
9989
+ export type InterceptEntryQuery = {
9990
+ interceptEntry?: {
9991
+ __typename: "InterceptEntry";
9992
+ id: string;
9993
+ request: {
9994
+ __typename: "Request";
9995
+ id: string;
9996
+ host: string;
9997
+ port: number;
9998
+ path: string;
9999
+ query: string;
10000
+ method: string;
10001
+ edited: boolean;
10002
+ isTls: boolean;
10003
+ length: number;
10004
+ alteration: Alteration;
10005
+ fileExtension?: string | undefined | null;
10006
+ source: Source;
10007
+ createdAt: Date;
10008
+ raw: string;
10009
+ metadata: {
10010
+ __typename: "RequestMetadata";
10011
+ id: string;
10012
+ color?: string | undefined | null;
10013
+ };
10014
+ response?: {
10015
+ __typename: "Response";
10016
+ id: string;
10017
+ statusCode: number;
10018
+ roundtripTime: number;
10019
+ length: number;
10020
+ createdAt: Date;
10021
+ alteration: Alteration;
10022
+ edited: boolean;
10023
+ } | undefined | null;
10024
+ edits: Array<{
10025
+ __typename: "Request";
10026
+ id: string;
9353
10027
  host: string;
9354
10028
  port: number;
9355
10029
  path: string;
@@ -9377,14 +10051,41 @@ export type InterceptRequestMessagesQuery = {
9377
10051
  alteration: Alteration;
9378
10052
  edited: boolean;
9379
10053
  } | undefined | null;
9380
- };
9381
- }>;
10054
+ }>;
10055
+ };
10056
+ } | undefined | null;
10057
+ };
10058
+ export type InterceptEntryCountQueryVariables = Exact<{
10059
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
10060
+ scopeId?: InputMaybe<Scalars["ID"]["input"]>;
10061
+ }>;
10062
+ export type InterceptEntryCountQuery = {
10063
+ interceptEntries: {
10064
+ count: {
10065
+ __typename: "Count";
10066
+ value: number;
10067
+ snapshot: number;
10068
+ };
9382
10069
  };
9383
10070
  };
9384
- export type InterceptResponseMessagesQueryVariables = Exact<{
10071
+ export type HostedFilesQueryVariables = Exact<{
10072
+ [key: string]: never;
10073
+ }>;
10074
+ export type HostedFilesQuery = {
10075
+ hostedFiles: Array<{
10076
+ __typename: "HostedFile";
10077
+ id: string;
10078
+ name: string;
10079
+ path: string;
10080
+ size: number;
10081
+ updatedAt: Date;
10082
+ createdAt: Date;
10083
+ }>;
10084
+ };
10085
+ export type InterceptRequestMessagesQueryVariables = Exact<{
9385
10086
  first: Scalars["Int"]["input"];
9386
10087
  }>;
9387
- export type InterceptResponseMessagesQuery = {
10088
+ export type InterceptRequestMessagesQuery = {
9388
10089
  interceptMessages: {
9389
10090
  nodes: Array<{
9390
10091
  __typename: "InterceptRequestMessage";
@@ -9467,175 +10168,49 @@ export type InterceptResponseMessagesQuery = {
9467
10168
  }>;
9468
10169
  };
9469
10170
  };
9470
- export type InterceptOptionsQueryVariables = Exact<{
9471
- [key: string]: never;
9472
- }>;
9473
- export type InterceptOptionsQuery = {
9474
- interceptOptions: {
9475
- request: {
9476
- enabled: boolean;
9477
- };
9478
- response: {
9479
- enabled: boolean;
9480
- };
9481
- scope?: {
9482
- scopeId: string;
9483
- } | undefined | null;
9484
- };
9485
- };
9486
- export type InterceptStatusQueryVariables = Exact<{
9487
- [key: string]: never;
9488
- }>;
9489
- export type InterceptStatusQuery = {
9490
- interceptStatus: InterceptStatus;
9491
- };
9492
- export type InterceptEntriesQueryVariables = Exact<{
9493
- after?: InputMaybe<Scalars["String"]["input"]>;
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"]>;
10171
+ export type InterceptResponseMessagesQueryVariables = Exact<{
10172
+ first: Scalars["Int"]["input"];
9500
10173
  }>;
9501
- export type InterceptEntriesQuery = {
9502
- interceptEntries: {
9503
- snapshot: number;
9504
- edges: Array<{
9505
- __typename: "InterceptEntryEdge";
9506
- cursor: string;
9507
- node: {
9508
- __typename: "InterceptEntry";
10174
+ export type InterceptResponseMessagesQuery = {
10175
+ interceptMessages: {
10176
+ nodes: Array<{
10177
+ __typename: "InterceptRequestMessage";
10178
+ id: string;
10179
+ request: {
10180
+ __typename: "Request";
9509
10181
  id: string;
9510
- request: {
9511
- __typename: "Request";
10182
+ host: string;
10183
+ port: number;
10184
+ path: string;
10185
+ query: string;
10186
+ method: string;
10187
+ edited: boolean;
10188
+ isTls: boolean;
10189
+ length: number;
10190
+ alteration: Alteration;
10191
+ fileExtension?: string | undefined | null;
10192
+ source: Source;
10193
+ createdAt: Date;
10194
+ metadata: {
10195
+ __typename: "RequestMetadata";
9512
10196
  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;
10197
+ color?: string | undefined | null;
9540
10198
  };
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";
10199
+ response?: {
10200
+ __typename: "Response";
9570
10201
  id: string;
9571
- host: string;
9572
- port: number;
9573
- path: string;
9574
- query: string;
9575
- method: string;
9576
- edited: boolean;
9577
- isTls: boolean;
10202
+ statusCode: number;
10203
+ roundtripTime: number;
9578
10204
  length: number;
9579
- alteration: Alteration;
9580
- fileExtension?: string | undefined | null;
9581
- source: Source;
9582
10205
  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
- };
10206
+ alteration: Alteration;
10207
+ edited: boolean;
10208
+ } | undefined | null;
9599
10209
  };
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";
10210
+ } | {
10211
+ __typename: "InterceptResponseMessage";
9619
10212
  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?: {
10213
+ response: {
9639
10214
  __typename: "Response";
9640
10215
  id: string;
9641
10216
  statusCode: number;
@@ -9644,8 +10219,8 @@ export type InterceptEntryQuery = {
9644
10219
  createdAt: Date;
9645
10220
  alteration: Alteration;
9646
10221
  edited: boolean;
9647
- } | undefined | null;
9648
- edits: Array<{
10222
+ };
10223
+ request: {
9649
10224
  __typename: "Request";
9650
10225
  id: string;
9651
10226
  host: string;
@@ -9675,23 +10250,32 @@ export type InterceptEntryQuery = {
9675
10250
  alteration: Alteration;
9676
10251
  edited: boolean;
9677
10252
  } | undefined | null;
9678
- }>;
9679
- };
9680
- } | undefined | null;
10253
+ };
10254
+ }>;
10255
+ };
9681
10256
  };
9682
- export type InterceptEntryCountQueryVariables = Exact<{
9683
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
9684
- scopeId?: InputMaybe<Scalars["ID"]["input"]>;
10257
+ export type InterceptOptionsQueryVariables = Exact<{
10258
+ [key: string]: never;
9685
10259
  }>;
9686
- export type InterceptEntryCountQuery = {
9687
- interceptEntries: {
9688
- count: {
9689
- __typename: "Count";
9690
- value: number;
9691
- snapshot: number;
10260
+ export type InterceptOptionsQuery = {
10261
+ interceptOptions: {
10262
+ request: {
10263
+ enabled: boolean;
10264
+ };
10265
+ response: {
10266
+ enabled: boolean;
9692
10267
  };
10268
+ scope?: {
10269
+ scopeId: string;
10270
+ } | undefined | null;
9693
10271
  };
9694
10272
  };
10273
+ export type InterceptStatusQueryVariables = Exact<{
10274
+ [key: string]: never;
10275
+ }>;
10276
+ export type InterceptStatusQuery = {
10277
+ interceptStatus: InterceptStatus;
10278
+ };
9695
10279
  export type UpstreamProxiesQueryVariables = Exact<{
9696
10280
  [key: string]: never;
9697
10281
  }>;
@@ -9725,14 +10309,32 @@ export type PluginPackagesQuery = {
9725
10309
  installedAt: Date;
9726
10310
  manifestId: string;
9727
10311
  plugins: Array<{
10312
+ __typename: "PluginBackend";
10313
+ runtime: PluginRuntime;
10314
+ id: string;
10315
+ name?: string | undefined | null;
10316
+ enabled: boolean;
10317
+ manifestId: string;
10318
+ state: {
10319
+ error?: string | undefined | null;
10320
+ running: boolean;
10321
+ };
10322
+ package: {
10323
+ id: string;
10324
+ };
10325
+ } | {
9728
10326
  __typename: "PluginFrontend";
9729
- data?: JSONValue | undefined | null;
9730
10327
  entrypoint?: string | undefined | null;
9731
10328
  style?: string | undefined | null;
10329
+ data?: JSONValue | undefined | null;
9732
10330
  id: string;
9733
10331
  name?: string | undefined | null;
9734
10332
  enabled: boolean;
9735
10333
  manifestId: string;
10334
+ backend?: {
10335
+ __typename: "PluginBackend";
10336
+ id: string;
10337
+ } | undefined | null;
9736
10338
  package: {
9737
10339
  id: string;
9738
10340
  };
@@ -9788,10 +10390,49 @@ export type ReplayEntryQueryVariables = Exact<{
9788
10390
  export type ReplayEntryQuery = {
9789
10391
  replayEntry?: {
9790
10392
  __typename: "ReplayEntry";
10393
+ raw: string;
9791
10394
  id: string;
9792
10395
  error?: string | undefined | null;
9793
- sessionId: string;
9794
- request: {
10396
+ settings: {
10397
+ placeholders: Array<{
10398
+ __typename: "ReplayPlaceholder";
10399
+ inputRange: {
10400
+ start: number;
10401
+ end: number;
10402
+ };
10403
+ outputRange: {
10404
+ start: number;
10405
+ end: number;
10406
+ };
10407
+ preprocessors: Array<{
10408
+ __typename: "ReplayPreprocessor";
10409
+ options: {
10410
+ __typename: "ReplayPrefixPreprocessor";
10411
+ value: string;
10412
+ } | {
10413
+ __typename: "ReplaySuffixPreprocessor";
10414
+ value: string;
10415
+ } | {
10416
+ __typename: "ReplayUrlEncodePreprocessor";
10417
+ charset?: string | undefined | null;
10418
+ nonAscii: boolean;
10419
+ } | {
10420
+ __typename: "ReplayWorkflowPreprocessor";
10421
+ id: string;
10422
+ };
10423
+ }>;
10424
+ }>;
10425
+ };
10426
+ connection: {
10427
+ __typename: "ConnectionInfo";
10428
+ host: string;
10429
+ port: number;
10430
+ isTls: boolean;
10431
+ };
10432
+ session: {
10433
+ id: string;
10434
+ };
10435
+ request?: {
9795
10436
  __typename: "Request";
9796
10437
  id: string;
9797
10438
  host: string;
@@ -9821,7 +10462,7 @@ export type ReplayEntryQuery = {
9821
10462
  alteration: Alteration;
9822
10463
  edited: boolean;
9823
10464
  } | undefined | null;
9824
- };
10465
+ } | undefined | null;
9825
10466
  } | undefined | null;
9826
10467
  };
9827
10468
  export type ActiveReplayEntryBySessionQueryVariables = Exact<{
@@ -9836,8 +10477,16 @@ export type ActiveReplayEntryBySessionQuery = {
9836
10477
  __typename: "ReplayEntry";
9837
10478
  id: string;
9838
10479
  error?: string | undefined | null;
9839
- sessionId: string;
9840
- request: {
10480
+ connection: {
10481
+ __typename: "ConnectionInfo";
10482
+ host: string;
10483
+ port: number;
10484
+ isTls: boolean;
10485
+ };
10486
+ session: {
10487
+ id: string;
10488
+ };
10489
+ request?: {
9841
10490
  __typename: "Request";
9842
10491
  id: string;
9843
10492
  host: string;
@@ -9867,7 +10516,7 @@ export type ActiveReplayEntryBySessionQuery = {
9867
10516
  alteration: Alteration;
9868
10517
  edited: boolean;
9869
10518
  } | undefined | null;
9870
- };
10519
+ } | undefined | null;
9871
10520
  } | undefined | null;
9872
10521
  collection: {
9873
10522
  id: string;
@@ -9877,8 +10526,16 @@ export type ActiveReplayEntryBySessionQuery = {
9877
10526
  __typename: "ReplayEntry";
9878
10527
  id: string;
9879
10528
  error?: string | undefined | null;
9880
- sessionId: string;
9881
- request: {
10529
+ connection: {
10530
+ __typename: "ConnectionInfo";
10531
+ host: string;
10532
+ port: number;
10533
+ isTls: boolean;
10534
+ };
10535
+ session: {
10536
+ id: string;
10537
+ };
10538
+ request?: {
9882
10539
  __typename: "Request";
9883
10540
  id: string;
9884
10541
  host: string;
@@ -9908,7 +10565,7 @@ export type ActiveReplayEntryBySessionQuery = {
9908
10565
  alteration: Alteration;
9909
10566
  edited: boolean;
9910
10567
  } | undefined | null;
9911
- };
10568
+ } | undefined | null;
9912
10569
  }>;
9913
10570
  pageInfo: {
9914
10571
  __typename: "PageInfo";
@@ -9940,8 +10597,16 @@ export type ReplayEntriesBySessionQuery = {
9940
10597
  __typename: "ReplayEntry";
9941
10598
  id: string;
9942
10599
  error?: string | undefined | null;
9943
- sessionId: string;
9944
- request: {
10600
+ connection: {
10601
+ __typename: "ConnectionInfo";
10602
+ host: string;
10603
+ port: number;
10604
+ isTls: boolean;
10605
+ };
10606
+ session: {
10607
+ id: string;
10608
+ };
10609
+ request?: {
9945
10610
  __typename: "Request";
9946
10611
  id: string;
9947
10612
  host: string;
@@ -9971,7 +10636,7 @@ export type ReplayEntriesBySessionQuery = {
9971
10636
  alteration: Alteration;
9972
10637
  edited: boolean;
9973
10638
  } | undefined | null;
9974
- };
10639
+ } | undefined | null;
9975
10640
  };
9976
10641
  }>;
9977
10642
  pageInfo: {
@@ -9990,8 +10655,16 @@ export type ReplayEntriesBySessionQuery = {
9990
10655
  __typename: "ReplayEntry";
9991
10656
  id: string;
9992
10657
  error?: string | undefined | null;
9993
- sessionId: string;
9994
- request: {
10658
+ connection: {
10659
+ __typename: "ConnectionInfo";
10660
+ host: string;
10661
+ port: number;
10662
+ isTls: boolean;
10663
+ };
10664
+ session: {
10665
+ id: string;
10666
+ };
10667
+ request?: {
9995
10668
  __typename: "Request";
9996
10669
  id: string;
9997
10670
  host: string;
@@ -10021,15 +10694,23 @@ export type ReplayEntriesBySessionQuery = {
10021
10694
  alteration: Alteration;
10022
10695
  edited: boolean;
10023
10696
  } | undefined | null;
10024
- };
10697
+ } | undefined | null;
10025
10698
  }>;
10026
10699
  };
10027
10700
  activeEntry?: {
10028
10701
  __typename: "ReplayEntry";
10029
10702
  id: string;
10030
10703
  error?: string | undefined | null;
10031
- sessionId: string;
10032
- request: {
10704
+ connection: {
10705
+ __typename: "ConnectionInfo";
10706
+ host: string;
10707
+ port: number;
10708
+ isTls: boolean;
10709
+ };
10710
+ session: {
10711
+ id: string;
10712
+ };
10713
+ request?: {
10033
10714
  __typename: "Request";
10034
10715
  id: string;
10035
10716
  host: string;
@@ -10059,7 +10740,7 @@ export type ReplayEntriesBySessionQuery = {
10059
10740
  alteration: Alteration;
10060
10741
  edited: boolean;
10061
10742
  } | undefined | null;
10062
- };
10743
+ } | undefined | null;
10063
10744
  } | undefined | null;
10064
10745
  collection: {
10065
10746
  id: string;
@@ -10075,8 +10756,16 @@ export type ReplaySessionEntriesQuery = {
10075
10756
  __typename: "ReplayEntry";
10076
10757
  id: string;
10077
10758
  error?: string | undefined | null;
10078
- sessionId: string;
10079
- request: {
10759
+ connection: {
10760
+ __typename: "ConnectionInfo";
10761
+ host: string;
10762
+ port: number;
10763
+ isTls: boolean;
10764
+ };
10765
+ session: {
10766
+ id: string;
10767
+ };
10768
+ request?: {
10080
10769
  __typename: "Request";
10081
10770
  id: string;
10082
10771
  host: string;
@@ -10106,7 +10795,7 @@ export type ReplaySessionEntriesQuery = {
10106
10795
  alteration: Alteration;
10107
10796
  edited: boolean;
10108
10797
  } | undefined | null;
10109
- };
10798
+ } | undefined | null;
10110
10799
  } | undefined | null;
10111
10800
  entries: {
10112
10801
  edges: Array<{
@@ -10115,8 +10804,16 @@ export type ReplaySessionEntriesQuery = {
10115
10804
  __typename: "ReplayEntry";
10116
10805
  id: string;
10117
10806
  error?: string | undefined | null;
10118
- sessionId: string;
10119
- request: {
10807
+ connection: {
10808
+ __typename: "ConnectionInfo";
10809
+ host: string;
10810
+ port: number;
10811
+ isTls: boolean;
10812
+ };
10813
+ session: {
10814
+ id: string;
10815
+ };
10816
+ request?: {
10120
10817
  __typename: "Request";
10121
10818
  id: string;
10122
10819
  host: string;
@@ -10146,7 +10843,7 @@ export type ReplaySessionEntriesQuery = {
10146
10843
  alteration: Alteration;
10147
10844
  edited: boolean;
10148
10845
  } | undefined | null;
10149
- };
10846
+ } | undefined | null;
10150
10847
  };
10151
10848
  }>;
10152
10849
  pageInfo: {
@@ -10182,8 +10879,16 @@ export type ReplaySessionCollectionsQuery = {
10182
10879
  __typename: "ReplayEntry";
10183
10880
  id: string;
10184
10881
  error?: string | undefined | null;
10185
- sessionId: string;
10186
- request: {
10882
+ connection: {
10883
+ __typename: "ConnectionInfo";
10884
+ host: string;
10885
+ port: number;
10886
+ isTls: boolean;
10887
+ };
10888
+ session: {
10889
+ id: string;
10890
+ };
10891
+ request?: {
10187
10892
  __typename: "Request";
10188
10893
  id: string;
10189
10894
  host: string;
@@ -10213,7 +10918,7 @@ export type ReplaySessionCollectionsQuery = {
10213
10918
  alteration: Alteration;
10214
10919
  edited: boolean;
10215
10920
  } | undefined | null;
10216
- };
10921
+ } | undefined | null;
10217
10922
  } | undefined | null;
10218
10923
  collection: {
10219
10924
  id: string;
@@ -10223,8 +10928,16 @@ export type ReplaySessionCollectionsQuery = {
10223
10928
  __typename: "ReplayEntry";
10224
10929
  id: string;
10225
10930
  error?: string | undefined | null;
10226
- sessionId: string;
10227
- request: {
10931
+ connection: {
10932
+ __typename: "ConnectionInfo";
10933
+ host: string;
10934
+ port: number;
10935
+ isTls: boolean;
10936
+ };
10937
+ session: {
10938
+ id: string;
10939
+ };
10940
+ request?: {
10228
10941
  __typename: "Request";
10229
10942
  id: string;
10230
10943
  host: string;
@@ -10254,7 +10967,7 @@ export type ReplaySessionCollectionsQuery = {
10254
10967
  alteration: Alteration;
10255
10968
  edited: boolean;
10256
10969
  } | undefined | null;
10257
- };
10970
+ } | undefined | null;
10258
10971
  }>;
10259
10972
  pageInfo: {
10260
10973
  __typename: "PageInfo";
@@ -10281,7 +10994,7 @@ export type RequestsQueryVariables = Exact<{
10281
10994
  last?: InputMaybe<Scalars["Int"]["input"]>;
10282
10995
  order?: InputMaybe<RequestResponseOrderInput>;
10283
10996
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
10284
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
10997
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
10285
10998
  }>;
10286
10999
  export type RequestsQuery = {
10287
11000
  requests: {
@@ -10332,7 +11045,7 @@ export type RequestsQuery = {
10332
11045
  };
10333
11046
  export type RequestCountQueryVariables = Exact<{
10334
11047
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
10335
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
11048
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
10336
11049
  }>;
10337
11050
  export type RequestCountQuery = {
10338
11051
  requests: {
@@ -10417,7 +11130,7 @@ export type RequestsByOffsetQueryVariables = Exact<{
10417
11130
  offset?: InputMaybe<Scalars["Int"]["input"]>;
10418
11131
  order?: InputMaybe<RequestResponseOrderInput>;
10419
11132
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
10420
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
11133
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
10421
11134
  }>;
10422
11135
  export type RequestsByOffsetQuery = {
10423
11136
  requestsByOffset: {
@@ -10909,6 +11622,73 @@ export type TamperRuleCollectionsQuery = {
10909
11622
  };
10910
11623
  };
10911
11624
  };
11625
+ export type GetTasksQueryVariables = Exact<{
11626
+ [key: string]: never;
11627
+ }>;
11628
+ export type GetTasksQuery = {
11629
+ tasks: Array<{
11630
+ __typename: "ReplayTask";
11631
+ id: string;
11632
+ createdAt: Date;
11633
+ replayEntry: {
11634
+ __typename: "ReplayEntry";
11635
+ id: string;
11636
+ error?: string | undefined | null;
11637
+ connection: {
11638
+ __typename: "ConnectionInfo";
11639
+ host: string;
11640
+ port: number;
11641
+ isTls: boolean;
11642
+ };
11643
+ session: {
11644
+ id: string;
11645
+ };
11646
+ request?: {
11647
+ __typename: "Request";
11648
+ id: string;
11649
+ host: string;
11650
+ port: number;
11651
+ path: string;
11652
+ query: string;
11653
+ method: string;
11654
+ edited: boolean;
11655
+ isTls: boolean;
11656
+ length: number;
11657
+ alteration: Alteration;
11658
+ fileExtension?: string | undefined | null;
11659
+ source: Source;
11660
+ createdAt: Date;
11661
+ metadata: {
11662
+ __typename: "RequestMetadata";
11663
+ id: string;
11664
+ color?: string | undefined | null;
11665
+ };
11666
+ response?: {
11667
+ __typename: "Response";
11668
+ id: string;
11669
+ statusCode: number;
11670
+ roundtripTime: number;
11671
+ length: number;
11672
+ createdAt: Date;
11673
+ alteration: Alteration;
11674
+ edited: boolean;
11675
+ } | undefined | null;
11676
+ } | undefined | null;
11677
+ };
11678
+ } | {
11679
+ __typename: "WorkflowTask";
11680
+ id: string;
11681
+ createdAt: Date;
11682
+ workflow: {
11683
+ __typename: "Workflow";
11684
+ id: string;
11685
+ kind: WorkflowKind;
11686
+ name: string;
11687
+ enabled: boolean;
11688
+ global: boolean;
11689
+ };
11690
+ }>;
11691
+ };
10912
11692
  export type UserProfileQueryVariables = Exact<{
10913
11693
  [key: string]: never;
10914
11694
  }>;
@@ -11121,6 +11901,7 @@ export type CreatedAuthenticationTokenSubscription = {
11121
11901
  };
11122
11902
  export type CreatedAutomateEntryRequestSubscriptionVariables = Exact<{
11123
11903
  order?: InputMaybe<AutomateEntryRequestOrderInput>;
11904
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
11124
11905
  }>;
11125
11906
  export type CreatedAutomateEntryRequestSubscription = {
11126
11907
  createdAutomateEntryRequest: {
@@ -11666,116 +12447,9 @@ export type DeletedFindingsSubscription = {
11666
12447
  snapshot: number;
11667
12448
  };
11668
12449
  };
11669
- export type CreatedInterceptMessageSubscriptionVariables = Exact<{
11670
- [key: string]: never;
11671
- }>;
11672
- export type CreatedInterceptMessageSubscription = {
11673
- createdInterceptMessage: {
11674
- snapshot: number;
11675
- messageEdge: {
11676
- node: {
11677
- __typename: "InterceptRequestMessage";
11678
- id: string;
11679
- request: {
11680
- __typename: "Request";
11681
- id: string;
11682
- host: string;
11683
- port: number;
11684
- path: string;
11685
- query: string;
11686
- method: string;
11687
- edited: boolean;
11688
- isTls: boolean;
11689
- length: number;
11690
- alteration: Alteration;
11691
- fileExtension?: string | undefined | null;
11692
- source: Source;
11693
- createdAt: Date;
11694
- metadata: {
11695
- __typename: "RequestMetadata";
11696
- id: string;
11697
- color?: string | undefined | null;
11698
- };
11699
- response?: {
11700
- __typename: "Response";
11701
- id: string;
11702
- statusCode: number;
11703
- roundtripTime: number;
11704
- length: number;
11705
- createdAt: Date;
11706
- alteration: Alteration;
11707
- edited: boolean;
11708
- } | undefined | null;
11709
- };
11710
- } | {
11711
- __typename: "InterceptResponseMessage";
11712
- 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
- request: {
11724
- __typename: "Request";
11725
- id: string;
11726
- host: string;
11727
- port: number;
11728
- path: string;
11729
- query: string;
11730
- method: string;
11731
- edited: boolean;
11732
- isTls: boolean;
11733
- length: number;
11734
- alteration: Alteration;
11735
- fileExtension?: string | undefined | null;
11736
- source: Source;
11737
- createdAt: Date;
11738
- metadata: {
11739
- __typename: "RequestMetadata";
11740
- id: string;
11741
- color?: string | undefined | null;
11742
- };
11743
- response?: {
11744
- __typename: "Response";
11745
- id: string;
11746
- statusCode: number;
11747
- roundtripTime: number;
11748
- length: number;
11749
- createdAt: Date;
11750
- alteration: Alteration;
11751
- edited: boolean;
11752
- } | undefined | null;
11753
- };
11754
- };
11755
- };
11756
- };
11757
- };
11758
- export type UpdatedInterceptOptionsSubscriptionVariables = Exact<{
11759
- [key: string]: never;
11760
- }>;
11761
- export type UpdatedInterceptOptionsSubscription = {
11762
- updatedInterceptOptions: {
11763
- options: {
11764
- request: {
11765
- enabled: boolean;
11766
- };
11767
- response: {
11768
- enabled: boolean;
11769
- };
11770
- scope?: {
11771
- scopeId: string;
11772
- } | undefined | null;
11773
- };
11774
- };
11775
- };
11776
12450
  export type CreatedInterceptEntrySubscriptionVariables = Exact<{
11777
12451
  order?: InputMaybe<InterceptEntryOrderInput>;
11778
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
12452
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
11779
12453
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
11780
12454
  }>;
11781
12455
  export type CreatedInterceptEntrySubscription = {
@@ -11824,7 +12498,7 @@ export type CreatedInterceptEntrySubscription = {
11824
12498
  };
11825
12499
  export type UpdatedInterceptEntrySubscriptionVariables = Exact<{
11826
12500
  order?: InputMaybe<InterceptEntryOrderInput>;
11827
- filter?: InputMaybe<FilterClauseInterceptEntryInput>;
12501
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
11828
12502
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
11829
12503
  }>;
11830
12504
  export type UpdatedInterceptEntrySubscription = {
@@ -11905,24 +12579,131 @@ export type UpdatedDeleteInterceptEntriesTaskSubscription = {
11905
12579
  };
11906
12580
  };
11907
12581
  };
11908
- export type FinishedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
12582
+ export type FinishedDeleteInterceptEntriesTaskSubscriptionVariables = Exact<{
12583
+ [key: string]: never;
12584
+ }>;
12585
+ export type FinishedDeleteInterceptEntriesTaskSubscription = {
12586
+ finishedDeleteInterceptEntriesTask: {
12587
+ task: {
12588
+ __typename: "DeleteInterceptEntriesTask";
12589
+ id: string;
12590
+ deletedEntryIds: Array<string>;
12591
+ };
12592
+ error?: {
12593
+ __typename: "InternalUserError";
12594
+ message: string;
12595
+ code: string;
12596
+ } | {
12597
+ __typename: "OtherUserError";
12598
+ code: string;
12599
+ } | undefined | null;
12600
+ };
12601
+ };
12602
+ export type CreatedInterceptMessageSubscriptionVariables = Exact<{
12603
+ [key: string]: never;
12604
+ }>;
12605
+ export type CreatedInterceptMessageSubscription = {
12606
+ createdInterceptMessage: {
12607
+ snapshot: number;
12608
+ messageEdge: {
12609
+ node: {
12610
+ __typename: "InterceptRequestMessage";
12611
+ id: string;
12612
+ request: {
12613
+ __typename: "Request";
12614
+ id: string;
12615
+ host: string;
12616
+ port: number;
12617
+ path: string;
12618
+ query: string;
12619
+ method: string;
12620
+ edited: boolean;
12621
+ isTls: boolean;
12622
+ length: number;
12623
+ alteration: Alteration;
12624
+ fileExtension?: string | undefined | null;
12625
+ source: Source;
12626
+ createdAt: Date;
12627
+ metadata: {
12628
+ __typename: "RequestMetadata";
12629
+ id: string;
12630
+ color?: string | undefined | null;
12631
+ };
12632
+ response?: {
12633
+ __typename: "Response";
12634
+ id: string;
12635
+ statusCode: number;
12636
+ roundtripTime: number;
12637
+ length: number;
12638
+ createdAt: Date;
12639
+ alteration: Alteration;
12640
+ edited: boolean;
12641
+ } | undefined | null;
12642
+ };
12643
+ } | {
12644
+ __typename: "InterceptResponseMessage";
12645
+ id: string;
12646
+ response: {
12647
+ __typename: "Response";
12648
+ id: string;
12649
+ statusCode: number;
12650
+ roundtripTime: number;
12651
+ length: number;
12652
+ createdAt: Date;
12653
+ alteration: Alteration;
12654
+ edited: boolean;
12655
+ };
12656
+ request: {
12657
+ __typename: "Request";
12658
+ id: string;
12659
+ host: string;
12660
+ port: number;
12661
+ path: string;
12662
+ query: string;
12663
+ method: string;
12664
+ edited: boolean;
12665
+ isTls: boolean;
12666
+ length: number;
12667
+ alteration: Alteration;
12668
+ fileExtension?: string | undefined | null;
12669
+ source: Source;
12670
+ createdAt: Date;
12671
+ metadata: {
12672
+ __typename: "RequestMetadata";
12673
+ id: string;
12674
+ color?: string | undefined | null;
12675
+ };
12676
+ response?: {
12677
+ __typename: "Response";
12678
+ id: string;
12679
+ statusCode: number;
12680
+ roundtripTime: number;
12681
+ length: number;
12682
+ createdAt: Date;
12683
+ alteration: Alteration;
12684
+ edited: boolean;
12685
+ } | undefined | null;
12686
+ };
12687
+ };
12688
+ };
12689
+ };
12690
+ };
12691
+ export type UpdatedInterceptOptionsSubscriptionVariables = Exact<{
11909
12692
  [key: string]: never;
11910
12693
  }>;
11911
- export type FinishedDeleteInterceptEntriesTaskSubscription = {
11912
- finishedDeleteInterceptEntriesTask: {
11913
- task: {
11914
- __typename: "DeleteInterceptEntriesTask";
11915
- id: string;
11916
- deletedEntryIds: Array<string>;
12694
+ export type UpdatedInterceptOptionsSubscription = {
12695
+ updatedInterceptOptions: {
12696
+ options: {
12697
+ request: {
12698
+ enabled: boolean;
12699
+ };
12700
+ response: {
12701
+ enabled: boolean;
12702
+ };
12703
+ scope?: {
12704
+ scopeId: string;
12705
+ } | undefined | null;
11917
12706
  };
11918
- error?: {
11919
- __typename: "InternalUserError";
11920
- message: string;
11921
- code: string;
11922
- } | {
11923
- __typename: "OtherUserError";
11924
- code: string;
11925
- } | undefined | null;
11926
12707
  };
11927
12708
  };
11928
12709
  export type CreatedPluginPackageSubscriptionVariables = Exact<{
@@ -11938,14 +12719,32 @@ export type CreatedPluginPackageSubscription = {
11938
12719
  installedAt: Date;
11939
12720
  manifestId: string;
11940
12721
  plugins: Array<{
12722
+ __typename: "PluginBackend";
12723
+ runtime: PluginRuntime;
12724
+ id: string;
12725
+ name?: string | undefined | null;
12726
+ enabled: boolean;
12727
+ manifestId: string;
12728
+ state: {
12729
+ error?: string | undefined | null;
12730
+ running: boolean;
12731
+ };
12732
+ package: {
12733
+ id: string;
12734
+ };
12735
+ } | {
11941
12736
  __typename: "PluginFrontend";
11942
- data?: JSONValue | undefined | null;
11943
12737
  entrypoint?: string | undefined | null;
11944
12738
  style?: string | undefined | null;
12739
+ data?: JSONValue | undefined | null;
11945
12740
  id: string;
11946
12741
  name?: string | undefined | null;
11947
12742
  enabled: boolean;
11948
12743
  manifestId: string;
12744
+ backend?: {
12745
+ __typename: "PluginBackend";
12746
+ id: string;
12747
+ } | undefined | null;
11949
12748
  package: {
11950
12749
  id: string;
11951
12750
  };
@@ -11972,14 +12771,32 @@ export type UpdatedPluginSubscriptionVariables = Exact<{
11972
12771
  export type UpdatedPluginSubscription = {
11973
12772
  updatedPlugin: {
11974
12773
  plugin: {
12774
+ __typename: "PluginBackend";
12775
+ runtime: PluginRuntime;
12776
+ id: string;
12777
+ name?: string | undefined | null;
12778
+ enabled: boolean;
12779
+ manifestId: string;
12780
+ state: {
12781
+ error?: string | undefined | null;
12782
+ running: boolean;
12783
+ };
12784
+ package: {
12785
+ id: string;
12786
+ };
12787
+ } | {
11975
12788
  __typename: "PluginFrontend";
11976
- data?: JSONValue | undefined | null;
11977
12789
  entrypoint?: string | undefined | null;
11978
12790
  style?: string | undefined | null;
12791
+ data?: JSONValue | undefined | null;
11979
12792
  id: string;
11980
12793
  name?: string | undefined | null;
11981
12794
  enabled: boolean;
11982
12795
  manifestId: string;
12796
+ backend?: {
12797
+ __typename: "PluginBackend";
12798
+ id: string;
12799
+ } | undefined | null;
11983
12800
  package: {
11984
12801
  id: string;
11985
12802
  };
@@ -12051,8 +12868,16 @@ export type UpdatedReplaySessionSubscription = {
12051
12868
  __typename: "ReplayEntry";
12052
12869
  id: string;
12053
12870
  error?: string | undefined | null;
12054
- sessionId: string;
12055
- request: {
12871
+ connection: {
12872
+ __typename: "ConnectionInfo";
12873
+ host: string;
12874
+ port: number;
12875
+ isTls: boolean;
12876
+ };
12877
+ session: {
12878
+ id: string;
12879
+ };
12880
+ request?: {
12056
12881
  __typename: "Request";
12057
12882
  id: string;
12058
12883
  host: string;
@@ -12082,7 +12907,7 @@ export type UpdatedReplaySessionSubscription = {
12082
12907
  alteration: Alteration;
12083
12908
  edited: boolean;
12084
12909
  } | undefined | null;
12085
- };
12910
+ } | undefined | null;
12086
12911
  } | undefined | null;
12087
12912
  collection: {
12088
12913
  id: string;
@@ -12092,8 +12917,16 @@ export type UpdatedReplaySessionSubscription = {
12092
12917
  __typename: "ReplayEntry";
12093
12918
  id: string;
12094
12919
  error?: string | undefined | null;
12095
- sessionId: string;
12096
- request: {
12920
+ connection: {
12921
+ __typename: "ConnectionInfo";
12922
+ host: string;
12923
+ port: number;
12924
+ isTls: boolean;
12925
+ };
12926
+ session: {
12927
+ id: string;
12928
+ };
12929
+ request?: {
12097
12930
  __typename: "Request";
12098
12931
  id: string;
12099
12932
  host: string;
@@ -12123,7 +12956,7 @@ export type UpdatedReplaySessionSubscription = {
12123
12956
  alteration: Alteration;
12124
12957
  edited: boolean;
12125
12958
  } | undefined | null;
12126
- };
12959
+ } | undefined | null;
12127
12960
  }>;
12128
12961
  pageInfo: {
12129
12962
  __typename: "PageInfo";
@@ -12142,64 +12975,10 @@ export type UpdatedReplaySessionSubscription = {
12142
12975
  };
12143
12976
  };
12144
12977
  };
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
12978
  export type CreatedRequestSubscriptionVariables = Exact<{
12200
12979
  order?: InputMaybe<RequestResponseOrderInput>;
12201
12980
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
12202
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
12981
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
12203
12982
  }>;
12204
12983
  export type CreatedRequestSubscription = {
12205
12984
  createdRequest: {
@@ -12244,7 +13023,7 @@ export type CreatedRequestSubscription = {
12244
13023
  export type UpdatedRequestSubscriptionVariables = Exact<{
12245
13024
  order?: InputMaybe<RequestResponseOrderInput>;
12246
13025
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
12247
- filter?: InputMaybe<FilterClauseRequestResponseInput>;
13026
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
12248
13027
  }>;
12249
13028
  export type UpdatedRequestSubscription = {
12250
13029
  updatedRequest: {
@@ -12511,6 +13290,56 @@ export type StartedTaskSubscriptionVariables = Exact<{
12511
13290
  export type StartedTaskSubscription = {
12512
13291
  startedTask: {
12513
13292
  task: {
13293
+ __typename: "ReplayTask";
13294
+ id: string;
13295
+ createdAt: Date;
13296
+ replayEntry: {
13297
+ __typename: "ReplayEntry";
13298
+ id: string;
13299
+ error?: string | undefined | null;
13300
+ connection: {
13301
+ __typename: "ConnectionInfo";
13302
+ host: string;
13303
+ port: number;
13304
+ isTls: boolean;
13305
+ };
13306
+ session: {
13307
+ id: string;
13308
+ };
13309
+ request?: {
13310
+ __typename: "Request";
13311
+ id: string;
13312
+ host: string;
13313
+ port: number;
13314
+ path: string;
13315
+ query: string;
13316
+ method: string;
13317
+ edited: boolean;
13318
+ isTls: boolean;
13319
+ length: number;
13320
+ alteration: Alteration;
13321
+ fileExtension?: string | undefined | null;
13322
+ source: Source;
13323
+ createdAt: Date;
13324
+ metadata: {
13325
+ __typename: "RequestMetadata";
13326
+ id: string;
13327
+ color?: string | undefined | null;
13328
+ };
13329
+ response?: {
13330
+ __typename: "Response";
13331
+ id: string;
13332
+ statusCode: number;
13333
+ roundtripTime: number;
13334
+ length: number;
13335
+ createdAt: Date;
13336
+ alteration: Alteration;
13337
+ edited: boolean;
13338
+ } | undefined | null;
13339
+ } | undefined | null;
13340
+ };
13341
+ } | {
13342
+ __typename: "WorkflowTask";
12514
13343
  id: string;
12515
13344
  createdAt: Date;
12516
13345
  workflow: {
@@ -12530,6 +13359,56 @@ export type FinishedTaskSubscriptionVariables = Exact<{
12530
13359
  export type FinishedTaskSubscription = {
12531
13360
  finishedTask: {
12532
13361
  task: {
13362
+ __typename: "ReplayTask";
13363
+ id: string;
13364
+ createdAt: Date;
13365
+ replayEntry: {
13366
+ __typename: "ReplayEntry";
13367
+ id: string;
13368
+ error?: string | undefined | null;
13369
+ connection: {
13370
+ __typename: "ConnectionInfo";
13371
+ host: string;
13372
+ port: number;
13373
+ isTls: boolean;
13374
+ };
13375
+ session: {
13376
+ id: string;
13377
+ };
13378
+ request?: {
13379
+ __typename: "Request";
13380
+ id: string;
13381
+ host: string;
13382
+ port: number;
13383
+ path: string;
13384
+ query: string;
13385
+ method: string;
13386
+ edited: boolean;
13387
+ isTls: boolean;
13388
+ length: number;
13389
+ alteration: Alteration;
13390
+ fileExtension?: string | undefined | null;
13391
+ source: Source;
13392
+ createdAt: Date;
13393
+ metadata: {
13394
+ __typename: "RequestMetadata";
13395
+ id: string;
13396
+ color?: string | undefined | null;
13397
+ };
13398
+ response?: {
13399
+ __typename: "Response";
13400
+ id: string;
13401
+ statusCode: number;
13402
+ roundtripTime: number;
13403
+ length: number;
13404
+ createdAt: Date;
13405
+ alteration: Alteration;
13406
+ edited: boolean;
13407
+ } | undefined | null;
13408
+ } | undefined | null;
13409
+ };
13410
+ } | {
13411
+ __typename: "WorkflowTask";
12533
13412
  id: string;
12534
13413
  createdAt: Date;
12535
13414
  workflow: {
@@ -12646,12 +13525,14 @@ export declare const RetryOnFailureSettingFullFragmentDoc = "\n fragment retr
12646
13525
  export declare const SimpleListPayloadOptionsFullFragmentDoc = "\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n ";
12647
13526
  export declare const HostedFilePayloadOptionsFullFragmentDoc = "\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n ";
12648
13527
  export declare const NullPayloadOptionsFullFragmentDoc = "\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n ";
13528
+ export declare const RangeFullFragmentDoc = "\n fragment rangeFull on Range {\n start\n end\n}\n ";
13529
+ export declare const NumberPayloadOptionsFullFragmentDoc = "\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n ";
12649
13530
  export declare const AutomatePrefixPreprocessorFullFragmentDoc = "\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n ";
12650
13531
  export declare const AutomateSuffixPreprocessorFullFragmentDoc = "\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n ";
12651
13532
  export declare const AutomateWorkflowPreprocessorFullFragmentDoc = "\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n ";
12652
13533
  export declare const AutomateUrlEncodePreprocessorFullFragmentDoc = "\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n ";
12653
13534
  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 ";
13535
+ 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
13536
  export declare const AutomatePlaceholderFullFragmentDoc = "\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
12656
13537
  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
13538
  export declare const AutomateEntryFullFragmentDoc = "\n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n ";
@@ -12706,7 +13587,7 @@ export declare const InterceptEntryMetaFragmentDoc = "\n fragment interceptEn
12706
13587
  export declare const RequestFullFieldsFragmentDoc = "\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
12707
13588
  export declare const RequestFullFragmentDoc = "\n fragment requestFull on Request {\n ...requestFullFields\n}\n ";
12708
13589
  export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\n }\n}\n ";
12709
- export declare const InterceptEntryEdgeWithMetaFragmentDoc = "\n fragment interceptEntryEdgeWithMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
13590
+ export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
12710
13591
  export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
12711
13592
  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
13593
  export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
@@ -12721,16 +13602,24 @@ export declare const UpstreamProxyFullFragmentDoc = "\n fragment upstreamProx
12721
13602
  export declare const PluginAuthorFullFragmentDoc = "\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n ";
12722
13603
  export declare const PluginPackageMetaFragmentDoc = "\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n ";
12723
13604
  export declare const PluginMetaFragmentDoc = "\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
12724
- export declare const PluginFrontendMetaFragmentDoc = "\n fragment pluginFrontendMeta on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n}\n ";
12725
- export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginFrontendMeta\n data\n}\n ";
12726
- 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 sessionId\n request {\n ...requestMeta\n }\n}\n ";
13605
+ export declare const PluginBackendMetaFragmentDoc = "\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n ";
13606
+ export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n ";
13607
+ export declare const PluginBackendFullFragmentDoc = "\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
13608
+ export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n ";
13609
+ 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 ";
13610
+ export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
13611
+ export declare const ReplaySuffixPreprocessorFullFragmentDoc = "\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n ";
13612
+ export declare const ReplayUrlEncodePreprocessorFullFragmentDoc = "\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n ";
13613
+ export declare const ReplayWorkflowPreprocessorFullFragmentDoc = "\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n ";
13614
+ export declare const ReplayPreprocessorFullFragmentDoc = "\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n }\n}\n ";
13615
+ export declare const ReplayPlaceholderFullFragmentDoc = "\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n ";
13616
+ export declare const ReplayEntryFullFragmentDoc = "\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n ";
12728
13617
  export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
12729
13618
  export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
12730
13619
  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
13620
  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 ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n __typename\n id\n error\n replayEntry {\n ...replayEntryMeta\n }\n}\n ";
12733
- export declare const ReplayTaskEdgeMetaFragmentDoc = "\n fragment replayTaskEdgeMeta on ReplayTaskEdge {\n __typename\n node {\n ...replayTaskMeta\n }\n cursor\n}\n ";
13621
+ export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
13622
+ export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n ";
12734
13623
  export declare const RequestEdgeMetaFragmentDoc = "\n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n ";
12735
13624
  export declare const ResponseFullFragmentDoc = "\n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\n}\n ";
12736
13625
  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 +13639,7 @@ export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsF
12750
13639
  export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
12751
13640
  export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
12752
13641
  export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
12753
- export declare const TaskFullFragmentDoc = "\n fragment taskFull on Task {\n id\n createdAt\n}\n ";
12754
- export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskFull\n workflow {\n ...workflowMeta\n }\n}\n ";
13642
+ export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
12755
13643
  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
13644
  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
13645
  export declare const DeleteAssistantSessionDocument = "\n mutation deleteAssistantSession($id: ID!) {\n deleteAssistantSession(id: $id) {\n deletedId\n }\n}\n ";
@@ -12760,11 +13648,11 @@ export declare const StartAuthenticationFlowDocument = "\n mutation startAuth
12760
13648
  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
13649
  export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n }\n}\n ";
12762
13650
  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 ";
13651
+ 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 ";
13652
+ 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
13653
  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 ";
13654
+ 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 ";
13655
+ 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
13656
  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
13657
  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
13658
  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 ";
@@ -12786,8 +13674,9 @@ export declare const CancelDataExportTaskDocument = "\n mutation cancelDataEx
12786
13674
  export declare const CreateFilterPresetDocument = "\n mutation createFilterPreset($input: CreateFilterPresetInput!) {\n createFilterPreset(input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
12787
13675
  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
13676
  export declare const DeleteFilterPresetDocument = "\n mutation deleteFilterPreset($id: ID!) {\n deleteFilterPreset(id: $id) {\n deletedId\n }\n}\n ";
13677
+ export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
12789
13678
  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: FilterClauseInterceptEntryInput, $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 ";
13679
+ 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
13680
  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
13681
  export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile($id: ID!) {\n deleteHostedFile(id: $id) {\n deletedId\n }\n}\n ";
12793
13682
  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 ";
@@ -12802,24 +13691,23 @@ export declare const UpdateUpstreamProxyDocument = "\n mutation updateUpstrea
12802
13691
  export declare const DeleteUpstreamProxyDocument = "\n mutation deleteUpstreamProxy($id: ID!) {\n deleteUpstreamProxy(id: $id) {\n deletedId\n }\n}\n ";
12803
13692
  export declare const TestUpstreamProxyDocument = "\n mutation testUpstreamProxy($input: TestUpstreamProxyInput!) {\n testUpstreamProxy(input: $input) {\n success\n }\n}\n ";
12804
13693
  export declare const RankUpstreamProxyDocument = "\n mutation rankUpstreamProxy($id: ID!, $input: RankUpstreamProxyInput!) {\n rankUpstreamProxy(id: $id, input: $input) {\n proxy {\n ...upstreamProxyFull\n }\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 ";
12805
- export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\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 \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
13694
+ export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
12806
13695
  export declare const UninstallPluginPackageDocument = "\n mutation uninstallPluginPackage($id: ID!) {\n uninstallPluginPackage(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
12807
- export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\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 \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
12808
- export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\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 \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
13696
+ export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
13697
+ export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
12809
13698
  export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
12810
13699
  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
13700
  export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n }\n}\n ";
12812
13701
  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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
13702
+ 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 ";
13703
+ 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
13704
  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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
13705
+ 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 ";
13706
+ 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
13707
  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 sessionId\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 \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 ";
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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
12821
- export declare const StartReplayTaskDocument = "\n mutation startReplayTask($replaySessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(replaySessionId: $replaySessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n __typename\n id\n error\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 ";
12822
- export declare const CancelReplayTaskDocument = "\n mutation cancelReplayTask($id: ID!) {\n cancelReplayTask(id: $id) {\n cancelledId\n }\n}\n ";
13708
+ 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 ";
13709
+ 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 ";
13710
+ 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
13711
  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
13712
  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
13713
  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 +13726,7 @@ export declare const EnableTamperRuleDocument = "\n mutation enableTamperRule
12838
13726
  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
13727
  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
13728
  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 ";
13729
+ 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
13730
  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
13731
  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
13732
  export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n }\n}\n ";
@@ -12845,19 +13734,19 @@ export declare const ToggleWorkflowDocument = "\n mutation toggleWorkflow($id
12845
13734
  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
13735
  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
13736
  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 ...taskFull\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskFull on Task {\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 ";
13737
+ 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
13738
  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
13739
  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
13740
  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
13741
  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
13742
  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
13743
  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!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0) {\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 }\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 countFull on Count {\n __typename\n value\n snapshot\n}\n ";
13744
+ 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 ";
13745
+ 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 ";
13746
+ 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 ";
13747
+ 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
13748
  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 ";
13749
+ 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
13750
  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
13751
  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
13752
  export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
@@ -12875,28 +13764,28 @@ export declare const GetFindingsAfterDocument = "\n query getFindingsAfter($a
12875
13764
  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
13765
  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
13766
  export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
13767
+ 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 ";
13768
+ 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 ";
13769
+ 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 ";
13770
+ 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
13771
  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
13772
  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
13773
  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
13774
  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
13775
  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
13776
  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
- 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 ";
13777
+ export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
12889
13778
  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
13779
  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 ...replayEntryMeta\n }\n}\n \n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 ";
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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
12896
- export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: FilterClauseRequestResponseInput) {\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 ";
12897
- export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter: FilterClauseRequestResponseInput) {\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 ";
13780
+ export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n ";
13781
+ 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 ";
13782
+ 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 ";
13783
+ 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 ";
13784
+ 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 ";
13785
+ 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 ";
13786
+ 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
13787
  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: FilterClauseRequestResponseInput) {\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 ";
13788
+ 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
13789
  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
13790
  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
13791
  export declare const GetLogsDocument = "\n query getLogs {\n runtime {\n logs\n }\n}\n ";
@@ -12914,6 +13803,7 @@ export declare const WebsocketMessagesByOffsetDocument = "\n query websocketM
12914
13803
  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
13804
  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
13805
  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 ";
13806
+ 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
13807
  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
13808
  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
13809
  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 +13814,7 @@ export declare const CreatedAssistantMessageTaskDocument = "\n subscription c
12924
13814
  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
13815
  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
13816
  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 ";
13817
+ 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
13818
  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
13819
  export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
12930
13820
  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 +13838,23 @@ export declare const UpdatedFilterPresetDocument = "\n subscription updatedFi
12948
13838
  export declare const DeletedFilterPresetDocument = "\n subscription deletedFilterPreset {\n deletedFilterPreset {\n deletedFilterId\n }\n}\n ";
12949
13839
  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
13840
  export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
12951
- 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 ";
12952
- 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 ";
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 ";
13841
+ 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 ";
13842
+ 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
13843
  export declare const DeletedInterceptEntryDocument = "\n subscription deletedInterceptEntry {\n deletedInterceptEntry {\n deletedEntryId\n snapshot\n }\n}\n ";
12956
13844
  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
13845
  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
13846
  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 ";
12959
- 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 ";
13847
+ 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 ";
13848
+ 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 ";
13849
+ export declare const CreatedPluginPackageDocument = "\n subscription createdPluginPackage {\n createdPluginPackage {\n package {\n ...pluginPackageFull\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
12960
13850
  export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
12961
- 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 ";
13851
+ export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
12962
13852
  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
13853
  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
13854
  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 sessionId\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 \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
12966
- export declare const UpdatedReplayTaskDocument = "\n subscription updatedReplayTask {\n updatedReplayTask {\n replayTaskEdge {\n ...replayTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment replayTaskEdgeMeta on ReplayTaskEdge {\n __typename\n node {\n ...replayTaskMeta\n }\n cursor\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n __typename\n id\n error\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n sessionId\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 ";
12967
- export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: FilterClauseRequestResponseInput) {\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 ";
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 ";
13855
+ 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 ";
13856
+ 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 ";
13857
+ 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
13858
  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
13859
  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
13860
  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 +13862,8 @@ export declare const CreatedSitemapEntryDocument = "\n subscription createdSi
12973
13862
  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
13863
  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
13864
  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 ...taskFull\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskFull on Task {\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 ";
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 ...taskFull\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskFull on Task {\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 ";
13865
+ 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 ";
13866
+ 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
13867
  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
13868
  export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
12980
13869
  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 ";
@@ -13014,6 +13903,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
13014
13903
  createFilterPreset(variables: CreateFilterPresetMutationVariables, options?: C): Promise<CreateFilterPresetMutation>;
13015
13904
  updateFilterPreset(variables: UpdateFilterPresetMutationVariables, options?: C): Promise<UpdateFilterPresetMutation>;
13016
13905
  deleteFilterPreset(variables: DeleteFilterPresetMutationVariables, options?: C): Promise<DeleteFilterPresetMutation>;
13906
+ createFinding(variables: CreateFindingMutationVariables, options?: C): Promise<CreateFindingMutation>;
13017
13907
  deleteFindings(variables: DeleteFindingsMutationVariables, options?: C): Promise<DeleteFindingsMutation>;
13018
13908
  deleteInterceptEntries(variables?: DeleteInterceptEntriesMutationVariables, options?: C): Promise<DeleteInterceptEntriesMutation>;
13019
13909
  deleteInterceptEntry(variables: DeleteInterceptEntryMutationVariables, options?: C): Promise<DeleteInterceptEntryMutation>;
@@ -13047,7 +13937,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
13047
13937
  createReplaySession(variables: CreateReplaySessionMutationVariables, options?: C): Promise<CreateReplaySessionMutation>;
13048
13938
  moveReplaySession(variables: MoveReplaySessionMutationVariables, options?: C): Promise<MoveReplaySessionMutation>;
13049
13939
  startReplayTask(variables: StartReplayTaskMutationVariables, options?: C): Promise<StartReplayTaskMutation>;
13050
- cancelReplayTask(variables: CancelReplayTaskMutationVariables, options?: C): Promise<CancelReplayTaskMutation>;
13051
13940
  updateRequestMetadata(variables: UpdateRequestMetadataMutationVariables, options?: C): Promise<UpdateRequestMetadataMutation>;
13052
13941
  startExportRequestsTask(variables: StartExportRequestsTaskMutationVariables, options?: C): Promise<StartExportRequestsTaskMutation>;
13053
13942
  renderRequest(variables: RenderRequestMutationVariables, options?: C): Promise<RenderRequestMutation>;
@@ -13066,6 +13955,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
13066
13955
  disableTamperRule(variables: DisableTamperRuleMutationVariables, options?: C): Promise<DisableTamperRuleMutation>;
13067
13956
  rankTamperRule(variables: RankTamperRuleMutationVariables, options?: C): Promise<RankTamperRuleMutation>;
13068
13957
  moveTamperRule(variables: MoveTamperRuleMutationVariables, options?: C): Promise<MoveTamperRuleMutation>;
13958
+ cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
13069
13959
  updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
13070
13960
  createWorkflow(variables: CreateWorkflowMutationVariables, options?: C): Promise<CreateWorkflowMutation>;
13071
13961
  deleteWorkflow(variables: DeleteWorkflowMutationVariables, options?: C): Promise<DeleteWorkflowMutation>;
@@ -13103,15 +13993,15 @@ export declare function getSdk<C>(requester: Requester<C>): {
13103
13993
  getFindingsByOffset(variables: GetFindingsByOffsetQueryVariables, options?: C): Promise<GetFindingsByOffsetQuery>;
13104
13994
  getFindingsCount(variables: GetFindingsCountQueryVariables, options?: C): Promise<GetFindingsCountQuery>;
13105
13995
  findingReporters(variables?: FindingReportersQueryVariables, options?: C): Promise<FindingReportersQuery>;
13996
+ interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
13997
+ interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
13998
+ interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
13999
+ interceptEntryCount(variables?: InterceptEntryCountQueryVariables, options?: C): Promise<InterceptEntryCountQuery>;
13106
14000
  hostedFiles(variables?: HostedFilesQueryVariables, options?: C): Promise<HostedFilesQuery>;
13107
14001
  interceptRequestMessages(variables: InterceptRequestMessagesQueryVariables, options?: C): Promise<InterceptRequestMessagesQuery>;
13108
14002
  interceptResponseMessages(variables: InterceptResponseMessagesQueryVariables, options?: C): Promise<InterceptResponseMessagesQuery>;
13109
14003
  interceptOptions(variables?: InterceptOptionsQueryVariables, options?: C): Promise<InterceptOptionsQuery>;
13110
14004
  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
14005
  upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
13116
14006
  pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
13117
14007
  currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
@@ -13142,6 +14032,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
13142
14032
  websocketMessageCount(variables: WebsocketMessageCountQueryVariables, options?: C): Promise<WebsocketMessageCountQuery>;
13143
14033
  websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
13144
14034
  tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
14035
+ getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
13145
14036
  userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
13146
14037
  userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
13147
14038
  workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
@@ -13176,14 +14067,14 @@ export declare function getSdk<C>(requester: Requester<C>): {
13176
14067
  deletedFilterPreset(variables?: DeletedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<DeletedFilterPresetSubscription>;
13177
14068
  createdFinding(variables?: CreatedFindingSubscriptionVariables, options?: C): AsyncIterable<CreatedFindingSubscription>;
13178
14069
  deletedFindings(variables?: DeletedFindingsSubscriptionVariables, options?: C): AsyncIterable<DeletedFindingsSubscription>;
13179
- createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
13180
- updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
13181
14070
  createdInterceptEntry(variables?: CreatedInterceptEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptEntrySubscription>;
13182
14071
  updatedInterceptEntry(variables?: UpdatedInterceptEntrySubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptEntrySubscription>;
13183
14072
  deletedInterceptEntry(variables?: DeletedInterceptEntrySubscriptionVariables, options?: C): AsyncIterable<DeletedInterceptEntrySubscription>;
13184
14073
  startedDeleteInterceptEntriesTask(variables?: StartedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<StartedDeleteInterceptEntriesTaskSubscription>;
13185
14074
  updatedDeleteInterceptEntriesTask(variables?: UpdatedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedDeleteInterceptEntriesTaskSubscription>;
13186
14075
  finishedDeleteInterceptEntriesTask(variables?: FinishedDeleteInterceptEntriesTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedDeleteInterceptEntriesTaskSubscription>;
14076
+ createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
14077
+ updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
13187
14078
  createdPluginPackage(variables?: CreatedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<CreatedPluginPackageSubscription>;
13188
14079
  deletedPluginPackage(variables?: DeletedPluginPackageSubscriptionVariables, options?: C): AsyncIterable<DeletedPluginPackageSubscription>;
13189
14080
  updatedPlugin(variables?: UpdatedPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedPluginSubscription>;
@@ -13191,7 +14082,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
13191
14082
  updatedProject(variables?: UpdatedProjectSubscriptionVariables, options?: C): AsyncIterable<UpdatedProjectSubscription>;
13192
14083
  deletedProject(variables?: DeletedProjectSubscriptionVariables, options?: C): AsyncIterable<DeletedProjectSubscription>;
13193
14084
  updatedReplaySession(variables?: UpdatedReplaySessionSubscriptionVariables, options?: C): AsyncIterable<UpdatedReplaySessionSubscription>;
13194
- updatedReplayTask(variables?: UpdatedReplayTaskSubscriptionVariables, options?: C): AsyncIterable<UpdatedReplayTaskSubscription>;
13195
14085
  createdRequest(variables?: CreatedRequestSubscriptionVariables, options?: C): AsyncIterable<CreatedRequestSubscription>;
13196
14086
  updatedRequest(variables?: UpdatedRequestSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestSubscription>;
13197
14087
  updatedRequestMetadata(variables?: UpdatedRequestMetadataSubscriptionVariables, options?: C): AsyncIterable<UpdatedRequestMetadataSubscription>;