@caido/sdk-frontend 0.41.1-beta.0 → 0.41.1-beta.2

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.
@@ -706,17 +706,26 @@ export type CreateTamperRulePayload = {
706
706
  error?: Maybe<CreateTamperRuleError>;
707
707
  rule?: Maybe<TamperRule>;
708
708
  };
709
- export type CreateUpstreamProxyInput = {
709
+ export type CreateUpstreamProxyHttpInput = {
710
710
  allowlist: Array<Scalars["String"]["input"]>;
711
711
  auth?: InputMaybe<UpstreamProxyAuthInput>;
712
+ connection: ConnectionInfoInput;
712
713
  denylist: Array<Scalars["String"]["input"]>;
713
714
  enabled: Scalars["Boolean"]["input"];
714
- host: Scalars["String"]["input"];
715
- kind: UpstreamProxyKind;
716
- port: Scalars["Port"]["input"];
717
715
  };
718
- export type CreateUpstreamProxyPayload = {
719
- proxy?: Maybe<UpstreamProxy>;
716
+ export type CreateUpstreamProxyHttpPayload = {
717
+ proxy?: Maybe<UpstreamProxyHttp>;
718
+ };
719
+ export type CreateUpstreamProxySocksInput = {
720
+ allowlist: Array<Scalars["String"]["input"]>;
721
+ auth?: InputMaybe<UpstreamProxyAuthInput>;
722
+ connection: ConnectionInfoInput;
723
+ denylist: Array<Scalars["String"]["input"]>;
724
+ enabled: Scalars["Boolean"]["input"];
725
+ includeDns: Scalars["Boolean"]["input"];
726
+ };
727
+ export type CreateUpstreamProxySocksPayload = {
728
+ proxy?: Maybe<UpstreamProxySocks>;
720
729
  };
721
730
  export type CreateWorkflowError = OtherUserError | WorkflowUserError;
722
731
  export type CreateWorkflowInput = {
@@ -854,6 +863,12 @@ export type CreatedTamperRulePayload = {
854
863
  ruleEdge: TamperRuleEdge;
855
864
  snapshot: Scalars["Snapshot"]["output"];
856
865
  };
866
+ export type CreatedUpstreamProxyHttpPayload = {
867
+ proxy: UpstreamProxyHttp;
868
+ };
869
+ export type CreatedUpstreamProxySocksPayload = {
870
+ proxy: UpstreamProxySocks;
871
+ };
857
872
  export type CreatedWorkflowPayload = {
858
873
  workflowEdge: WorkflowEdge;
859
874
  };
@@ -969,7 +984,10 @@ export type DeleteTamperRuleCollectionPayload = {
969
984
  export type DeleteTamperRulePayload = {
970
985
  deletedId?: Maybe<Scalars["ID"]["output"]>;
971
986
  };
972
- export type DeleteUpstreamProxyPayload = {
987
+ export type DeleteUpstreamProxyHttpPayload = {
988
+ deletedId?: Maybe<Scalars["ID"]["output"]>;
989
+ };
990
+ export type DeleteUpstreamProxySocksPayload = {
973
991
  deletedId?: Maybe<Scalars["ID"]["output"]>;
974
992
  };
975
993
  export type DeleteWorkflowPayload = {
@@ -1050,6 +1068,12 @@ export type DeletedTamperRulePayload = {
1050
1068
  deletedRuleId: Scalars["ID"]["output"];
1051
1069
  snapshot: Scalars["Snapshot"]["output"];
1052
1070
  };
1071
+ export type DeletedUpstreamProxyHttpPayload = {
1072
+ deletedProxyId: Scalars["ID"]["output"];
1073
+ };
1074
+ export type DeletedUpstreamProxySocksPayload = {
1075
+ deletedProxyId: Scalars["ID"]["output"];
1076
+ };
1053
1077
  export type DeletedWorkflowPayload = {
1054
1078
  deletedWorkflowId: Scalars["ID"]["output"];
1055
1079
  };
@@ -1353,7 +1377,8 @@ export type MutationRoot = {
1353
1377
  createSitemapEntries: CreateSitemapEntriesPayload;
1354
1378
  createTamperRule: CreateTamperRulePayload;
1355
1379
  createTamperRuleCollection: CreateTamperRuleCollectionPayload;
1356
- createUpstreamProxy: CreateUpstreamProxyPayload;
1380
+ createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
1381
+ createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
1357
1382
  createWorkflow: CreateWorkflowPayload;
1358
1383
  deleteAssistantSession: DeleteAssistantSessionPayload;
1359
1384
  deleteAutomateEntries: DeleteAutomateEntriesPayload;
@@ -1372,7 +1397,8 @@ export type MutationRoot = {
1372
1397
  deleteScope: DeleteScopePayload;
1373
1398
  deleteTamperRule: DeleteTamperRulePayload;
1374
1399
  deleteTamperRuleCollection: DeleteTamperRuleCollectionPayload;
1375
- deleteUpstreamProxy: DeleteUpstreamProxyPayload;
1400
+ deleteUpstreamProxyHttp: DeleteUpstreamProxyHttpPayload;
1401
+ deleteUpstreamProxySocks: DeleteUpstreamProxySocksPayload;
1376
1402
  deleteWorkflow: DeleteWorkflowPayload;
1377
1403
  disableTamperRule: DisableTamperRulePayload;
1378
1404
  dropInterceptMessage: DropInterceptMessagePayload;
@@ -1389,7 +1415,8 @@ export type MutationRoot = {
1389
1415
  pauseAutomateTask: PauseAutomateTaskPayload;
1390
1416
  pauseIntercept: PauseInterceptPayload;
1391
1417
  rankTamperRule: RankTamperRulePayload;
1392
- rankUpstreamProxy: RankUpstreamProxyPayload;
1418
+ rankUpstreamProxyHttp: RankUpstreamProxyHttpPayload;
1419
+ rankUpstreamProxySocks: RankUpstreamProxySocksPayload;
1393
1420
  refreshAuthenticationToken: RefreshAuthenticationTokenPayload;
1394
1421
  renameAssistantSession: RenameAssistantSessionPayload;
1395
1422
  renameAutomateEntry: RenameAutomateEntryPayload;
@@ -1423,8 +1450,11 @@ export type MutationRoot = {
1423
1450
  startExportRequestsTask: StartExportRequestsTaskPayload;
1424
1451
  startReplayTask: StartReplayTaskPayload;
1425
1452
  testTamperRule: TestTamperRulePayload;
1426
- testUpstreamProxy: TestUpstreamProxyPayload;
1453
+ testUpstreamProxyHttp: TestUpstreamProxyHttpPayload;
1454
+ testUpstreamProxySocks: TestUpstreamProxySocksPayload;
1427
1455
  togglePlugin: TogglePluginPayload;
1456
+ toggleUpstreamProxyHttp: ToggleUpstreamProxyHttpPayload;
1457
+ toggleUpstreamProxySocks: ToggleUpstreamProxySocksPayload;
1428
1458
  toggleWorkflow: ToggleWorkflowPayload;
1429
1459
  uninstallPluginPackage: UninstallPluginPackagePayload;
1430
1460
  updateAutomateSession: UpdateAutomateSessionPayload;
@@ -1433,7 +1463,8 @@ export type MutationRoot = {
1433
1463
  updateRequestMetadata: UpdateRequestMetadataPayload;
1434
1464
  updateScope: UpdateScopePayload;
1435
1465
  updateTamperRule: UpdateTamperRulePayload;
1436
- updateUpstreamProxy: UpdateUpstreamProxyPayload;
1466
+ updateUpstreamProxyHttp: UpdateUpstreamProxyHttpPayload;
1467
+ updateUpstreamProxySocks: UpdateUpstreamProxySocksPayload;
1437
1468
  updateViewerSettings: UpdateViewerSettingsPayload;
1438
1469
  updateWorkflow: UpdateWorkflowPayload;
1439
1470
  uploadHostedFile: UploadHostedFilePayload;
@@ -1490,8 +1521,11 @@ export type MutationRootCreateTamperRuleArgs = {
1490
1521
  export type MutationRootCreateTamperRuleCollectionArgs = {
1491
1522
  input: CreateTamperRuleCollectionInput;
1492
1523
  };
1493
- export type MutationRootCreateUpstreamProxyArgs = {
1494
- input: CreateUpstreamProxyInput;
1524
+ export type MutationRootCreateUpstreamProxyHttpArgs = {
1525
+ input: CreateUpstreamProxyHttpInput;
1526
+ };
1527
+ export type MutationRootCreateUpstreamProxySocksArgs = {
1528
+ input: CreateUpstreamProxySocksInput;
1495
1529
  };
1496
1530
  export type MutationRootCreateWorkflowArgs = {
1497
1531
  input: CreateWorkflowInput;
@@ -1545,7 +1579,10 @@ export type MutationRootDeleteTamperRuleArgs = {
1545
1579
  export type MutationRootDeleteTamperRuleCollectionArgs = {
1546
1580
  id: Scalars["ID"]["input"];
1547
1581
  };
1548
- export type MutationRootDeleteUpstreamProxyArgs = {
1582
+ export type MutationRootDeleteUpstreamProxyHttpArgs = {
1583
+ id: Scalars["ID"]["input"];
1584
+ };
1585
+ export type MutationRootDeleteUpstreamProxySocksArgs = {
1549
1586
  id: Scalars["ID"]["input"];
1550
1587
  };
1551
1588
  export type MutationRootDeleteWorkflowArgs = {
@@ -1591,9 +1628,13 @@ export type MutationRootRankTamperRuleArgs = {
1591
1628
  id: Scalars["ID"]["input"];
1592
1629
  input: RankTamperRuleInput;
1593
1630
  };
1594
- export type MutationRootRankUpstreamProxyArgs = {
1631
+ export type MutationRootRankUpstreamProxyHttpArgs = {
1632
+ id: Scalars["ID"]["input"];
1633
+ input: RankUpstreamProxyHttpInput;
1634
+ };
1635
+ export type MutationRootRankUpstreamProxySocksArgs = {
1595
1636
  id: Scalars["ID"]["input"];
1596
- input: RankUpstreamProxyInput;
1637
+ input: RankUpstreamProxySocksInput;
1597
1638
  };
1598
1639
  export type MutationRootRefreshAuthenticationTokenArgs = {
1599
1640
  refreshToken: Scalars["Token"]["input"];
@@ -1705,13 +1746,24 @@ export type MutationRootStartReplayTaskArgs = {
1705
1746
  export type MutationRootTestTamperRuleArgs = {
1706
1747
  input: TestTamperRuleInput;
1707
1748
  };
1708
- export type MutationRootTestUpstreamProxyArgs = {
1709
- input: TestUpstreamProxyInput;
1749
+ export type MutationRootTestUpstreamProxyHttpArgs = {
1750
+ input: TestUpstreamProxyHttpInput;
1751
+ };
1752
+ export type MutationRootTestUpstreamProxySocksArgs = {
1753
+ input: TestUpstreamProxySocksInput;
1710
1754
  };
1711
1755
  export type MutationRootTogglePluginArgs = {
1712
1756
  enabled: Scalars["Boolean"]["input"];
1713
1757
  id: Scalars["ID"]["input"];
1714
1758
  };
1759
+ export type MutationRootToggleUpstreamProxyHttpArgs = {
1760
+ enabled: Scalars["Boolean"]["input"];
1761
+ id: Scalars["ID"]["input"];
1762
+ };
1763
+ export type MutationRootToggleUpstreamProxySocksArgs = {
1764
+ enabled: Scalars["Boolean"]["input"];
1765
+ id: Scalars["ID"]["input"];
1766
+ };
1715
1767
  export type MutationRootToggleWorkflowArgs = {
1716
1768
  enabled: Scalars["Boolean"]["input"];
1717
1769
  id: Scalars["ID"]["input"];
@@ -1739,9 +1791,13 @@ export type MutationRootUpdateTamperRuleArgs = {
1739
1791
  id: Scalars["ID"]["input"];
1740
1792
  input: UpdateTamperRuleInput;
1741
1793
  };
1742
- export type MutationRootUpdateUpstreamProxyArgs = {
1794
+ export type MutationRootUpdateUpstreamProxyHttpArgs = {
1743
1795
  id: Scalars["ID"]["input"];
1744
- input: UpdateUpstreamProxyInput;
1796
+ input: UpdateUpstreamProxyHttpInput;
1797
+ };
1798
+ export type MutationRootUpdateUpstreamProxySocksArgs = {
1799
+ id: Scalars["ID"]["input"];
1800
+ input: UpdateUpstreamProxySocksInput;
1745
1801
  };
1746
1802
  export type MutationRootUpdateViewerSettingsArgs = {
1747
1803
  input: UpdateViewerSettingsInput;
@@ -1951,7 +2007,8 @@ export type QueryRoot = {
1951
2007
  tamperRuleCollection?: Maybe<TamperRuleCollection>;
1952
2008
  tamperRuleCollections: TamperRuleCollectionConnection;
1953
2009
  tasks: Array<Task>;
1954
- upstreamProxies: Array<UpstreamProxy>;
2010
+ upstreamProxiesHttp: Array<UpstreamProxyHttp>;
2011
+ upstreamProxiesSocks: Array<UpstreamProxySocks>;
1955
2012
  viewer: User;
1956
2013
  workflow?: Maybe<Workflow>;
1957
2014
  workflowNodeDefinitions: Array<WorkflowNodeDefinition>;
@@ -2149,12 +2206,19 @@ export type RankTamperRuleInput = {
2149
2206
  export type RankTamperRulePayload = {
2150
2207
  rule?: Maybe<TamperRule>;
2151
2208
  };
2152
- export type RankUpstreamProxyInput = {
2209
+ export type RankUpstreamProxyHttpInput = {
2153
2210
  afterId?: InputMaybe<Scalars["ID"]["input"]>;
2154
2211
  beforeId?: InputMaybe<Scalars["ID"]["input"]>;
2155
2212
  };
2156
- export type RankUpstreamProxyPayload = {
2157
- proxy?: Maybe<UpstreamProxy>;
2213
+ export type RankUpstreamProxyHttpPayload = {
2214
+ proxy?: Maybe<UpstreamProxyHttp>;
2215
+ };
2216
+ export type RankUpstreamProxySocksInput = {
2217
+ afterId?: InputMaybe<Scalars["ID"]["input"]>;
2218
+ beforeId?: InputMaybe<Scalars["ID"]["input"]>;
2219
+ };
2220
+ export type RankUpstreamProxySocksPayload = {
2221
+ proxy?: Maybe<UpstreamProxySocks>;
2158
2222
  };
2159
2223
  export type RefreshAuthenticationTokenError = AuthenticationUserError | OtherUserError;
2160
2224
  export type RefreshAuthenticationTokenPayload = {
@@ -2817,6 +2881,8 @@ export type SubscriptionRoot = {
2817
2881
  createdStreamWsMessage: CreatedStreamWsMessagePayload;
2818
2882
  createdTamperRule: CreatedTamperRulePayload;
2819
2883
  createdTamperRuleCollection: CreatedTamperRuleCollectionPayload;
2884
+ createdUpstreamProxyHttp: CreatedUpstreamProxyHttpPayload;
2885
+ createdUpstreamProxySocks: CreatedUpstreamProxySocksPayload;
2820
2886
  createdWorkflow: CreatedWorkflowPayload;
2821
2887
  deletedAssistantSession: DeletedAssistantSessionPayload;
2822
2888
  deletedAutomateEntry: DeletedAutomateEntryPayload;
@@ -2838,6 +2904,8 @@ export type SubscriptionRoot = {
2838
2904
  deletedScope: DeletedScopePayload;
2839
2905
  deletedTamperRule: DeletedTamperRulePayload;
2840
2906
  deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
2907
+ deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
2908
+ deletedUpstreamProxySocks: DeletedUpstreamProxySocksPayload;
2841
2909
  deletedWorkflow: DeletedWorkflowPayload;
2842
2910
  finishedBackupTask: FinishedBackupTaskPayload;
2843
2911
  finishedDeleteInterceptEntriesTask: FinishedDeleteInterceptEntriesTaskPayload;
@@ -2873,6 +2941,8 @@ export type SubscriptionRoot = {
2873
2941
  updatedSitemapEntry: UpdatedSitemapEntryPayload;
2874
2942
  updatedTamperRule: UpdatedTamperRulePayload;
2875
2943
  updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload;
2944
+ updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
2945
+ updatedUpstreamProxySocks: UpdatedUpstreamProxySocksPayload;
2876
2946
  updatedViewerAssistantUsage: UpdatedViewerAssistantUsagePayload;
2877
2947
  updatedViewerSettings: UpdatedViewerSettingsPayload;
2878
2948
  updatedWorkflow: UpdatedWorkflowPayload;
@@ -2980,13 +3050,19 @@ export type TestTamperRulePayload = {
2980
3050
  error?: Maybe<TestTamperRuleError>;
2981
3051
  raw?: Maybe<Scalars["Blob"]["output"]>;
2982
3052
  };
2983
- export type TestUpstreamProxyInput = {
3053
+ export type TestUpstreamProxyHttpInput = {
2984
3054
  auth?: InputMaybe<UpstreamProxyAuthInput>;
2985
- host: Scalars["String"]["input"];
2986
- kind: UpstreamProxyKind;
2987
- port: Scalars["Port"]["input"];
3055
+ connection: ConnectionInfoInput;
3056
+ };
3057
+ export type TestUpstreamProxyHttpPayload = {
3058
+ success?: Maybe<Scalars["Boolean"]["output"]>;
3059
+ };
3060
+ export type TestUpstreamProxySocksInput = {
3061
+ auth?: InputMaybe<UpstreamProxyAuthInput>;
3062
+ connection: ConnectionInfoInput;
3063
+ includeDns: Scalars["Boolean"]["input"];
2988
3064
  };
2989
- export type TestUpstreamProxyPayload = {
3065
+ export type TestUpstreamProxySocksPayload = {
2990
3066
  success?: Maybe<Scalars["Boolean"]["output"]>;
2991
3067
  };
2992
3068
  export type TogglePluginError = OtherUserError | PluginUserError | UnknownIdUserError;
@@ -2994,6 +3070,12 @@ export type TogglePluginPayload = {
2994
3070
  error?: Maybe<TogglePluginError>;
2995
3071
  plugin?: Maybe<Plugin>;
2996
3072
  };
3073
+ export type ToggleUpstreamProxyHttpPayload = {
3074
+ proxy?: Maybe<UpstreamProxyHttp>;
3075
+ };
3076
+ export type ToggleUpstreamProxySocksPayload = {
3077
+ proxy?: Maybe<UpstreamProxySocks>;
3078
+ };
2997
3079
  export type ToggleWorkflowError = OtherUserError | UnknownIdUserError;
2998
3080
  export type ToggleWorkflowPayload = {
2999
3081
  error?: Maybe<ToggleWorkflowError>;
@@ -3067,17 +3149,26 @@ export type UpdateTamperRulePayload = {
3067
3149
  error?: Maybe<UpdateTamperRuleError>;
3068
3150
  rule?: Maybe<TamperRule>;
3069
3151
  };
3070
- export type UpdateUpstreamProxyInput = {
3152
+ export type UpdateUpstreamProxyHttpInput = {
3071
3153
  allowlist: Array<Scalars["String"]["input"]>;
3072
3154
  auth?: InputMaybe<UpstreamProxyAuthInput>;
3155
+ connection: ConnectionInfoInput;
3073
3156
  denylist: Array<Scalars["String"]["input"]>;
3074
3157
  enabled: Scalars["Boolean"]["input"];
3075
- host: Scalars["String"]["input"];
3076
- kind: UpstreamProxyKind;
3077
- port: Scalars["Port"]["input"];
3078
3158
  };
3079
- export type UpdateUpstreamProxyPayload = {
3080
- proxy?: Maybe<UpstreamProxy>;
3159
+ export type UpdateUpstreamProxyHttpPayload = {
3160
+ proxy?: Maybe<UpstreamProxyHttp>;
3161
+ };
3162
+ export type UpdateUpstreamProxySocksInput = {
3163
+ allowlist: Array<Scalars["String"]["input"]>;
3164
+ auth?: InputMaybe<UpstreamProxyAuthInput>;
3165
+ connection: ConnectionInfoInput;
3166
+ denylist: Array<Scalars["String"]["input"]>;
3167
+ enabled: Scalars["Boolean"]["input"];
3168
+ includeDns: Scalars["Boolean"]["input"];
3169
+ };
3170
+ export type UpdateUpstreamProxySocksPayload = {
3171
+ proxy?: Maybe<UpstreamProxySocks>;
3081
3172
  };
3082
3173
  export type UpdateViewerSettingsInput = {
3083
3174
  data: Scalars["JSON"]["input"];
@@ -3196,6 +3287,12 @@ export type UpdatedTamperRulePayload = {
3196
3287
  ruleEdge: TamperRuleEdge;
3197
3288
  snapshot: Scalars["Snapshot"]["output"];
3198
3289
  };
3290
+ export type UpdatedUpstreamProxyHttpPayload = {
3291
+ proxy: UpstreamProxyHttp;
3292
+ };
3293
+ export type UpdatedUpstreamProxySocksPayload = {
3294
+ proxy: UpstreamProxySocks;
3295
+ };
3199
3296
  export type UpdatedViewerAssistantUsagePayload = {
3200
3297
  usage: AssistantUsage;
3201
3298
  };
@@ -3218,17 +3315,6 @@ export type UploadedBrowserPayload = {
3218
3315
  export type UploadedHostedFilePayload = {
3219
3316
  hostedFile: HostedFile;
3220
3317
  };
3221
- export type UpstreamProxy = {
3222
- allowlist: Array<Scalars["String"]["output"]>;
3223
- auth?: Maybe<UpstreamProxyAuth>;
3224
- denylist: Array<Scalars["String"]["output"]>;
3225
- enabled: Scalars["Boolean"]["output"];
3226
- host: Scalars["String"]["output"];
3227
- id: Scalars["ID"]["output"];
3228
- kind: UpstreamProxyKind;
3229
- port: Scalars["Port"]["output"];
3230
- rank: Scalars["Rank"]["output"];
3231
- };
3232
3318
  export type UpstreamProxyAuth = UpstreamProxyAuthBasic;
3233
3319
  export type UpstreamProxyAuthBasic = {
3234
3320
  password: Scalars["Sensitive"]["output"];
@@ -3241,11 +3327,25 @@ export type UpstreamProxyAuthBasicInput = {
3241
3327
  export type UpstreamProxyAuthInput = {
3242
3328
  basic: UpstreamProxyAuthBasicInput;
3243
3329
  };
3244
- export declare const UpstreamProxyKind: {
3245
- readonly Http: "HTTP";
3246
- readonly Https: "HTTPS";
3330
+ export type UpstreamProxyHttp = {
3331
+ allowlist: Array<Scalars["String"]["output"]>;
3332
+ auth?: Maybe<UpstreamProxyAuth>;
3333
+ connection: ConnectionInfo;
3334
+ denylist: Array<Scalars["String"]["output"]>;
3335
+ enabled: Scalars["Boolean"]["output"];
3336
+ id: Scalars["ID"]["output"];
3337
+ rank: Scalars["Rank"]["output"];
3338
+ };
3339
+ export type UpstreamProxySocks = {
3340
+ allowlist: Array<Scalars["String"]["output"]>;
3341
+ auth?: Maybe<UpstreamProxyAuth>;
3342
+ connection: ConnectionInfo;
3343
+ denylist: Array<Scalars["String"]["output"]>;
3344
+ enabled: Scalars["Boolean"]["output"];
3345
+ id: Scalars["ID"]["output"];
3346
+ includeDns: Scalars["Boolean"]["output"];
3347
+ rank: Scalars["Rank"]["output"];
3247
3348
  };
3248
- export type UpstreamProxyKind = (typeof UpstreamProxyKind)[keyof typeof UpstreamProxyKind];
3249
3349
  export type User = {
3250
3350
  assistantUsage: AssistantUsage;
3251
3351
  id: Scalars["ID"]["output"];
@@ -4728,27 +4828,6 @@ export type InterceptResponseOptionsMetaFragment = {
4728
4828
  export type InterceptScopeOptionsMetaFragment = {
4729
4829
  scopeId: string;
4730
4830
  };
4731
- export type UpstreamProxyFullFragment = {
4732
- __typename: "UpstreamProxy";
4733
- id: string;
4734
- allowlist: Array<string>;
4735
- denylist: Array<string>;
4736
- enabled: boolean;
4737
- host: string;
4738
- kind: UpstreamProxyKind;
4739
- port: number;
4740
- rank: string;
4741
- auth?: {
4742
- __typename: "UpstreamProxyAuthBasic";
4743
- username: string;
4744
- password: string;
4745
- } | undefined | null;
4746
- };
4747
- export type UpstreamProxyAuthBasicFullFragment = {
4748
- __typename: "UpstreamProxyAuthBasic";
4749
- username: string;
4750
- password: string;
4751
- };
4752
4831
  export type CountFullFragment = {
4753
4832
  __typename: "Count";
4754
4833
  value: number;
@@ -5773,6 +5852,50 @@ type TaskMeta_WorkflowTask_Fragment = {
5773
5852
  createdAt: Date;
5774
5853
  };
5775
5854
  export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
5855
+ export type UpstreamProxyHttpFullFragment = {
5856
+ __typename: "UpstreamProxyHttp";
5857
+ id: string;
5858
+ allowlist: Array<string>;
5859
+ denylist: Array<string>;
5860
+ enabled: boolean;
5861
+ rank: string;
5862
+ auth?: {
5863
+ __typename: "UpstreamProxyAuthBasic";
5864
+ username: string;
5865
+ password: string;
5866
+ } | undefined | null;
5867
+ connection: {
5868
+ __typename: "ConnectionInfo";
5869
+ host: string;
5870
+ port: number;
5871
+ isTls: boolean;
5872
+ };
5873
+ };
5874
+ export type UpstreamProxySocksFullFragment = {
5875
+ __typename: "UpstreamProxySocks";
5876
+ id: string;
5877
+ allowlist: Array<string>;
5878
+ denylist: Array<string>;
5879
+ enabled: boolean;
5880
+ includeDns: boolean;
5881
+ rank: string;
5882
+ auth?: {
5883
+ __typename: "UpstreamProxyAuthBasic";
5884
+ username: string;
5885
+ password: string;
5886
+ } | undefined | null;
5887
+ connection: {
5888
+ __typename: "ConnectionInfo";
5889
+ host: string;
5890
+ port: number;
5891
+ isTls: boolean;
5892
+ };
5893
+ };
5894
+ export type UpstreamProxyAuthBasicFullFragment = {
5895
+ __typename: "UpstreamProxyAuthBasic";
5896
+ username: string;
5897
+ password: string;
5898
+ };
5776
5899
  export type UserProfileFullFragment = {
5777
5900
  __typename: "UserProfile";
5778
5901
  identity: {
@@ -7018,93 +7141,6 @@ export type ResumeInterceptMutation = {
7018
7141
  status: InterceptStatus;
7019
7142
  };
7020
7143
  };
7021
- export type CreateUpstreamProxyMutationVariables = Exact<{
7022
- input: CreateUpstreamProxyInput;
7023
- }>;
7024
- export type CreateUpstreamProxyMutation = {
7025
- createUpstreamProxy: {
7026
- proxy?: {
7027
- __typename: "UpstreamProxy";
7028
- id: string;
7029
- allowlist: Array<string>;
7030
- denylist: Array<string>;
7031
- enabled: boolean;
7032
- host: string;
7033
- kind: UpstreamProxyKind;
7034
- port: number;
7035
- rank: string;
7036
- auth?: {
7037
- __typename: "UpstreamProxyAuthBasic";
7038
- username: string;
7039
- password: string;
7040
- } | undefined | null;
7041
- } | undefined | null;
7042
- };
7043
- };
7044
- export type UpdateUpstreamProxyMutationVariables = Exact<{
7045
- id: Scalars["ID"]["input"];
7046
- input: UpdateUpstreamProxyInput;
7047
- }>;
7048
- export type UpdateUpstreamProxyMutation = {
7049
- updateUpstreamProxy: {
7050
- proxy?: {
7051
- __typename: "UpstreamProxy";
7052
- id: string;
7053
- allowlist: Array<string>;
7054
- denylist: Array<string>;
7055
- enabled: boolean;
7056
- host: string;
7057
- kind: UpstreamProxyKind;
7058
- port: number;
7059
- rank: string;
7060
- auth?: {
7061
- __typename: "UpstreamProxyAuthBasic";
7062
- username: string;
7063
- password: string;
7064
- } | undefined | null;
7065
- } | undefined | null;
7066
- };
7067
- };
7068
- export type DeleteUpstreamProxyMutationVariables = Exact<{
7069
- id: Scalars["ID"]["input"];
7070
- }>;
7071
- export type DeleteUpstreamProxyMutation = {
7072
- deleteUpstreamProxy: {
7073
- deletedId?: string | undefined | null;
7074
- };
7075
- };
7076
- export type TestUpstreamProxyMutationVariables = Exact<{
7077
- input: TestUpstreamProxyInput;
7078
- }>;
7079
- export type TestUpstreamProxyMutation = {
7080
- testUpstreamProxy: {
7081
- success?: boolean | undefined | null;
7082
- };
7083
- };
7084
- export type RankUpstreamProxyMutationVariables = Exact<{
7085
- id: Scalars["ID"]["input"];
7086
- input: RankUpstreamProxyInput;
7087
- }>;
7088
- export type RankUpstreamProxyMutation = {
7089
- rankUpstreamProxy: {
7090
- proxy?: {
7091
- __typename: "UpstreamProxy";
7092
- id: string;
7093
- allowlist: Array<string>;
7094
- denylist: Array<string>;
7095
- enabled: boolean;
7096
- host: string;
7097
- kind: UpstreamProxyKind;
7098
- port: number;
7099
- rank: string;
7100
- auth?: {
7101
- __typename: "UpstreamProxyAuthBasic";
7102
- username: string;
7103
- password: string;
7104
- } | undefined | null;
7105
- } | undefined | null;
7106
- };
7107
- };
7108
7144
  export type InstallPluginPackageMutationVariables = Exact<{
7109
7145
  input: InstallPluginPackageInput;
7110
7146
  }>;
@@ -8711,6 +8747,201 @@ export type CancelTaskMutation = {
8711
8747
  } | undefined | null;
8712
8748
  };
8713
8749
  };
8750
+ export type CreateUpstreamProxyHttpMutationVariables = Exact<{
8751
+ input: CreateUpstreamProxyHttpInput;
8752
+ }>;
8753
+ export type CreateUpstreamProxyHttpMutation = {
8754
+ createUpstreamProxyHttp: {
8755
+ proxy?: {
8756
+ __typename: "UpstreamProxyHttp";
8757
+ id: string;
8758
+ allowlist: Array<string>;
8759
+ denylist: Array<string>;
8760
+ enabled: boolean;
8761
+ rank: string;
8762
+ auth?: {
8763
+ __typename: "UpstreamProxyAuthBasic";
8764
+ username: string;
8765
+ password: string;
8766
+ } | undefined | null;
8767
+ connection: {
8768
+ __typename: "ConnectionInfo";
8769
+ host: string;
8770
+ port: number;
8771
+ isTls: boolean;
8772
+ };
8773
+ } | undefined | null;
8774
+ };
8775
+ };
8776
+ export type UpdateUpstreamProxyHttpMutationVariables = Exact<{
8777
+ id: Scalars["ID"]["input"];
8778
+ input: UpdateUpstreamProxyHttpInput;
8779
+ }>;
8780
+ export type UpdateUpstreamProxyHttpMutation = {
8781
+ updateUpstreamProxyHttp: {
8782
+ proxy?: {
8783
+ __typename: "UpstreamProxyHttp";
8784
+ id: string;
8785
+ allowlist: Array<string>;
8786
+ denylist: Array<string>;
8787
+ enabled: boolean;
8788
+ rank: string;
8789
+ auth?: {
8790
+ __typename: "UpstreamProxyAuthBasic";
8791
+ username: string;
8792
+ password: string;
8793
+ } | undefined | null;
8794
+ connection: {
8795
+ __typename: "ConnectionInfo";
8796
+ host: string;
8797
+ port: number;
8798
+ isTls: boolean;
8799
+ };
8800
+ } | undefined | null;
8801
+ };
8802
+ };
8803
+ export type DeleteUpstreamProxyHttpMutationVariables = Exact<{
8804
+ id: Scalars["ID"]["input"];
8805
+ }>;
8806
+ export type DeleteUpstreamProxyHttpMutation = {
8807
+ deleteUpstreamProxyHttp: {
8808
+ deletedId?: string | undefined | null;
8809
+ };
8810
+ };
8811
+ export type TestUpstreamProxyHttpMutationVariables = Exact<{
8812
+ input: TestUpstreamProxyHttpInput;
8813
+ }>;
8814
+ export type TestUpstreamProxyHttpMutation = {
8815
+ testUpstreamProxyHttp: {
8816
+ success?: boolean | undefined | null;
8817
+ };
8818
+ };
8819
+ export type RankUpstreamProxyHttpMutationVariables = Exact<{
8820
+ id: Scalars["ID"]["input"];
8821
+ input: RankUpstreamProxyHttpInput;
8822
+ }>;
8823
+ export type RankUpstreamProxyHttpMutation = {
8824
+ rankUpstreamProxyHttp: {
8825
+ proxy?: {
8826
+ __typename: "UpstreamProxyHttp";
8827
+ id: string;
8828
+ allowlist: Array<string>;
8829
+ denylist: Array<string>;
8830
+ enabled: boolean;
8831
+ rank: string;
8832
+ auth?: {
8833
+ __typename: "UpstreamProxyAuthBasic";
8834
+ username: string;
8835
+ password: string;
8836
+ } | undefined | null;
8837
+ connection: {
8838
+ __typename: "ConnectionInfo";
8839
+ host: string;
8840
+ port: number;
8841
+ isTls: boolean;
8842
+ };
8843
+ } | undefined | null;
8844
+ };
8845
+ };
8846
+ export type CreateUpstreamProxySocksMutationVariables = Exact<{
8847
+ input: CreateUpstreamProxySocksInput;
8848
+ }>;
8849
+ export type CreateUpstreamProxySocksMutation = {
8850
+ createUpstreamProxySocks: {
8851
+ proxy?: {
8852
+ __typename: "UpstreamProxySocks";
8853
+ id: string;
8854
+ allowlist: Array<string>;
8855
+ denylist: Array<string>;
8856
+ enabled: boolean;
8857
+ includeDns: boolean;
8858
+ rank: string;
8859
+ auth?: {
8860
+ __typename: "UpstreamProxyAuthBasic";
8861
+ username: string;
8862
+ password: string;
8863
+ } | undefined | null;
8864
+ connection: {
8865
+ __typename: "ConnectionInfo";
8866
+ host: string;
8867
+ port: number;
8868
+ isTls: boolean;
8869
+ };
8870
+ } | undefined | null;
8871
+ };
8872
+ };
8873
+ export type UpdateUpstreamProxySocksMutationVariables = Exact<{
8874
+ id: Scalars["ID"]["input"];
8875
+ input: UpdateUpstreamProxySocksInput;
8876
+ }>;
8877
+ export type UpdateUpstreamProxySocksMutation = {
8878
+ updateUpstreamProxySocks: {
8879
+ proxy?: {
8880
+ __typename: "UpstreamProxySocks";
8881
+ id: string;
8882
+ allowlist: Array<string>;
8883
+ denylist: Array<string>;
8884
+ enabled: boolean;
8885
+ includeDns: boolean;
8886
+ rank: string;
8887
+ auth?: {
8888
+ __typename: "UpstreamProxyAuthBasic";
8889
+ username: string;
8890
+ password: string;
8891
+ } | undefined | null;
8892
+ connection: {
8893
+ __typename: "ConnectionInfo";
8894
+ host: string;
8895
+ port: number;
8896
+ isTls: boolean;
8897
+ };
8898
+ } | undefined | null;
8899
+ };
8900
+ };
8901
+ export type DeleteUpstreamProxySocksMutationVariables = Exact<{
8902
+ id: Scalars["ID"]["input"];
8903
+ }>;
8904
+ export type DeleteUpstreamProxySocksMutation = {
8905
+ deleteUpstreamProxySocks: {
8906
+ deletedId?: string | undefined | null;
8907
+ };
8908
+ };
8909
+ export type TestUpstreamProxySocksMutationVariables = Exact<{
8910
+ input: TestUpstreamProxySocksInput;
8911
+ }>;
8912
+ export type TestUpstreamProxySocksMutation = {
8913
+ testUpstreamProxySocks: {
8914
+ success?: boolean | undefined | null;
8915
+ };
8916
+ };
8917
+ export type RankUpstreamProxySocksMutationVariables = Exact<{
8918
+ id: Scalars["ID"]["input"];
8919
+ input: RankUpstreamProxySocksInput;
8920
+ }>;
8921
+ export type RankUpstreamProxySocksMutation = {
8922
+ rankUpstreamProxySocks: {
8923
+ proxy?: {
8924
+ __typename: "UpstreamProxySocks";
8925
+ id: string;
8926
+ allowlist: Array<string>;
8927
+ denylist: Array<string>;
8928
+ enabled: boolean;
8929
+ includeDns: boolean;
8930
+ rank: string;
8931
+ auth?: {
8932
+ __typename: "UpstreamProxyAuthBasic";
8933
+ username: string;
8934
+ password: string;
8935
+ } | undefined | null;
8936
+ connection: {
8937
+ __typename: "ConnectionInfo";
8938
+ host: string;
8939
+ port: number;
8940
+ isTls: boolean;
8941
+ };
8942
+ } | undefined | null;
8943
+ };
8944
+ };
8714
8945
  export type UpdateViewerSettingsMutationVariables = Exact<{
8715
8946
  input: UpdateViewerSettingsInput;
8716
8947
  }>;
@@ -10358,27 +10589,6 @@ export type InterceptStatusQueryVariables = Exact<{
10358
10589
  export type InterceptStatusQuery = {
10359
10590
  interceptStatus: InterceptStatus;
10360
10591
  };
10361
- export type UpstreamProxiesQueryVariables = Exact<{
10362
- [key: string]: never;
10363
- }>;
10364
- export type UpstreamProxiesQuery = {
10365
- upstreamProxies: Array<{
10366
- __typename: "UpstreamProxy";
10367
- id: string;
10368
- allowlist: Array<string>;
10369
- denylist: Array<string>;
10370
- enabled: boolean;
10371
- host: string;
10372
- kind: UpstreamProxyKind;
10373
- port: number;
10374
- rank: string;
10375
- auth?: {
10376
- __typename: "UpstreamProxyAuthBasic";
10377
- username: string;
10378
- password: string;
10379
- } | undefined | null;
10380
- }>;
10381
- };
10382
10592
  export type PluginPackagesQueryVariables = Exact<{
10383
10593
  [key: string]: never;
10384
10594
  }>;
@@ -11791,6 +12001,50 @@ export type GetTasksQuery = {
11791
12001
  };
11792
12002
  }>;
11793
12003
  };
12004
+ export type UpstreamProxiesQueryVariables = Exact<{
12005
+ [key: string]: never;
12006
+ }>;
12007
+ export type UpstreamProxiesQuery = {
12008
+ upstreamProxiesHttp: Array<{
12009
+ __typename: "UpstreamProxyHttp";
12010
+ id: string;
12011
+ allowlist: Array<string>;
12012
+ denylist: Array<string>;
12013
+ enabled: boolean;
12014
+ rank: string;
12015
+ auth?: {
12016
+ __typename: "UpstreamProxyAuthBasic";
12017
+ username: string;
12018
+ password: string;
12019
+ } | undefined | null;
12020
+ connection: {
12021
+ __typename: "ConnectionInfo";
12022
+ host: string;
12023
+ port: number;
12024
+ isTls: boolean;
12025
+ };
12026
+ }>;
12027
+ upstreamProxiesSocks: Array<{
12028
+ __typename: "UpstreamProxySocks";
12029
+ id: string;
12030
+ allowlist: Array<string>;
12031
+ denylist: Array<string>;
12032
+ enabled: boolean;
12033
+ includeDns: boolean;
12034
+ rank: string;
12035
+ auth?: {
12036
+ __typename: "UpstreamProxyAuthBasic";
12037
+ username: string;
12038
+ password: string;
12039
+ } | undefined | null;
12040
+ connection: {
12041
+ __typename: "ConnectionInfo";
12042
+ host: string;
12043
+ port: number;
12044
+ isTls: boolean;
12045
+ };
12046
+ }>;
12047
+ };
11794
12048
  export type UserProfileQueryVariables = Exact<{
11795
12049
  [key: string]: never;
11796
12050
  }>;
@@ -13575,6 +13829,128 @@ export type FinishedTaskSubscription = {
13575
13829
  } | undefined | null;
13576
13830
  };
13577
13831
  };
13832
+ export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
13833
+ [key: string]: never;
13834
+ }>;
13835
+ export type CreatedUpstreamProxyHttpSubscription = {
13836
+ createdUpstreamProxyHttp: {
13837
+ proxy: {
13838
+ __typename: "UpstreamProxyHttp";
13839
+ id: string;
13840
+ allowlist: Array<string>;
13841
+ denylist: Array<string>;
13842
+ enabled: boolean;
13843
+ rank: string;
13844
+ auth?: {
13845
+ __typename: "UpstreamProxyAuthBasic";
13846
+ username: string;
13847
+ password: string;
13848
+ } | undefined | null;
13849
+ connection: {
13850
+ __typename: "ConnectionInfo";
13851
+ host: string;
13852
+ port: number;
13853
+ isTls: boolean;
13854
+ };
13855
+ };
13856
+ };
13857
+ };
13858
+ export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
13859
+ [key: string]: never;
13860
+ }>;
13861
+ export type UpdatedUpstreamProxyHttpSubscription = {
13862
+ updatedUpstreamProxyHttp: {
13863
+ proxy: {
13864
+ __typename: "UpstreamProxyHttp";
13865
+ id: string;
13866
+ allowlist: Array<string>;
13867
+ denylist: Array<string>;
13868
+ enabled: boolean;
13869
+ rank: string;
13870
+ auth?: {
13871
+ __typename: "UpstreamProxyAuthBasic";
13872
+ username: string;
13873
+ password: string;
13874
+ } | undefined | null;
13875
+ connection: {
13876
+ __typename: "ConnectionInfo";
13877
+ host: string;
13878
+ port: number;
13879
+ isTls: boolean;
13880
+ };
13881
+ };
13882
+ };
13883
+ };
13884
+ export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
13885
+ [key: string]: never;
13886
+ }>;
13887
+ export type DeletedUpstreamProxyHttpSubscription = {
13888
+ deletedUpstreamProxyHttp: {
13889
+ deletedProxyId: string;
13890
+ };
13891
+ };
13892
+ export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
13893
+ [key: string]: never;
13894
+ }>;
13895
+ export type CreatedUpstreamProxySocksSubscription = {
13896
+ createdUpstreamProxySocks: {
13897
+ proxy: {
13898
+ __typename: "UpstreamProxySocks";
13899
+ id: string;
13900
+ allowlist: Array<string>;
13901
+ denylist: Array<string>;
13902
+ enabled: boolean;
13903
+ includeDns: boolean;
13904
+ rank: string;
13905
+ auth?: {
13906
+ __typename: "UpstreamProxyAuthBasic";
13907
+ username: string;
13908
+ password: string;
13909
+ } | undefined | null;
13910
+ connection: {
13911
+ __typename: "ConnectionInfo";
13912
+ host: string;
13913
+ port: number;
13914
+ isTls: boolean;
13915
+ };
13916
+ };
13917
+ };
13918
+ };
13919
+ export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
13920
+ [key: string]: never;
13921
+ }>;
13922
+ export type UpdatedUpstreamProxySocksSubscription = {
13923
+ updatedUpstreamProxySocks: {
13924
+ proxy: {
13925
+ __typename: "UpstreamProxySocks";
13926
+ id: string;
13927
+ allowlist: Array<string>;
13928
+ denylist: Array<string>;
13929
+ enabled: boolean;
13930
+ includeDns: boolean;
13931
+ rank: string;
13932
+ auth?: {
13933
+ __typename: "UpstreamProxyAuthBasic";
13934
+ username: string;
13935
+ password: string;
13936
+ } | undefined | null;
13937
+ connection: {
13938
+ __typename: "ConnectionInfo";
13939
+ host: string;
13940
+ port: number;
13941
+ isTls: boolean;
13942
+ };
13943
+ };
13944
+ };
13945
+ };
13946
+ export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
13947
+ [key: string]: never;
13948
+ }>;
13949
+ export type DeletedUpstreamProxySocksSubscription = {
13950
+ deletedUpstreamProxySocks: {
13951
+ deletedProxyId: string;
13952
+ };
13953
+ };
13578
13954
  export type CreatedWorkflowSubscriptionVariables = Exact<{
13579
13955
  [key: string]: never;
13580
13956
  }>;
@@ -13712,8 +14088,6 @@ export declare const InterceptRequestOptionsMetaFragmentDoc = "\n fragment in
13712
14088
  export declare const InterceptResponseOptionsMetaFragmentDoc = "\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n ";
13713
14089
  export declare const InterceptScopeOptionsMetaFragmentDoc = "\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
13714
14090
  export declare const InterceptOptionsMetaFragmentDoc = "\n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n ";
13715
- export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
13716
- export declare const UpstreamProxyFullFragmentDoc = "\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 ";
13717
14091
  export declare const PluginAuthorFullFragmentDoc = "\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n ";
13718
14092
  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 ";
13719
14093
  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 ";
@@ -13750,6 +14124,9 @@ export declare const StreamWsMessageFullFragmentDoc = "\n fragment streamWsMe
13750
14124
  export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n ";
13751
14125
  export declare const TamperRuleFullFragmentDoc = "\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 ";
13752
14126
  export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
14127
+ export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
14128
+ export declare const UpstreamProxyHttpFullFragmentDoc = "\n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n ";
14129
+ export declare const UpstreamProxySocksFullFragmentDoc = "\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
13753
14130
  export declare const UserProfileFullFragmentDoc = "\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 ";
13754
14131
  export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
13755
14132
  export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
@@ -13802,11 +14179,6 @@ export declare const DropInterceptMesageDocument = "\n mutation dropIntercept
13802
14179
  export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\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 ";
13803
14180
  export declare const PauseInterceptDocument = "\n mutation pauseIntercept {\n pauseIntercept {\n status\n }\n}\n ";
13804
14181
  export declare const ResumeInterceptDocument = "\n mutation resumeIntercept {\n resumeIntercept {\n status\n }\n}\n ";
13805
- export declare const CreateUpstreamProxyDocument = "\n mutation createUpstreamProxy($input: CreateUpstreamProxyInput!) {\n createUpstreamProxy(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 ";
13806
- export declare const UpdateUpstreamProxyDocument = "\n mutation updateUpstreamProxy($id: ID!, $input: UpdateUpstreamProxyInput!) {\n updateUpstreamProxy(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 ";
13807
- export declare const DeleteUpstreamProxyDocument = "\n mutation deleteUpstreamProxy($id: ID!) {\n deleteUpstreamProxy(id: $id) {\n deletedId\n }\n}\n ";
13808
- export declare const TestUpstreamProxyDocument = "\n mutation testUpstreamProxy($input: TestUpstreamProxyInput!) {\n testUpstreamProxy(input: $input) {\n success\n }\n}\n ";
13809
- 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 ";
13810
14182
  export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n }\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 \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
13811
14183
  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 ";
13812
14184
  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 ";
@@ -13843,6 +14215,16 @@ export declare const DisableTamperRuleDocument = "\n mutation disableTamperRu
13843
14215
  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 ";
13844
14216
  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 ";
13845
14217
  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 ";
14218
+ export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14219
+ export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14220
+ export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
14221
+ export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
14222
+ export declare const RankUpstreamProxyHttpDocument = "\n mutation rankUpstreamProxyHttp($id: ID!, $input: RankUpstreamProxyHttpInput!) {\n rankUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14223
+ export declare const CreateUpstreamProxySocksDocument = "\n mutation createUpstreamProxySocks($input: CreateUpstreamProxySocksInput!) {\n createUpstreamProxySocks(input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14224
+ export declare const UpdateUpstreamProxySocksDocument = "\n mutation updateUpstreamProxySocks($id: ID!, $input: UpdateUpstreamProxySocksInput!) {\n updateUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14225
+ export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
14226
+ export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
14227
+ export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankUpstreamProxySocksInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
13846
14228
  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 ";
13847
14229
  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 ";
13848
14230
  export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n }\n}\n ";
@@ -13889,7 +14271,6 @@ export declare const InterceptRequestMessagesDocument = "\n query interceptRe
13889
14271
  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 ";
13890
14272
  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 ";
13891
14273
  export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
13892
- 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 ";
13893
14274
  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 ";
13894
14275
  export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n license\n manifestId\n name\n repository\n version\n}\n ";
13895
14276
  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 ";
@@ -13921,6 +14302,7 @@ export declare const WebsocketMessageCountDocument = "\n query websocketMessa
13921
14302
  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 ";
13922
14303
  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 ";
13923
14304
  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 ";
14305
+ export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
13924
14306
  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 ";
13925
14307
  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 ";
13926
14308
  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 ";
@@ -13982,6 +14364,12 @@ export declare const CreatedWsStreamDocument = "\n subscription createdWsStre
13982
14364
  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 ";
13983
14365
  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 ";
13984
14366
  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 ";
14367
+ export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14368
+ export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14369
+ export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
14370
+ export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14371
+ export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
14372
+ export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
13985
14373
  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 ";
13986
14374
  export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
13987
14375
  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 ";
@@ -14033,11 +14421,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
14033
14421
  setInterceptOptions(variables: SetInterceptOptionsMutationVariables, options?: C): Promise<SetInterceptOptionsMutation>;
14034
14422
  pauseIntercept(variables?: PauseInterceptMutationVariables, options?: C): Promise<PauseInterceptMutation>;
14035
14423
  resumeIntercept(variables?: ResumeInterceptMutationVariables, options?: C): Promise<ResumeInterceptMutation>;
14036
- createUpstreamProxy(variables: CreateUpstreamProxyMutationVariables, options?: C): Promise<CreateUpstreamProxyMutation>;
14037
- updateUpstreamProxy(variables: UpdateUpstreamProxyMutationVariables, options?: C): Promise<UpdateUpstreamProxyMutation>;
14038
- deleteUpstreamProxy(variables: DeleteUpstreamProxyMutationVariables, options?: C): Promise<DeleteUpstreamProxyMutation>;
14039
- testUpstreamProxy(variables: TestUpstreamProxyMutationVariables, options?: C): Promise<TestUpstreamProxyMutation>;
14040
- rankUpstreamProxy(variables: RankUpstreamProxyMutationVariables, options?: C): Promise<RankUpstreamProxyMutation>;
14041
14424
  installPluginPackage(variables: InstallPluginPackageMutationVariables, options?: C): Promise<InstallPluginPackageMutation>;
14042
14425
  uninstallPluginPackage(variables: UninstallPluginPackageMutationVariables, options?: C): Promise<UninstallPluginPackageMutation>;
14043
14426
  togglePlugin(variables: TogglePluginMutationVariables, options?: C): Promise<TogglePluginMutation>;
@@ -14074,6 +14457,16 @@ export declare function getSdk<C>(requester: Requester<C>): {
14074
14457
  rankTamperRule(variables: RankTamperRuleMutationVariables, options?: C): Promise<RankTamperRuleMutation>;
14075
14458
  moveTamperRule(variables: MoveTamperRuleMutationVariables, options?: C): Promise<MoveTamperRuleMutation>;
14076
14459
  cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
14460
+ createUpstreamProxyHttp(variables: CreateUpstreamProxyHttpMutationVariables, options?: C): Promise<CreateUpstreamProxyHttpMutation>;
14461
+ updateUpstreamProxyHttp(variables: UpdateUpstreamProxyHttpMutationVariables, options?: C): Promise<UpdateUpstreamProxyHttpMutation>;
14462
+ deleteUpstreamProxyHttp(variables: DeleteUpstreamProxyHttpMutationVariables, options?: C): Promise<DeleteUpstreamProxyHttpMutation>;
14463
+ testUpstreamProxyHttp(variables: TestUpstreamProxyHttpMutationVariables, options?: C): Promise<TestUpstreamProxyHttpMutation>;
14464
+ rankUpstreamProxyHttp(variables: RankUpstreamProxyHttpMutationVariables, options?: C): Promise<RankUpstreamProxyHttpMutation>;
14465
+ createUpstreamProxySocks(variables: CreateUpstreamProxySocksMutationVariables, options?: C): Promise<CreateUpstreamProxySocksMutation>;
14466
+ updateUpstreamProxySocks(variables: UpdateUpstreamProxySocksMutationVariables, options?: C): Promise<UpdateUpstreamProxySocksMutation>;
14467
+ deleteUpstreamProxySocks(variables: DeleteUpstreamProxySocksMutationVariables, options?: C): Promise<DeleteUpstreamProxySocksMutation>;
14468
+ testUpstreamProxySocks(variables: TestUpstreamProxySocksMutationVariables, options?: C): Promise<TestUpstreamProxySocksMutation>;
14469
+ rankUpstreamProxySocks(variables: RankUpstreamProxySocksMutationVariables, options?: C): Promise<RankUpstreamProxySocksMutation>;
14077
14470
  updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
14078
14471
  createWorkflow(variables: CreateWorkflowMutationVariables, options?: C): Promise<CreateWorkflowMutation>;
14079
14472
  deleteWorkflow(variables: DeleteWorkflowMutationVariables, options?: C): Promise<DeleteWorkflowMutation>;
@@ -14120,7 +14513,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
14120
14513
  interceptResponseMessages(variables: InterceptResponseMessagesQueryVariables, options?: C): Promise<InterceptResponseMessagesQuery>;
14121
14514
  interceptOptions(variables?: InterceptOptionsQueryVariables, options?: C): Promise<InterceptOptionsQuery>;
14122
14515
  interceptStatus(variables?: InterceptStatusQueryVariables, options?: C): Promise<InterceptStatusQuery>;
14123
- upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
14124
14516
  pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
14125
14517
  storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
14126
14518
  currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
@@ -14152,6 +14544,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
14152
14544
  websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
14153
14545
  tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
14154
14546
  getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
14547
+ upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
14155
14548
  userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
14156
14549
  userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
14157
14550
  workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
@@ -14213,10 +14606,15 @@ export declare function getSdk<C>(requester: Requester<C>): {
14213
14606
  createdStreamWsMessage(variables: CreatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedStreamWsMessageSubscription>;
14214
14607
  startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
14215
14608
  finishedTask(variables?: FinishedTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedTaskSubscription>;
14609
+ createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
14610
+ updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
14611
+ deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
14612
+ createdUpstreamProxySocks(variables?: CreatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxySocksSubscription>;
14613
+ updatedUpstreamProxySocks(variables?: UpdatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxySocksSubscription>;
14614
+ deletedUpstreamProxySocks(variables?: DeletedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxySocksSubscription>;
14216
14615
  createdWorkflow(variables?: CreatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<CreatedWorkflowSubscription>;
14217
14616
  deletedWorkflow(variables?: DeletedWorkflowSubscriptionVariables, options?: C): AsyncIterable<DeletedWorkflowSubscription>;
14218
14617
  updatedWorkflow(variables?: UpdatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<UpdatedWorkflowSubscription>;
14219
14618
  };
14220
14619
  export type Sdk = ReturnType<typeof getSdk>;
14221
14620
  export {};
14222
- //# sourceMappingURL=graphql-sdk.d.ts.map