@caido/sdk-frontend 0.54.2-beta.1 → 0.54.2-beta.11

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.
Files changed (37) hide show
  1. package/package.json +1 -1
  2. package/src/types/__generated__/graphql-sdk.d.ts +1379 -248
  3. package/src/types/index.d.ts +26 -2
  4. package/src/types/private/analytics.d.ts +29 -0
  5. package/src/types/sdks/automate.d.ts +37 -0
  6. package/src/types/sdks/findings.d.ts +6 -0
  7. package/src/types/sdks/httpHistory.d.ts +6 -0
  8. package/src/types/sdks/index.d.ts +11 -0
  9. package/src/types/sdks/matchReplace.d.ts +19 -1
  10. package/src/types/sdks/replay.d.ts +19 -1
  11. package/src/types/sdks/search.d.ts +6 -0
  12. package/src/types/sdks/settings.d.ts +22 -0
  13. package/src/types/sdks/sitemap.d.ts +52 -1
  14. package/src/types/sdks/window.d.ts +13 -2
  15. package/src/types/types/assistant.d.ts +7 -0
  16. package/src/types/types/automate.d.ts +56 -0
  17. package/src/types/types/backups.d.ts +7 -0
  18. package/src/types/types/certificate.d.ts +7 -0
  19. package/src/types/types/environment.d.ts +9 -0
  20. package/src/types/types/exports.d.ts +7 -0
  21. package/src/types/types/files.d.ts +7 -0
  22. package/src/types/types/filter.d.ts +9 -1
  23. package/src/types/types/findings.d.ts +9 -1
  24. package/src/types/types/httpHistory.d.ts +9 -0
  25. package/src/types/types/intercept.d.ts +19 -0
  26. package/src/types/types/matchReplace.d.ts +9 -1
  27. package/src/types/types/projects.d.ts +7 -0
  28. package/src/types/types/replay.d.ts +17 -1
  29. package/src/types/types/response.d.ts +27 -0
  30. package/src/types/types/scopes.d.ts +9 -1
  31. package/src/types/types/search.d.ts +7 -0
  32. package/src/types/types/settings.d.ts +25 -0
  33. package/src/types/types/sitemap.d.ts +96 -0
  34. package/src/types/types/utils.d.ts +28 -0
  35. package/src/types/types/websocket.d.ts +7 -0
  36. package/src/types/types/window.d.ts +31 -0
  37. package/src/types/types/workflows.d.ts +7 -0
@@ -185,6 +185,11 @@ export declare const Alteration: {
185
185
  readonly Tamper: "TAMPER";
186
186
  };
187
187
  export type Alteration = (typeof Alteration)[keyof typeof Alteration];
188
+ export type AnalyticStatus = {
189
+ cloud: Scalars["Boolean"]["output"];
190
+ enabled: Scalars["Boolean"]["output"];
191
+ local: Scalars["Boolean"]["output"];
192
+ };
188
193
  export declare const AssistantErrorReason: {
189
194
  readonly ContextExceeded: "CONTEXT_EXCEEDED";
190
195
  readonly InvalidModel: "INVALID_MODEL";
@@ -848,6 +853,15 @@ export type CreateTamperRulePayload = {
848
853
  error?: Maybe<CreateTamperRuleError>;
849
854
  rule?: Maybe<TamperRule>;
850
855
  };
856
+ export type CreateUpstreamPluginInput = {
857
+ allowlist: Array<Scalars["String"]["input"]>;
858
+ denylist: Array<Scalars["String"]["input"]>;
859
+ enabled: Scalars["Boolean"]["input"];
860
+ pluginId: Scalars["ID"]["input"];
861
+ };
862
+ export type CreateUpstreamPluginPayload = {
863
+ upstream?: Maybe<UpstreamPlugin>;
864
+ };
851
865
  export type CreateUpstreamProxyHttpInput = {
852
866
  allowlist: Array<Scalars["String"]["input"]>;
853
867
  auth?: InputMaybe<UpstreamProxyAuthInput>;
@@ -1016,6 +1030,9 @@ export type CreatedTamperRulePayload = {
1016
1030
  rule: TamperRule;
1017
1031
  snapshot: Scalars["Snapshot"]["output"];
1018
1032
  };
1033
+ export type CreatedUpstreamPluginPayload = {
1034
+ upstream: UpstreamPlugin;
1035
+ };
1019
1036
  export type CreatedUpstreamProxyHttpPayload = {
1020
1037
  proxy: UpstreamProxyHttp;
1021
1038
  };
@@ -1106,6 +1123,12 @@ export type DataExportTask = Task & {
1106
1123
  export: DataExport;
1107
1124
  id: Scalars["ID"]["output"];
1108
1125
  };
1126
+ export type DataImportResult = {
1127
+ errors: Array<Scalars["String"]["output"]>;
1128
+ id: Scalars["ID"]["output"];
1129
+ summary?: Maybe<DataImportSummary>;
1130
+ };
1131
+ export type DataImportSummary = FindingsSummary | TamperSummary;
1109
1132
  export type DeleteAssistantSessionPayload = {
1110
1133
  deletedId?: Maybe<Scalars["ID"]["output"]>;
1111
1134
  };
@@ -1197,6 +1220,9 @@ export type DeleteTamperRuleCollectionPayload = {
1197
1220
  export type DeleteTamperRulePayload = {
1198
1221
  deletedId?: Maybe<Scalars["ID"]["output"]>;
1199
1222
  };
1223
+ export type DeleteUpstreamPluginPayload = {
1224
+ deletedId?: Maybe<Scalars["ID"]["output"]>;
1225
+ };
1200
1226
  export type DeleteUpstreamProxyHttpPayload = {
1201
1227
  deletedId?: Maybe<Scalars["ID"]["output"]>;
1202
1228
  };
@@ -1295,6 +1321,9 @@ export type DeletedTamperRulePayload = {
1295
1321
  deletedRuleId: Scalars["ID"]["output"];
1296
1322
  snapshot: Scalars["Snapshot"]["output"];
1297
1323
  };
1324
+ export type DeletedUpstreamPluginPayload = {
1325
+ deletedUpstreamId: Scalars["ID"]["output"];
1326
+ };
1298
1327
  export type DeletedUpstreamProxyHttpPayload = {
1299
1328
  deletedProxyId: Scalars["ID"]["output"];
1300
1329
  };
@@ -1350,6 +1379,14 @@ export type ExportFindingsPayload = {
1350
1379
  error?: Maybe<ExportFindingsError>;
1351
1380
  export?: Maybe<DataExportOnDemand>;
1352
1381
  };
1382
+ export type ExportTamperError = OtherUserError | PermissionDeniedUserError;
1383
+ export type ExportTamperInput = {
1384
+ target: TamperExportScopeInput;
1385
+ };
1386
+ export type ExportTamperPayload = {
1387
+ error?: Maybe<ExportTamperError>;
1388
+ export?: Maybe<DataExportOnDemand>;
1389
+ };
1353
1390
  export type FilterClauseFindingInput = {
1354
1391
  reporter?: InputMaybe<Scalars["String"]["input"]>;
1355
1392
  };
@@ -1408,6 +1445,9 @@ export type FindingOrderInput = {
1408
1445
  by: FindingOrderBy;
1409
1446
  ordering: Ordering;
1410
1447
  };
1448
+ export type FindingsSummary = {
1449
+ findingsImported: Scalars["Int"]["output"];
1450
+ };
1411
1451
  export type FinishedBackupTaskCancelled = {
1412
1452
  taskId: Scalars["ID"]["output"];
1413
1453
  };
@@ -1468,7 +1508,6 @@ export type ForwardInterceptStreamWsMessageInput = {
1468
1508
  };
1469
1509
  export type GlobalConfig = {
1470
1510
  address: Scalars["String"]["output"];
1471
- onboarding: OnboardingState;
1472
1511
  project: GlobalConfigProject;
1473
1512
  };
1474
1513
  export type GlobalConfigProject = {
@@ -1521,6 +1560,19 @@ export type ImportCertificateInput = {
1521
1560
  export type ImportCertificatePayload = {
1522
1561
  error?: Maybe<ImportCertificateError>;
1523
1562
  };
1563
+ export type ImportDataInput = {
1564
+ findings: ImportFindingsInput;
1565
+ tamper?: never;
1566
+ } | {
1567
+ findings?: never;
1568
+ tamper: ImportTamperRuleInput;
1569
+ };
1570
+ export type ImportFindingsInput = {
1571
+ file: Scalars["Upload"]["input"];
1572
+ };
1573
+ export type ImportTamperRuleInput = {
1574
+ file: Scalars["Upload"]["input"];
1575
+ };
1524
1576
  export type InstallBrowserError = CloudUserError | OtherUserError | UnsupportedPlatformUserError;
1525
1577
  export type InstallBrowserPayload = {
1526
1578
  browser?: Maybe<Browser>;
@@ -1537,6 +1589,8 @@ export type InstallPluginPackagePayload = {
1537
1589
  };
1538
1590
  export type InstanceSettings = {
1539
1591
  aiProviders: AiProviders;
1592
+ analytic: AnalyticStatus;
1593
+ onboarding: OnboardingState;
1540
1594
  };
1541
1595
  export type InterceptEntry = {
1542
1596
  id: Scalars["ID"]["output"];
@@ -1731,6 +1785,7 @@ export type MutationRoot = {
1731
1785
  createSitemapEntries: CreateSitemapEntriesPayload;
1732
1786
  createTamperRule: CreateTamperRulePayload;
1733
1787
  createTamperRuleCollection: CreateTamperRuleCollectionPayload;
1788
+ createUpstreamPlugin: CreateUpstreamPluginPayload;
1734
1789
  createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
1735
1790
  createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
1736
1791
  createWorkflow: CreateWorkflowPayload;
@@ -1755,16 +1810,19 @@ export type MutationRoot = {
1755
1810
  deleteSitemapEntries: DeleteSitemapEntriesPayload;
1756
1811
  deleteTamperRule: DeleteTamperRulePayload;
1757
1812
  deleteTamperRuleCollection: DeleteTamperRuleCollectionPayload;
1813
+ deleteUpstreamPlugin: DeleteUpstreamPluginPayload;
1758
1814
  deleteUpstreamProxyHttp: DeleteUpstreamProxyHttpPayload;
1759
1815
  deleteUpstreamProxySocks: DeleteUpstreamProxySocksPayload;
1760
1816
  deleteWorkflow: DeleteWorkflowPayload;
1761
1817
  dropInterceptMessage: DropInterceptMessagePayload;
1762
1818
  duplicateAutomateSession: DuplicateAutomateSessionPayload;
1763
1819
  exportFindings: ExportFindingsPayload;
1820
+ exportTamper: ExportTamperPayload;
1764
1821
  forwardInterceptMessage: ForwardInterceptMessagePayload;
1765
1822
  globalizeWorkflow: GlobalizeWorkflowPayload;
1766
1823
  hideFindings: HideFindingsPayload;
1767
1824
  importCertificate: ImportCertificatePayload;
1825
+ importData: DataImportResult;
1768
1826
  installBrowser: InstallBrowserPayload;
1769
1827
  installPluginPackage: InstallPluginPackagePayload;
1770
1828
  localizeWorkflow: LocalizeWorkflowPayload;
@@ -1777,6 +1835,7 @@ export type MutationRoot = {
1777
1835
  persistProject: PersistProjectPayload;
1778
1836
  rankDnsRewrite: RankDnsRewritePayload;
1779
1837
  rankTamperRule: RankTamperRulePayload;
1838
+ rankUpstreamPlugin: RankUpstreamPluginPayload;
1780
1839
  rankUpstreamProxyHttp: RankUpstreamProxyHttpPayload;
1781
1840
  rankUpstreamProxySocks: RankUpstreamProxySocksPayload;
1782
1841
  refreshAuthenticationToken: RefreshAuthenticationTokenPayload;
@@ -1805,7 +1864,6 @@ export type MutationRoot = {
1805
1864
  sendAssistantMessage: SendAssistantMessagePayload;
1806
1865
  /** @deprecated Remove usage, no replacement */
1807
1866
  setActiveReplaySessionEntry: SetActiveReplaySessionEntryPayload;
1808
- setGlobalConfigOnboarding: SetConfigOnboardingPayload;
1809
1867
  setGlobalConfigPort: SetConfigPortPayload;
1810
1868
  setGlobalConfigProject: SetConfigProjectPayload;
1811
1869
  setInstanceSettings: SetInstanceSettingsPayload;
@@ -1826,9 +1884,11 @@ export type MutationRoot = {
1826
1884
  toggleDnsRewrite: ToggleDnsRewritePayload;
1827
1885
  togglePlugin: TogglePluginPayload;
1828
1886
  toggleTamperRule: ToggleTamperRulePayload;
1887
+ toggleUpstreamPlugin: ToggleUpstreamPluginPayload;
1829
1888
  toggleUpstreamProxyHttp: ToggleUpstreamProxyHttpPayload;
1830
1889
  toggleUpstreamProxySocks: ToggleUpstreamProxySocksPayload;
1831
1890
  toggleWorkflow: ToggleWorkflowPayload;
1891
+ track: TrackPayload;
1832
1892
  uninstallPluginPackage: UninstallPluginPackagePayload;
1833
1893
  updateAutomateSession: UpdateAutomateSessionPayload;
1834
1894
  updateBrowser: UpdateBrowserPayload;
@@ -1840,6 +1900,7 @@ export type MutationRoot = {
1840
1900
  updateRequestMetadata: UpdateRequestMetadataPayload;
1841
1901
  updateScope: UpdateScopePayload;
1842
1902
  updateTamperRule: UpdateTamperRulePayload;
1903
+ updateUpstreamPlugin: UpdateUpstreamPluginPayload;
1843
1904
  updateUpstreamProxyHttp: UpdateUpstreamProxyHttpPayload;
1844
1905
  updateUpstreamProxySocks: UpdateUpstreamProxySocksPayload;
1845
1906
  updateViewerSettings: UpdateViewerSettingsPayload;
@@ -1904,6 +1965,9 @@ export type MutationRootCreateTamperRuleArgs = {
1904
1965
  export type MutationRootCreateTamperRuleCollectionArgs = {
1905
1966
  input: CreateTamperRuleCollectionInput;
1906
1967
  };
1968
+ export type MutationRootCreateUpstreamPluginArgs = {
1969
+ input: CreateUpstreamPluginInput;
1970
+ };
1907
1971
  export type MutationRootCreateUpstreamProxyHttpArgs = {
1908
1972
  input: CreateUpstreamProxyHttpInput;
1909
1973
  };
@@ -1974,6 +2038,9 @@ export type MutationRootDeleteTamperRuleArgs = {
1974
2038
  export type MutationRootDeleteTamperRuleCollectionArgs = {
1975
2039
  id: Scalars["ID"]["input"];
1976
2040
  };
2041
+ export type MutationRootDeleteUpstreamPluginArgs = {
2042
+ id: Scalars["ID"]["input"];
2043
+ };
1977
2044
  export type MutationRootDeleteUpstreamProxyHttpArgs = {
1978
2045
  id: Scalars["ID"]["input"];
1979
2046
  };
@@ -1992,6 +2059,9 @@ export type MutationRootDuplicateAutomateSessionArgs = {
1992
2059
  export type MutationRootExportFindingsArgs = {
1993
2060
  input: ExportFindingsInput;
1994
2061
  };
2062
+ export type MutationRootExportTamperArgs = {
2063
+ input: ExportTamperInput;
2064
+ };
1995
2065
  export type MutationRootForwardInterceptMessageArgs = {
1996
2066
  id: Scalars["ID"]["input"];
1997
2067
  input?: InputMaybe<ForwardInterceptMessageInput>;
@@ -2005,6 +2075,9 @@ export type MutationRootHideFindingsArgs = {
2005
2075
  export type MutationRootImportCertificateArgs = {
2006
2076
  input: ImportCertificateInput;
2007
2077
  };
2078
+ export type MutationRootImportDataArgs = {
2079
+ input: ImportDataInput;
2080
+ };
2008
2081
  export type MutationRootInstallPluginPackageArgs = {
2009
2082
  input: InstallPluginPackageInput;
2010
2083
  };
@@ -2033,6 +2106,10 @@ export type MutationRootRankTamperRuleArgs = {
2033
2106
  id: Scalars["ID"]["input"];
2034
2107
  input: RankTamperRuleInput;
2035
2108
  };
2109
+ export type MutationRootRankUpstreamPluginArgs = {
2110
+ id: Scalars["ID"]["input"];
2111
+ input: RankInput;
2112
+ };
2036
2113
  export type MutationRootRankUpstreamProxyHttpArgs = {
2037
2114
  id: Scalars["ID"]["input"];
2038
2115
  input: RankInput;
@@ -2128,9 +2205,6 @@ export type MutationRootSetActiveReplaySessionEntryArgs = {
2128
2205
  entryId: Scalars["ID"]["input"];
2129
2206
  id: Scalars["ID"]["input"];
2130
2207
  };
2131
- export type MutationRootSetGlobalConfigOnboardingArgs = {
2132
- input: SetConfigOnboardingInput;
2133
- };
2134
2208
  export type MutationRootSetGlobalConfigPortArgs = {
2135
2209
  input: Scalars["Int"]["input"];
2136
2210
  };
@@ -2193,6 +2267,10 @@ export type MutationRootToggleTamperRuleArgs = {
2193
2267
  enabled: Scalars["Boolean"]["input"];
2194
2268
  id: Scalars["ID"]["input"];
2195
2269
  };
2270
+ export type MutationRootToggleUpstreamPluginArgs = {
2271
+ enabled: Scalars["Boolean"]["input"];
2272
+ id: Scalars["ID"]["input"];
2273
+ };
2196
2274
  export type MutationRootToggleUpstreamProxyHttpArgs = {
2197
2275
  enabled: Scalars["Boolean"]["input"];
2198
2276
  id: Scalars["ID"]["input"];
@@ -2205,6 +2283,9 @@ export type MutationRootToggleWorkflowArgs = {
2205
2283
  enabled: Scalars["Boolean"]["input"];
2206
2284
  id: Scalars["ID"]["input"];
2207
2285
  };
2286
+ export type MutationRootTrackArgs = {
2287
+ input: TrackInput;
2288
+ };
2208
2289
  export type MutationRootUninstallPluginPackageArgs = {
2209
2290
  id: Scalars["ID"]["input"];
2210
2291
  };
@@ -2244,6 +2325,10 @@ export type MutationRootUpdateTamperRuleArgs = {
2244
2325
  id: Scalars["ID"]["input"];
2245
2326
  input: UpdateTamperRuleInput;
2246
2327
  };
2328
+ export type MutationRootUpdateUpstreamPluginArgs = {
2329
+ id: Scalars["ID"]["input"];
2330
+ input: UpdateUpstreamPluginInput;
2331
+ };
2247
2332
  export type MutationRootUpdateUpstreamProxyHttpArgs = {
2248
2333
  id: Scalars["ID"]["input"];
2249
2334
  input: UpdateUpstreamProxyHttpInput;
@@ -2271,9 +2356,7 @@ export type NewerVersionUserError = UserError & {
2271
2356
  version: Scalars["Int"]["output"];
2272
2357
  };
2273
2358
  export type OnboardingState = {
2274
- caCertificate: Scalars["Boolean"]["output"];
2275
- license: Scalars["Boolean"]["output"];
2276
- project: Scalars["Boolean"]["output"];
2359
+ analytic: Scalars["Boolean"]["output"];
2277
2360
  };
2278
2361
  export declare const Ordering: {
2279
2362
  readonly Asc: "ASC";
@@ -2519,6 +2602,7 @@ export type QueryRoot = {
2519
2602
  tamperRuleCollection?: Maybe<TamperRuleCollection>;
2520
2603
  tamperRuleCollections: Array<TamperRuleCollection>;
2521
2604
  tasks: Array<Task>;
2605
+ upstreamPlugins: Array<UpstreamPlugin>;
2522
2606
  upstreamProxiesHttp: Array<UpstreamProxyHttp>;
2523
2607
  upstreamProxiesSocks: Array<UpstreamProxySocks>;
2524
2608
  viewer: User;
@@ -2745,6 +2829,9 @@ export type RankTamperRulePayload = {
2745
2829
  error?: Maybe<RankTamperRuleError>;
2746
2830
  rule?: Maybe<TamperRule>;
2747
2831
  };
2832
+ export type RankUpstreamPluginPayload = {
2833
+ upstream?: Maybe<UpstreamPlugin>;
2834
+ };
2748
2835
  export type RankUpstreamProxyHttpPayload = {
2749
2836
  proxy?: Maybe<UpstreamProxyHttp>;
2750
2837
  };
@@ -3197,14 +3284,6 @@ export type SendAssistantMessagePayload = {
3197
3284
  export type SetActiveReplaySessionEntryPayload = {
3198
3285
  session?: Maybe<ReplaySession>;
3199
3286
  };
3200
- export type SetConfigOnboardingInput = {
3201
- caCertificate: Scalars["Boolean"]["input"];
3202
- license: Scalars["Boolean"]["input"];
3203
- project: Scalars["Boolean"]["input"];
3204
- };
3205
- export type SetConfigOnboardingPayload = {
3206
- config: GlobalConfig;
3207
- };
3208
3287
  export type SetConfigPortPayload = {
3209
3288
  config: GlobalConfig;
3210
3289
  };
@@ -3217,6 +3296,16 @@ export type SetConfigProjectPayload = {
3217
3296
  };
3218
3297
  export type SetInstanceSettingsInput = {
3219
3298
  aiProvider: SettingsAiProviderInput;
3299
+ analytics?: never;
3300
+ onboarding?: never;
3301
+ } | {
3302
+ aiProvider?: never;
3303
+ analytics: SettingsAnalyticInput;
3304
+ onboarding?: never;
3305
+ } | {
3306
+ aiProvider?: never;
3307
+ analytics?: never;
3308
+ onboarding: SettingsOnboardingInput;
3220
3309
  };
3221
3310
  export type SetInstanceSettingsPayload = {
3222
3311
  settings: InstanceSettings;
@@ -3253,6 +3342,12 @@ export type SettingsAiProviderInput = {
3253
3342
  openai?: never;
3254
3343
  openrouter: AiProviderOpenRouterInput;
3255
3344
  };
3345
+ export type SettingsAnalyticInput = {
3346
+ enabled: Scalars["Boolean"]["input"];
3347
+ };
3348
+ export type SettingsOnboardingInput = {
3349
+ analytic: Scalars["Boolean"]["input"];
3350
+ };
3256
3351
  export declare const SitemapDescendantsDepth: {
3257
3352
  readonly All: "ALL";
3258
3353
  readonly Direct: "DIRECT";
@@ -3307,6 +3402,7 @@ export type SitemapEntryMetadataDomain = {
3307
3402
  };
3308
3403
  export declare const Source: {
3309
3404
  readonly Automate: "AUTOMATE";
3405
+ readonly Import: "IMPORT";
3310
3406
  readonly Intercept: "INTERCEPT";
3311
3407
  readonly Plugin: "PLUGIN";
3312
3408
  readonly Replay: "REPLAY";
@@ -3518,6 +3614,7 @@ export type SubscriptionRoot = {
3518
3614
  createdStreamWsMessage: CreatedStreamWsMessagePayload;
3519
3615
  createdTamperRule: CreatedTamperRulePayload;
3520
3616
  createdTamperRuleCollection: CreatedTamperRuleCollectionPayload;
3617
+ createdUpstreamPlugin: CreatedUpstreamPluginPayload;
3521
3618
  createdUpstreamProxyHttp: CreatedUpstreamProxyHttpPayload;
3522
3619
  createdUpstreamProxySocks: CreatedUpstreamProxySocksPayload;
3523
3620
  createdWorkflow: CreatedWorkflowPayload;
@@ -3544,6 +3641,7 @@ export type SubscriptionRoot = {
3544
3641
  deletedSitemapEntry: DeletedSitemapEntriesPayload;
3545
3642
  deletedTamperRule: DeletedTamperRulePayload;
3546
3643
  deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
3644
+ deletedUpstreamPlugin: DeletedUpstreamPluginPayload;
3547
3645
  deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
3548
3646
  deletedUpstreamProxySocks: DeletedUpstreamProxySocksPayload;
3549
3647
  deletedWorkflow: DeletedWorkflowPayload;
@@ -3590,6 +3688,7 @@ export type SubscriptionRoot = {
3590
3688
  updatedStreamWsMessage: UpdatedStreamWsMessagePayload;
3591
3689
  updatedTamperRule: UpdatedTamperRulePayload;
3592
3690
  updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload;
3691
+ updatedUpstreamPlugin: UpdatedUpstreamPluginPayload;
3593
3692
  updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
3594
3693
  updatedUpstreamProxySocks: UpdatedUpstreamProxySocksPayload;
3595
3694
  updatedViewerAssistantUsage: UpdatedViewerAssistantUsagePayload;
@@ -3633,6 +3732,13 @@ export type SubscriptionRootUpdatedRequestArgs = {
3633
3732
  export type SubscriptionRootUpdatedSitemapEntryArgs = {
3634
3733
  scopeId?: InputMaybe<Scalars["ID"]["input"]>;
3635
3734
  };
3735
+ export type TamperExportScopeInput = {
3736
+ collections: Array<Scalars["ID"]["input"]>;
3737
+ rules?: never;
3738
+ } | {
3739
+ collections?: never;
3740
+ rules: Array<Scalars["ID"]["input"]>;
3741
+ };
3636
3742
  export type TamperMatcherFull = {
3637
3743
  full: Scalars["Boolean"]["output"];
3638
3744
  };
@@ -4159,6 +4265,10 @@ export type TamperSectionResponseStatusCode = {
4159
4265
  export type TamperSectionResponseStatusCodeInput = {
4160
4266
  operation: TamperOperationStatusCodeInput;
4161
4267
  };
4268
+ export type TamperSummary = {
4269
+ collectionsCreated: Scalars["Int"]["output"];
4270
+ rulesImported: Scalars["Int"]["output"];
4271
+ };
4162
4272
  export type Task = {
4163
4273
  createdAt: Scalars["DateTime"]["output"];
4164
4274
  id: Scalars["ID"]["output"];
@@ -4266,6 +4376,9 @@ export type ToggleTamperRulePayload = {
4266
4376
  error?: Maybe<ToggleTamperRuleError>;
4267
4377
  rule?: Maybe<TamperRule>;
4268
4378
  };
4379
+ export type ToggleUpstreamPluginPayload = {
4380
+ upstream?: Maybe<UpstreamPlugin>;
4381
+ };
4269
4382
  export type ToggleUpstreamProxyHttpPayload = {
4270
4383
  proxy?: Maybe<UpstreamProxyHttp>;
4271
4384
  };
@@ -4277,6 +4390,14 @@ export type ToggleWorkflowPayload = {
4277
4390
  error?: Maybe<ToggleWorkflowError>;
4278
4391
  workflow?: Maybe<Workflow>;
4279
4392
  };
4393
+ export type TrackInput = {
4394
+ createdAt: Scalars["Timestamp"]["input"];
4395
+ name: Scalars["String"]["input"];
4396
+ value: Scalars["JsonObject"]["input"];
4397
+ };
4398
+ export type TrackPayload = {
4399
+ success: Scalars["Boolean"]["output"];
4400
+ };
4280
4401
  export type UninstallPluginPackageError = OtherUserError | UnknownIdUserError;
4281
4402
  export type UninstallPluginPackagePayload = {
4282
4403
  deletedId?: Maybe<Scalars["ID"]["output"]>;
@@ -4371,14 +4492,23 @@ export type UpdateScopePayload = {
4371
4492
  export type UpdateTamperRuleError = InvalidHttpqlUserError | InvalidRegexUserError | OtherUserError | UnknownIdUserError;
4372
4493
  export type UpdateTamperRuleInput = {
4373
4494
  condition?: InputMaybe<Scalars["HTTPQL"]["input"]>;
4374
- name?: InputMaybe<Scalars["String"]["input"]>;
4375
- section?: InputMaybe<TamperSectionInput>;
4376
- sources?: InputMaybe<Array<Source>>;
4495
+ name: Scalars["String"]["input"];
4496
+ section: TamperSectionInput;
4497
+ sources: Array<Source>;
4377
4498
  };
4378
4499
  export type UpdateTamperRulePayload = {
4379
4500
  error?: Maybe<UpdateTamperRuleError>;
4380
4501
  rule?: Maybe<TamperRule>;
4381
4502
  };
4503
+ export type UpdateUpstreamPluginInput = {
4504
+ allowlist: Array<Scalars["String"]["input"]>;
4505
+ denylist: Array<Scalars["String"]["input"]>;
4506
+ enabled: Scalars["Boolean"]["input"];
4507
+ pluginId: Scalars["ID"]["input"];
4508
+ };
4509
+ export type UpdateUpstreamPluginPayload = {
4510
+ upstream?: Maybe<UpstreamPlugin>;
4511
+ };
4382
4512
  export type UpdateUpstreamProxyHttpInput = {
4383
4513
  allowlist: Array<Scalars["String"]["input"]>;
4384
4514
  auth?: InputMaybe<UpstreamProxyAuthInput>;
@@ -4553,6 +4683,9 @@ export type UpdatedTamperRulePayload = {
4553
4683
  rule: TamperRule;
4554
4684
  snapshot: Scalars["Snapshot"]["output"];
4555
4685
  };
4686
+ export type UpdatedUpstreamPluginPayload = {
4687
+ upstream: UpstreamPlugin;
4688
+ };
4556
4689
  export type UpdatedUpstreamProxyHttpPayload = {
4557
4690
  proxy: UpstreamProxyHttp;
4558
4691
  };
@@ -4584,6 +4717,14 @@ export type UploadedBrowserPayload = {
4584
4717
  export type UploadedHostedFilePayload = {
4585
4718
  hostedFile: HostedFile;
4586
4719
  };
4720
+ export type UpstreamPlugin = {
4721
+ allowlist: Array<Scalars["String"]["output"]>;
4722
+ denylist: Array<Scalars["String"]["output"]>;
4723
+ enabled: Scalars["Boolean"]["output"];
4724
+ id: Scalars["ID"]["output"];
4725
+ plugin: PluginBackend;
4726
+ rank: Scalars["Rank"]["output"];
4727
+ };
4587
4728
  export type UpstreamProxyAuth = UpstreamProxyAuthBasic;
4588
4729
  export type UpstreamProxyAuthBasic = {
4589
4730
  password: Scalars["Sensitive"]["output"];
@@ -4692,6 +4833,14 @@ export type Workspace = {
4692
4833
  id: Scalars["ID"]["output"];
4693
4834
  name: Scalars["String"]["output"];
4694
4835
  };
4836
+ export type TrackMutationVariables = Exact<{
4837
+ input: TrackInput;
4838
+ }>;
4839
+ export type TrackMutation = {
4840
+ track: {
4841
+ success: boolean;
4842
+ };
4843
+ };
4695
4844
  export type AssistantMessageFullFragment = {
4696
4845
  __typename: "AssistantMessage";
4697
4846
  id: string;
@@ -7817,32 +7966,11 @@ export type UpdatedBrowserSubscription = {
7817
7966
  };
7818
7967
  };
7819
7968
  };
7820
- export type OnboardingFullFragment = {
7821
- __typename: "OnboardingState";
7822
- caCertificate: boolean;
7823
- license: boolean;
7824
- project: boolean;
7825
- };
7826
7969
  export type GlobalConfigProjectFullFragment = {
7827
7970
  __typename: "GlobalConfigProject";
7828
7971
  selectOnStart: ProjectSelectOnStart;
7829
7972
  selectProjectId?: string | undefined | null;
7830
7973
  };
7831
- export type UpdateOnboardingMutationVariables = Exact<{
7832
- input: SetConfigOnboardingInput;
7833
- }>;
7834
- export type UpdateOnboardingMutation = {
7835
- setGlobalConfigOnboarding: {
7836
- config: {
7837
- onboarding: {
7838
- __typename: "OnboardingState";
7839
- caCertificate: boolean;
7840
- license: boolean;
7841
- project: boolean;
7842
- };
7843
- };
7844
- };
7845
- };
7846
7974
  export type UpdateGlobalConfigProjectMutationVariables = Exact<{
7847
7975
  input: SetConfigProjectInput;
7848
7976
  }>;
@@ -7863,12 +7991,6 @@ export type GlobalConfigQueryVariables = Exact<{
7863
7991
  export type GlobalConfigQuery = {
7864
7992
  globalConfig: {
7865
7993
  address: string;
7866
- onboarding: {
7867
- __typename: "OnboardingState";
7868
- caCertificate: boolean;
7869
- license: boolean;
7870
- project: boolean;
7871
- };
7872
7994
  project: {
7873
7995
  __typename: "GlobalConfigProject";
7874
7996
  selectOnStart: ProjectSelectOnStart;
@@ -10383,6 +10505,16 @@ export type InstanceSettingsFullFragment = {
10383
10505
  apiKey: string;
10384
10506
  } | undefined | null;
10385
10507
  };
10508
+ onboarding: {
10509
+ __typename: "OnboardingState";
10510
+ analytic: boolean;
10511
+ };
10512
+ analytic: {
10513
+ __typename: "AnalyticStatus";
10514
+ enabled: boolean;
10515
+ local: boolean;
10516
+ cloud: boolean;
10517
+ };
10386
10518
  };
10387
10519
  export type TestAiProviderPayloadFullFragment = {
10388
10520
  success?: boolean | undefined | null;
@@ -10416,6 +10548,16 @@ export type SetInstanceSettingsMutation = {
10416
10548
  apiKey: string;
10417
10549
  } | undefined | null;
10418
10550
  };
10551
+ onboarding: {
10552
+ __typename: "OnboardingState";
10553
+ analytic: boolean;
10554
+ };
10555
+ analytic: {
10556
+ __typename: "AnalyticStatus";
10557
+ enabled: boolean;
10558
+ local: boolean;
10559
+ cloud: boolean;
10560
+ };
10419
10561
  };
10420
10562
  };
10421
10563
  };
@@ -10455,6 +10597,16 @@ export type InstanceSettingsQuery = {
10455
10597
  apiKey: string;
10456
10598
  } | undefined | null;
10457
10599
  };
10600
+ onboarding: {
10601
+ __typename: "OnboardingState";
10602
+ analytic: boolean;
10603
+ };
10604
+ analytic: {
10605
+ __typename: "AnalyticStatus";
10606
+ enabled: boolean;
10607
+ local: boolean;
10608
+ cloud: boolean;
10609
+ };
10458
10610
  };
10459
10611
  };
10460
10612
  export type UpdatedInstanceSettingsSubscriptionVariables = Exact<{
@@ -10479,6 +10631,16 @@ export type UpdatedInstanceSettingsSubscription = {
10479
10631
  apiKey: string;
10480
10632
  } | undefined | null;
10481
10633
  };
10634
+ onboarding: {
10635
+ __typename: "OnboardingState";
10636
+ analytic: boolean;
10637
+ };
10638
+ analytic: {
10639
+ __typename: "AnalyticStatus";
10640
+ enabled: boolean;
10641
+ local: boolean;
10642
+ cloud: boolean;
10643
+ };
10482
10644
  };
10483
10645
  };
10484
10646
  };
@@ -16283,146 +16445,914 @@ export type MoveTamperRuleMutation = {
16283
16445
  } | undefined | null;
16284
16446
  };
16285
16447
  };
16286
- export type PageInfoFullFragment = {
16287
- __typename: "PageInfo";
16288
- hasPreviousPage: boolean;
16289
- hasNextPage: boolean;
16290
- startCursor?: string | undefined | null;
16291
- endCursor?: string | undefined | null;
16292
- };
16293
- export type CountFullFragment = {
16294
- __typename: "Count";
16295
- value: number;
16296
- snapshot: number;
16297
- };
16298
- type PluginMeta_PluginBackend_Fragment = {
16299
- __typename: "PluginBackend";
16300
- id: string;
16301
- name?: string | undefined | null;
16302
- enabled: boolean;
16303
- manifestId: string;
16304
- package: {
16305
- id: string;
16306
- };
16307
- };
16308
- type PluginMeta_PluginFrontend_Fragment = {
16309
- __typename: "PluginFrontend";
16310
- id: string;
16311
- name?: string | undefined | null;
16312
- enabled: boolean;
16313
- manifestId: string;
16314
- package: {
16315
- id: string;
16316
- };
16317
- };
16318
- type PluginMeta_PluginWorkflow_Fragment = {
16319
- __typename: "PluginWorkflow";
16320
- id: string;
16321
- name?: string | undefined | null;
16322
- enabled: boolean;
16323
- manifestId: string;
16324
- package: {
16325
- id: string;
16326
- };
16327
- };
16328
- export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment | PluginMeta_PluginWorkflow_Fragment;
16329
- export type PluginBackendMetaFragment = {
16330
- __typename: "PluginBackend";
16331
- id: string;
16332
- };
16333
- export type PluginBackendFullFragment = {
16334
- __typename: "PluginBackend";
16335
- runtime: PluginRuntime;
16336
- id: string;
16337
- name?: string | undefined | null;
16338
- enabled: boolean;
16339
- manifestId: string;
16340
- state: {
16341
- error?: string | undefined | null;
16342
- running: boolean;
16343
- };
16344
- package: {
16345
- id: string;
16346
- };
16347
- };
16348
- export type PluginFrontendFullFragment = {
16349
- __typename: "PluginFrontend";
16350
- entrypoint?: string | undefined | null;
16351
- style?: string | undefined | null;
16352
- data?: unknown | undefined | null;
16353
- id: string;
16354
- name?: string | undefined | null;
16355
- enabled: boolean;
16356
- manifestId: string;
16357
- backend?: {
16358
- __typename: "PluginBackend";
16359
- id: string;
16360
- } | undefined | null;
16361
- package: {
16362
- id: string;
16448
+ export type ExportTamperMutationVariables = Exact<{
16449
+ input: ExportTamperInput;
16450
+ }>;
16451
+ export type ExportTamperMutation = {
16452
+ exportTamper: {
16453
+ export?: {
16454
+ downloadUri: string;
16455
+ id: string;
16456
+ } | undefined | null;
16457
+ error?: {
16458
+ __typename: "OtherUserError";
16459
+ code: string;
16460
+ } | {
16461
+ __typename: "PermissionDeniedUserError";
16462
+ code: string;
16463
+ permissionDeniedReason: PermissionDeniedErrorReason;
16464
+ } | undefined | null;
16363
16465
  };
16364
16466
  };
16365
- export type PluginWorkflowFullFragment = {
16366
- __typename: "PluginWorkflow";
16367
- name?: string | undefined | null;
16368
- id: string;
16369
- enabled: boolean;
16370
- manifestId: string;
16371
- workflow?: {
16372
- __typename: "Workflow";
16373
- id: string;
16374
- kind: WorkflowKind;
16375
- name: string;
16376
- enabled: boolean;
16377
- global: boolean;
16378
- readOnly: boolean;
16379
- } | undefined | null;
16380
- package: {
16467
+ export type ImportTamperMutationVariables = Exact<{
16468
+ input: ImportTamperRuleInput;
16469
+ }>;
16470
+ export type ImportTamperMutation = {
16471
+ importData: {
16381
16472
  id: string;
16473
+ errors: Array<string>;
16474
+ summary?: {
16475
+ collectionsCreated: number;
16476
+ rulesImported: number;
16477
+ } | {} | undefined | null;
16382
16478
  };
16383
16479
  };
16384
- export type PluginAuthorFullFragment = {
16385
- name?: string | undefined | null;
16386
- email?: string | undefined | null;
16387
- url?: string | undefined | null;
16388
- };
16389
- export type PluginLinksFullFragment = {
16390
- sponsor?: string | undefined | null;
16391
- };
16392
- export type PluginPackageMetaFragment = {
16393
- id: string;
16394
- name?: string | undefined | null;
16395
- description?: string | undefined | null;
16396
- version: string;
16397
- installedAt: Date;
16398
- manifestId: string;
16399
- author?: {
16400
- name?: string | undefined | null;
16401
- email?: string | undefined | null;
16402
- url?: string | undefined | null;
16403
- } | undefined | null;
16404
- links?: {
16405
- sponsor?: string | undefined | null;
16406
- } | undefined | null;
16407
- };
16408
- export type PluginPackageFullFragment = {
16409
- id: string;
16410
- name?: string | undefined | null;
16411
- description?: string | undefined | null;
16412
- version: string;
16413
- installedAt: Date;
16414
- manifestId: string;
16415
- plugins: Array<{
16416
- __typename: "PluginBackend";
16417
- runtime: PluginRuntime;
16418
- id: string;
16419
- name?: string | undefined | null;
16420
- enabled: boolean;
16421
- manifestId: string;
16422
- state: {
16423
- error?: string | undefined | null;
16424
- running: boolean;
16425
- };
16480
+ export type CreatedTamperRuleCollectionSubscriptionVariables = Exact<{
16481
+ [key: string]: never;
16482
+ }>;
16483
+ export type CreatedTamperRuleCollectionSubscription = {
16484
+ createdTamperRuleCollection: {
16485
+ snapshot: number;
16486
+ collectionEdge: {
16487
+ cursor: string;
16488
+ node: {
16489
+ __typename: "TamperRuleCollection";
16490
+ id: string;
16491
+ name: string;
16492
+ rules: Array<{
16493
+ __typename: "TamperRule";
16494
+ id: string;
16495
+ name: string;
16496
+ condition?: string | undefined | null;
16497
+ sources: Array<Source>;
16498
+ section: {
16499
+ __typename: "TamperSectionRequestAll";
16500
+ operation: {
16501
+ __typename: "TamperOperationAllRaw";
16502
+ matcher: {
16503
+ __typename: "TamperMatcherFull";
16504
+ } | {
16505
+ __typename: "TamperMatcherRegex";
16506
+ regex: string;
16507
+ } | {
16508
+ __typename: "TamperMatcherValue";
16509
+ value: string;
16510
+ };
16511
+ replacer: {
16512
+ __typename: "TamperReplacerTerm";
16513
+ term: string;
16514
+ } | {
16515
+ __typename: "TamperReplacerWorkflow";
16516
+ id: string;
16517
+ };
16518
+ };
16519
+ } | {
16520
+ __typename: "TamperSectionRequestBody";
16521
+ operation: {
16522
+ __typename: "TamperOperationBodyRaw";
16523
+ matcher: {
16524
+ __typename: "TamperMatcherFull";
16525
+ } | {
16526
+ __typename: "TamperMatcherRegex";
16527
+ regex: string;
16528
+ } | {
16529
+ __typename: "TamperMatcherValue";
16530
+ value: string;
16531
+ };
16532
+ replacer: {
16533
+ __typename: "TamperReplacerTerm";
16534
+ term: string;
16535
+ } | {
16536
+ __typename: "TamperReplacerWorkflow";
16537
+ id: string;
16538
+ };
16539
+ };
16540
+ } | {
16541
+ __typename: "TamperSectionRequestFirstLine";
16542
+ operation: {
16543
+ __typename: "TamperOperationFirstLineRaw";
16544
+ matcher: {
16545
+ __typename: "TamperMatcherFull";
16546
+ } | {
16547
+ __typename: "TamperMatcherRegex";
16548
+ regex: string;
16549
+ } | {
16550
+ __typename: "TamperMatcherValue";
16551
+ value: string;
16552
+ };
16553
+ replacer: {
16554
+ __typename: "TamperReplacerTerm";
16555
+ term: string;
16556
+ } | {
16557
+ __typename: "TamperReplacerWorkflow";
16558
+ id: string;
16559
+ };
16560
+ };
16561
+ } | {
16562
+ __typename: "TamperSectionRequestHeader";
16563
+ operation: {
16564
+ __typename: "TamperOperationHeaderAdd";
16565
+ matcher: {
16566
+ __typename: "TamperMatcherName";
16567
+ name: string;
16568
+ };
16569
+ replacer: {
16570
+ __typename: "TamperReplacerTerm";
16571
+ term: string;
16572
+ } | {
16573
+ __typename: "TamperReplacerWorkflow";
16574
+ id: string;
16575
+ };
16576
+ } | {
16577
+ __typename: "TamperOperationHeaderRaw";
16578
+ matcher: {
16579
+ __typename: "TamperMatcherFull";
16580
+ } | {
16581
+ __typename: "TamperMatcherRegex";
16582
+ regex: string;
16583
+ } | {
16584
+ __typename: "TamperMatcherValue";
16585
+ value: string;
16586
+ };
16587
+ replacer: {
16588
+ __typename: "TamperReplacerTerm";
16589
+ term: string;
16590
+ } | {
16591
+ __typename: "TamperReplacerWorkflow";
16592
+ id: string;
16593
+ };
16594
+ } | {
16595
+ __typename: "TamperOperationHeaderRemove";
16596
+ matcher: {
16597
+ __typename: "TamperMatcherName";
16598
+ name: string;
16599
+ };
16600
+ } | {
16601
+ __typename: "TamperOperationHeaderUpdate";
16602
+ matcher: {
16603
+ __typename: "TamperMatcherName";
16604
+ name: string;
16605
+ };
16606
+ replacer: {
16607
+ __typename: "TamperReplacerTerm";
16608
+ term: string;
16609
+ } | {
16610
+ __typename: "TamperReplacerWorkflow";
16611
+ id: string;
16612
+ };
16613
+ };
16614
+ } | {
16615
+ __typename: "TamperSectionRequestMethod";
16616
+ operation: {
16617
+ __typename: "TamperOperationMethodUpdate";
16618
+ replacer: {
16619
+ __typename: "TamperReplacerTerm";
16620
+ term: string;
16621
+ } | {
16622
+ __typename: "TamperReplacerWorkflow";
16623
+ id: string;
16624
+ };
16625
+ };
16626
+ } | {
16627
+ __typename: "TamperSectionRequestPath";
16628
+ operation: {
16629
+ __typename: "TamperOperationPathRaw";
16630
+ matcher: {
16631
+ __typename: "TamperMatcherFull";
16632
+ } | {
16633
+ __typename: "TamperMatcherRegex";
16634
+ regex: string;
16635
+ } | {
16636
+ __typename: "TamperMatcherValue";
16637
+ value: string;
16638
+ };
16639
+ replacer: {
16640
+ __typename: "TamperReplacerTerm";
16641
+ term: string;
16642
+ } | {
16643
+ __typename: "TamperReplacerWorkflow";
16644
+ id: string;
16645
+ };
16646
+ };
16647
+ } | {
16648
+ __typename: "TamperSectionRequestQuery";
16649
+ operation: {
16650
+ __typename: "TamperOperationQueryAdd";
16651
+ matcher: {
16652
+ __typename: "TamperMatcherName";
16653
+ name: string;
16654
+ };
16655
+ replacer: {
16656
+ __typename: "TamperReplacerTerm";
16657
+ term: string;
16658
+ } | {
16659
+ __typename: "TamperReplacerWorkflow";
16660
+ id: string;
16661
+ };
16662
+ } | {
16663
+ __typename: "TamperOperationQueryRaw";
16664
+ matcher: {
16665
+ __typename: "TamperMatcherFull";
16666
+ } | {
16667
+ __typename: "TamperMatcherRegex";
16668
+ regex: string;
16669
+ } | {
16670
+ __typename: "TamperMatcherValue";
16671
+ value: string;
16672
+ };
16673
+ replacer: {
16674
+ __typename: "TamperReplacerTerm";
16675
+ term: string;
16676
+ } | {
16677
+ __typename: "TamperReplacerWorkflow";
16678
+ id: string;
16679
+ };
16680
+ } | {
16681
+ __typename: "TamperOperationQueryRemove";
16682
+ matcher: {
16683
+ __typename: "TamperMatcherName";
16684
+ name: string;
16685
+ };
16686
+ } | {
16687
+ __typename: "TamperOperationQueryUpdate";
16688
+ matcher: {
16689
+ __typename: "TamperMatcherName";
16690
+ name: string;
16691
+ };
16692
+ replacer: {
16693
+ __typename: "TamperReplacerTerm";
16694
+ term: string;
16695
+ } | {
16696
+ __typename: "TamperReplacerWorkflow";
16697
+ id: string;
16698
+ };
16699
+ };
16700
+ } | {
16701
+ __typename: "TamperSectionRequestSNI";
16702
+ operation: {
16703
+ __typename: "TamperOperationSNIRaw";
16704
+ replacer: {
16705
+ __typename: "TamperReplacerTerm";
16706
+ term: string;
16707
+ } | {
16708
+ __typename: "TamperReplacerWorkflow";
16709
+ id: string;
16710
+ };
16711
+ };
16712
+ } | {
16713
+ __typename: "TamperSectionResponseAll";
16714
+ operation: {
16715
+ __typename: "TamperOperationAllRaw";
16716
+ matcher: {
16717
+ __typename: "TamperMatcherFull";
16718
+ } | {
16719
+ __typename: "TamperMatcherRegex";
16720
+ regex: string;
16721
+ } | {
16722
+ __typename: "TamperMatcherValue";
16723
+ value: string;
16724
+ };
16725
+ replacer: {
16726
+ __typename: "TamperReplacerTerm";
16727
+ term: string;
16728
+ } | {
16729
+ __typename: "TamperReplacerWorkflow";
16730
+ id: string;
16731
+ };
16732
+ };
16733
+ } | {
16734
+ __typename: "TamperSectionResponseBody";
16735
+ operation: {
16736
+ __typename: "TamperOperationBodyRaw";
16737
+ matcher: {
16738
+ __typename: "TamperMatcherFull";
16739
+ } | {
16740
+ __typename: "TamperMatcherRegex";
16741
+ regex: string;
16742
+ } | {
16743
+ __typename: "TamperMatcherValue";
16744
+ value: string;
16745
+ };
16746
+ replacer: {
16747
+ __typename: "TamperReplacerTerm";
16748
+ term: string;
16749
+ } | {
16750
+ __typename: "TamperReplacerWorkflow";
16751
+ id: string;
16752
+ };
16753
+ };
16754
+ } | {
16755
+ __typename: "TamperSectionResponseFirstLine";
16756
+ operation: {
16757
+ __typename: "TamperOperationFirstLineRaw";
16758
+ matcher: {
16759
+ __typename: "TamperMatcherFull";
16760
+ } | {
16761
+ __typename: "TamperMatcherRegex";
16762
+ regex: string;
16763
+ } | {
16764
+ __typename: "TamperMatcherValue";
16765
+ value: string;
16766
+ };
16767
+ replacer: {
16768
+ __typename: "TamperReplacerTerm";
16769
+ term: string;
16770
+ } | {
16771
+ __typename: "TamperReplacerWorkflow";
16772
+ id: string;
16773
+ };
16774
+ };
16775
+ } | {
16776
+ __typename: "TamperSectionResponseHeader";
16777
+ operation: {
16778
+ __typename: "TamperOperationHeaderAdd";
16779
+ matcher: {
16780
+ __typename: "TamperMatcherName";
16781
+ name: string;
16782
+ };
16783
+ replacer: {
16784
+ __typename: "TamperReplacerTerm";
16785
+ term: string;
16786
+ } | {
16787
+ __typename: "TamperReplacerWorkflow";
16788
+ id: string;
16789
+ };
16790
+ } | {
16791
+ __typename: "TamperOperationHeaderRaw";
16792
+ matcher: {
16793
+ __typename: "TamperMatcherFull";
16794
+ } | {
16795
+ __typename: "TamperMatcherRegex";
16796
+ regex: string;
16797
+ } | {
16798
+ __typename: "TamperMatcherValue";
16799
+ value: string;
16800
+ };
16801
+ replacer: {
16802
+ __typename: "TamperReplacerTerm";
16803
+ term: string;
16804
+ } | {
16805
+ __typename: "TamperReplacerWorkflow";
16806
+ id: string;
16807
+ };
16808
+ } | {
16809
+ __typename: "TamperOperationHeaderRemove";
16810
+ matcher: {
16811
+ __typename: "TamperMatcherName";
16812
+ name: string;
16813
+ };
16814
+ } | {
16815
+ __typename: "TamperOperationHeaderUpdate";
16816
+ matcher: {
16817
+ __typename: "TamperMatcherName";
16818
+ name: string;
16819
+ };
16820
+ replacer: {
16821
+ __typename: "TamperReplacerTerm";
16822
+ term: string;
16823
+ } | {
16824
+ __typename: "TamperReplacerWorkflow";
16825
+ id: string;
16826
+ };
16827
+ };
16828
+ } | {
16829
+ __typename: "TamperSectionResponseStatusCode";
16830
+ operation: {
16831
+ __typename: "TamperOperationStatusCodeUpdate";
16832
+ replacer: {
16833
+ __typename: "TamperReplacerTerm";
16834
+ term: string;
16835
+ } | {
16836
+ __typename: "TamperReplacerWorkflow";
16837
+ id: string;
16838
+ };
16839
+ };
16840
+ };
16841
+ enable?: {
16842
+ rank: string;
16843
+ } | undefined | null;
16844
+ collection: {
16845
+ id: string;
16846
+ };
16847
+ }>;
16848
+ };
16849
+ };
16850
+ };
16851
+ };
16852
+ export type CreatedTamperRuleSubscriptionVariables = Exact<{
16853
+ [key: string]: never;
16854
+ }>;
16855
+ export type CreatedTamperRuleSubscription = {
16856
+ createdTamperRule: {
16857
+ snapshot: number;
16858
+ rule: {
16859
+ __typename: "TamperRule";
16860
+ id: string;
16861
+ name: string;
16862
+ condition?: string | undefined | null;
16863
+ sources: Array<Source>;
16864
+ section: {
16865
+ __typename: "TamperSectionRequestAll";
16866
+ operation: {
16867
+ __typename: "TamperOperationAllRaw";
16868
+ matcher: {
16869
+ __typename: "TamperMatcherFull";
16870
+ } | {
16871
+ __typename: "TamperMatcherRegex";
16872
+ regex: string;
16873
+ } | {
16874
+ __typename: "TamperMatcherValue";
16875
+ value: string;
16876
+ };
16877
+ replacer: {
16878
+ __typename: "TamperReplacerTerm";
16879
+ term: string;
16880
+ } | {
16881
+ __typename: "TamperReplacerWorkflow";
16882
+ id: string;
16883
+ };
16884
+ };
16885
+ } | {
16886
+ __typename: "TamperSectionRequestBody";
16887
+ operation: {
16888
+ __typename: "TamperOperationBodyRaw";
16889
+ matcher: {
16890
+ __typename: "TamperMatcherFull";
16891
+ } | {
16892
+ __typename: "TamperMatcherRegex";
16893
+ regex: string;
16894
+ } | {
16895
+ __typename: "TamperMatcherValue";
16896
+ value: string;
16897
+ };
16898
+ replacer: {
16899
+ __typename: "TamperReplacerTerm";
16900
+ term: string;
16901
+ } | {
16902
+ __typename: "TamperReplacerWorkflow";
16903
+ id: string;
16904
+ };
16905
+ };
16906
+ } | {
16907
+ __typename: "TamperSectionRequestFirstLine";
16908
+ operation: {
16909
+ __typename: "TamperOperationFirstLineRaw";
16910
+ matcher: {
16911
+ __typename: "TamperMatcherFull";
16912
+ } | {
16913
+ __typename: "TamperMatcherRegex";
16914
+ regex: string;
16915
+ } | {
16916
+ __typename: "TamperMatcherValue";
16917
+ value: string;
16918
+ };
16919
+ replacer: {
16920
+ __typename: "TamperReplacerTerm";
16921
+ term: string;
16922
+ } | {
16923
+ __typename: "TamperReplacerWorkflow";
16924
+ id: string;
16925
+ };
16926
+ };
16927
+ } | {
16928
+ __typename: "TamperSectionRequestHeader";
16929
+ operation: {
16930
+ __typename: "TamperOperationHeaderAdd";
16931
+ matcher: {
16932
+ __typename: "TamperMatcherName";
16933
+ name: string;
16934
+ };
16935
+ replacer: {
16936
+ __typename: "TamperReplacerTerm";
16937
+ term: string;
16938
+ } | {
16939
+ __typename: "TamperReplacerWorkflow";
16940
+ id: string;
16941
+ };
16942
+ } | {
16943
+ __typename: "TamperOperationHeaderRaw";
16944
+ matcher: {
16945
+ __typename: "TamperMatcherFull";
16946
+ } | {
16947
+ __typename: "TamperMatcherRegex";
16948
+ regex: string;
16949
+ } | {
16950
+ __typename: "TamperMatcherValue";
16951
+ value: string;
16952
+ };
16953
+ replacer: {
16954
+ __typename: "TamperReplacerTerm";
16955
+ term: string;
16956
+ } | {
16957
+ __typename: "TamperReplacerWorkflow";
16958
+ id: string;
16959
+ };
16960
+ } | {
16961
+ __typename: "TamperOperationHeaderRemove";
16962
+ matcher: {
16963
+ __typename: "TamperMatcherName";
16964
+ name: string;
16965
+ };
16966
+ } | {
16967
+ __typename: "TamperOperationHeaderUpdate";
16968
+ matcher: {
16969
+ __typename: "TamperMatcherName";
16970
+ name: string;
16971
+ };
16972
+ replacer: {
16973
+ __typename: "TamperReplacerTerm";
16974
+ term: string;
16975
+ } | {
16976
+ __typename: "TamperReplacerWorkflow";
16977
+ id: string;
16978
+ };
16979
+ };
16980
+ } | {
16981
+ __typename: "TamperSectionRequestMethod";
16982
+ operation: {
16983
+ __typename: "TamperOperationMethodUpdate";
16984
+ replacer: {
16985
+ __typename: "TamperReplacerTerm";
16986
+ term: string;
16987
+ } | {
16988
+ __typename: "TamperReplacerWorkflow";
16989
+ id: string;
16990
+ };
16991
+ };
16992
+ } | {
16993
+ __typename: "TamperSectionRequestPath";
16994
+ operation: {
16995
+ __typename: "TamperOperationPathRaw";
16996
+ matcher: {
16997
+ __typename: "TamperMatcherFull";
16998
+ } | {
16999
+ __typename: "TamperMatcherRegex";
17000
+ regex: string;
17001
+ } | {
17002
+ __typename: "TamperMatcherValue";
17003
+ value: string;
17004
+ };
17005
+ replacer: {
17006
+ __typename: "TamperReplacerTerm";
17007
+ term: string;
17008
+ } | {
17009
+ __typename: "TamperReplacerWorkflow";
17010
+ id: string;
17011
+ };
17012
+ };
17013
+ } | {
17014
+ __typename: "TamperSectionRequestQuery";
17015
+ operation: {
17016
+ __typename: "TamperOperationQueryAdd";
17017
+ matcher: {
17018
+ __typename: "TamperMatcherName";
17019
+ name: string;
17020
+ };
17021
+ replacer: {
17022
+ __typename: "TamperReplacerTerm";
17023
+ term: string;
17024
+ } | {
17025
+ __typename: "TamperReplacerWorkflow";
17026
+ id: string;
17027
+ };
17028
+ } | {
17029
+ __typename: "TamperOperationQueryRaw";
17030
+ matcher: {
17031
+ __typename: "TamperMatcherFull";
17032
+ } | {
17033
+ __typename: "TamperMatcherRegex";
17034
+ regex: string;
17035
+ } | {
17036
+ __typename: "TamperMatcherValue";
17037
+ value: string;
17038
+ };
17039
+ replacer: {
17040
+ __typename: "TamperReplacerTerm";
17041
+ term: string;
17042
+ } | {
17043
+ __typename: "TamperReplacerWorkflow";
17044
+ id: string;
17045
+ };
17046
+ } | {
17047
+ __typename: "TamperOperationQueryRemove";
17048
+ matcher: {
17049
+ __typename: "TamperMatcherName";
17050
+ name: string;
17051
+ };
17052
+ } | {
17053
+ __typename: "TamperOperationQueryUpdate";
17054
+ matcher: {
17055
+ __typename: "TamperMatcherName";
17056
+ name: string;
17057
+ };
17058
+ replacer: {
17059
+ __typename: "TamperReplacerTerm";
17060
+ term: string;
17061
+ } | {
17062
+ __typename: "TamperReplacerWorkflow";
17063
+ id: string;
17064
+ };
17065
+ };
17066
+ } | {
17067
+ __typename: "TamperSectionRequestSNI";
17068
+ operation: {
17069
+ __typename: "TamperOperationSNIRaw";
17070
+ replacer: {
17071
+ __typename: "TamperReplacerTerm";
17072
+ term: string;
17073
+ } | {
17074
+ __typename: "TamperReplacerWorkflow";
17075
+ id: string;
17076
+ };
17077
+ };
17078
+ } | {
17079
+ __typename: "TamperSectionResponseAll";
17080
+ operation: {
17081
+ __typename: "TamperOperationAllRaw";
17082
+ matcher: {
17083
+ __typename: "TamperMatcherFull";
17084
+ } | {
17085
+ __typename: "TamperMatcherRegex";
17086
+ regex: string;
17087
+ } | {
17088
+ __typename: "TamperMatcherValue";
17089
+ value: string;
17090
+ };
17091
+ replacer: {
17092
+ __typename: "TamperReplacerTerm";
17093
+ term: string;
17094
+ } | {
17095
+ __typename: "TamperReplacerWorkflow";
17096
+ id: string;
17097
+ };
17098
+ };
17099
+ } | {
17100
+ __typename: "TamperSectionResponseBody";
17101
+ operation: {
17102
+ __typename: "TamperOperationBodyRaw";
17103
+ matcher: {
17104
+ __typename: "TamperMatcherFull";
17105
+ } | {
17106
+ __typename: "TamperMatcherRegex";
17107
+ regex: string;
17108
+ } | {
17109
+ __typename: "TamperMatcherValue";
17110
+ value: string;
17111
+ };
17112
+ replacer: {
17113
+ __typename: "TamperReplacerTerm";
17114
+ term: string;
17115
+ } | {
17116
+ __typename: "TamperReplacerWorkflow";
17117
+ id: string;
17118
+ };
17119
+ };
17120
+ } | {
17121
+ __typename: "TamperSectionResponseFirstLine";
17122
+ operation: {
17123
+ __typename: "TamperOperationFirstLineRaw";
17124
+ matcher: {
17125
+ __typename: "TamperMatcherFull";
17126
+ } | {
17127
+ __typename: "TamperMatcherRegex";
17128
+ regex: string;
17129
+ } | {
17130
+ __typename: "TamperMatcherValue";
17131
+ value: string;
17132
+ };
17133
+ replacer: {
17134
+ __typename: "TamperReplacerTerm";
17135
+ term: string;
17136
+ } | {
17137
+ __typename: "TamperReplacerWorkflow";
17138
+ id: string;
17139
+ };
17140
+ };
17141
+ } | {
17142
+ __typename: "TamperSectionResponseHeader";
17143
+ operation: {
17144
+ __typename: "TamperOperationHeaderAdd";
17145
+ matcher: {
17146
+ __typename: "TamperMatcherName";
17147
+ name: string;
17148
+ };
17149
+ replacer: {
17150
+ __typename: "TamperReplacerTerm";
17151
+ term: string;
17152
+ } | {
17153
+ __typename: "TamperReplacerWorkflow";
17154
+ id: string;
17155
+ };
17156
+ } | {
17157
+ __typename: "TamperOperationHeaderRaw";
17158
+ matcher: {
17159
+ __typename: "TamperMatcherFull";
17160
+ } | {
17161
+ __typename: "TamperMatcherRegex";
17162
+ regex: string;
17163
+ } | {
17164
+ __typename: "TamperMatcherValue";
17165
+ value: string;
17166
+ };
17167
+ replacer: {
17168
+ __typename: "TamperReplacerTerm";
17169
+ term: string;
17170
+ } | {
17171
+ __typename: "TamperReplacerWorkflow";
17172
+ id: string;
17173
+ };
17174
+ } | {
17175
+ __typename: "TamperOperationHeaderRemove";
17176
+ matcher: {
17177
+ __typename: "TamperMatcherName";
17178
+ name: string;
17179
+ };
17180
+ } | {
17181
+ __typename: "TamperOperationHeaderUpdate";
17182
+ matcher: {
17183
+ __typename: "TamperMatcherName";
17184
+ name: string;
17185
+ };
17186
+ replacer: {
17187
+ __typename: "TamperReplacerTerm";
17188
+ term: string;
17189
+ } | {
17190
+ __typename: "TamperReplacerWorkflow";
17191
+ id: string;
17192
+ };
17193
+ };
17194
+ } | {
17195
+ __typename: "TamperSectionResponseStatusCode";
17196
+ operation: {
17197
+ __typename: "TamperOperationStatusCodeUpdate";
17198
+ replacer: {
17199
+ __typename: "TamperReplacerTerm";
17200
+ term: string;
17201
+ } | {
17202
+ __typename: "TamperReplacerWorkflow";
17203
+ id: string;
17204
+ };
17205
+ };
17206
+ };
17207
+ enable?: {
17208
+ rank: string;
17209
+ } | undefined | null;
17210
+ collection: {
17211
+ id: string;
17212
+ };
17213
+ };
17214
+ };
17215
+ };
17216
+ export type PageInfoFullFragment = {
17217
+ __typename: "PageInfo";
17218
+ hasPreviousPage: boolean;
17219
+ hasNextPage: boolean;
17220
+ startCursor?: string | undefined | null;
17221
+ endCursor?: string | undefined | null;
17222
+ };
17223
+ export type CountFullFragment = {
17224
+ __typename: "Count";
17225
+ value: number;
17226
+ snapshot: number;
17227
+ };
17228
+ type PluginMeta_PluginBackend_Fragment = {
17229
+ __typename: "PluginBackend";
17230
+ id: string;
17231
+ name?: string | undefined | null;
17232
+ enabled: boolean;
17233
+ manifestId: string;
17234
+ package: {
17235
+ id: string;
17236
+ };
17237
+ };
17238
+ type PluginMeta_PluginFrontend_Fragment = {
17239
+ __typename: "PluginFrontend";
17240
+ id: string;
17241
+ name?: string | undefined | null;
17242
+ enabled: boolean;
17243
+ manifestId: string;
17244
+ package: {
17245
+ id: string;
17246
+ };
17247
+ };
17248
+ type PluginMeta_PluginWorkflow_Fragment = {
17249
+ __typename: "PluginWorkflow";
17250
+ id: string;
17251
+ name?: string | undefined | null;
17252
+ enabled: boolean;
17253
+ manifestId: string;
17254
+ package: {
17255
+ id: string;
17256
+ };
17257
+ };
17258
+ export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment | PluginMeta_PluginWorkflow_Fragment;
17259
+ export type PluginBackendMetaFragment = {
17260
+ __typename: "PluginBackend";
17261
+ id: string;
17262
+ };
17263
+ export type PluginBackendFullFragment = {
17264
+ __typename: "PluginBackend";
17265
+ runtime: PluginRuntime;
17266
+ id: string;
17267
+ name?: string | undefined | null;
17268
+ enabled: boolean;
17269
+ manifestId: string;
17270
+ state: {
17271
+ error?: string | undefined | null;
17272
+ running: boolean;
17273
+ };
17274
+ package: {
17275
+ id: string;
17276
+ };
17277
+ };
17278
+ export type PluginFrontendFullFragment = {
17279
+ __typename: "PluginFrontend";
17280
+ entrypoint?: string | undefined | null;
17281
+ style?: string | undefined | null;
17282
+ data?: unknown | undefined | null;
17283
+ id: string;
17284
+ name?: string | undefined | null;
17285
+ enabled: boolean;
17286
+ manifestId: string;
17287
+ backend?: {
17288
+ __typename: "PluginBackend";
17289
+ id: string;
17290
+ } | undefined | null;
17291
+ package: {
17292
+ id: string;
17293
+ };
17294
+ };
17295
+ export type PluginWorkflowFullFragment = {
17296
+ __typename: "PluginWorkflow";
17297
+ name?: string | undefined | null;
17298
+ id: string;
17299
+ enabled: boolean;
17300
+ manifestId: string;
17301
+ workflow?: {
17302
+ __typename: "Workflow";
17303
+ id: string;
17304
+ kind: WorkflowKind;
17305
+ name: string;
17306
+ enabled: boolean;
17307
+ global: boolean;
17308
+ readOnly: boolean;
17309
+ } | undefined | null;
17310
+ package: {
17311
+ id: string;
17312
+ };
17313
+ };
17314
+ export type PluginAuthorFullFragment = {
17315
+ name?: string | undefined | null;
17316
+ email?: string | undefined | null;
17317
+ url?: string | undefined | null;
17318
+ };
17319
+ export type PluginLinksFullFragment = {
17320
+ sponsor?: string | undefined | null;
17321
+ };
17322
+ export type PluginPackageMetaFragment = {
17323
+ id: string;
17324
+ name?: string | undefined | null;
17325
+ description?: string | undefined | null;
17326
+ version: string;
17327
+ installedAt: Date;
17328
+ manifestId: string;
17329
+ author?: {
17330
+ name?: string | undefined | null;
17331
+ email?: string | undefined | null;
17332
+ url?: string | undefined | null;
17333
+ } | undefined | null;
17334
+ links?: {
17335
+ sponsor?: string | undefined | null;
17336
+ } | undefined | null;
17337
+ };
17338
+ export type PluginPackageFullFragment = {
17339
+ id: string;
17340
+ name?: string | undefined | null;
17341
+ description?: string | undefined | null;
17342
+ version: string;
17343
+ installedAt: Date;
17344
+ manifestId: string;
17345
+ plugins: Array<{
17346
+ __typename: "PluginBackend";
17347
+ runtime: PluginRuntime;
17348
+ id: string;
17349
+ name?: string | undefined | null;
17350
+ enabled: boolean;
17351
+ manifestId: string;
17352
+ state: {
17353
+ error?: string | undefined | null;
17354
+ running: boolean;
17355
+ };
16426
17356
  package: {
16427
17357
  id: string;
16428
17358
  };
@@ -22388,15 +23318,33 @@ export type UpstreamProxySocksFullFragment = {
22388
23318
  SNI?: string | undefined | null;
22389
23319
  };
22390
23320
  };
23321
+ export type UpstreamPluginFullFragment = {
23322
+ __typename: "UpstreamPlugin";
23323
+ id: string;
23324
+ allowlist: Array<string>;
23325
+ denylist: Array<string>;
23326
+ enabled: boolean;
23327
+ rank: string;
23328
+ plugin: {
23329
+ __typename: "PluginBackend";
23330
+ id: string;
23331
+ name?: string | undefined | null;
23332
+ enabled: boolean;
23333
+ manifestId: string;
23334
+ package: {
23335
+ id: string;
23336
+ };
23337
+ };
23338
+ };
22391
23339
  export type UpstreamProxyAuthBasicFullFragment = {
22392
23340
  __typename: "UpstreamProxyAuthBasic";
22393
23341
  username: string;
22394
23342
  password: string;
22395
23343
  };
22396
- export type UpstreamProxiesQueryVariables = Exact<{
23344
+ export type UpstreamsQueryVariables = Exact<{
22397
23345
  [key: string]: never;
22398
23346
  }>;
22399
- export type UpstreamProxiesQuery = {
23347
+ export type UpstreamsQuery = {
22400
23348
  upstreamProxiesHttp: Array<{
22401
23349
  __typename: "UpstreamProxyHttp";
22402
23350
  id: string;
@@ -22438,6 +23386,24 @@ export type UpstreamProxiesQuery = {
22438
23386
  SNI?: string | undefined | null;
22439
23387
  };
22440
23388
  }>;
23389
+ upstreamPlugins: Array<{
23390
+ __typename: "UpstreamPlugin";
23391
+ id: string;
23392
+ allowlist: Array<string>;
23393
+ denylist: Array<string>;
23394
+ enabled: boolean;
23395
+ rank: string;
23396
+ plugin: {
23397
+ __typename: "PluginBackend";
23398
+ id: string;
23399
+ name?: string | undefined | null;
23400
+ enabled: boolean;
23401
+ manifestId: string;
23402
+ package: {
23403
+ id: string;
23404
+ };
23405
+ };
23406
+ }>;
22441
23407
  };
22442
23408
  export type CreateUpstreamProxyHttpMutationVariables = Exact<{
22443
23409
  input: CreateUpstreamProxyHttpInput;
@@ -22538,6 +23504,68 @@ export type RankUpstreamProxyHttpMutation = {
22538
23504
  } | undefined | null;
22539
23505
  };
22540
23506
  };
23507
+ export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
23508
+ [key: string]: never;
23509
+ }>;
23510
+ export type CreatedUpstreamProxyHttpSubscription = {
23511
+ createdUpstreamProxyHttp: {
23512
+ proxy: {
23513
+ __typename: "UpstreamProxyHttp";
23514
+ id: string;
23515
+ allowlist: Array<string>;
23516
+ denylist: Array<string>;
23517
+ enabled: boolean;
23518
+ rank: string;
23519
+ auth?: {
23520
+ __typename: "UpstreamProxyAuthBasic";
23521
+ username: string;
23522
+ password: string;
23523
+ } | undefined | null;
23524
+ connection: {
23525
+ __typename: "ConnectionInfo";
23526
+ host: string;
23527
+ port: number;
23528
+ isTLS: boolean;
23529
+ SNI?: string | undefined | null;
23530
+ };
23531
+ };
23532
+ };
23533
+ };
23534
+ export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
23535
+ [key: string]: never;
23536
+ }>;
23537
+ export type UpdatedUpstreamProxyHttpSubscription = {
23538
+ updatedUpstreamProxyHttp: {
23539
+ proxy: {
23540
+ __typename: "UpstreamProxyHttp";
23541
+ id: string;
23542
+ allowlist: Array<string>;
23543
+ denylist: Array<string>;
23544
+ enabled: boolean;
23545
+ rank: string;
23546
+ auth?: {
23547
+ __typename: "UpstreamProxyAuthBasic";
23548
+ username: string;
23549
+ password: string;
23550
+ } | undefined | null;
23551
+ connection: {
23552
+ __typename: "ConnectionInfo";
23553
+ host: string;
23554
+ port: number;
23555
+ isTLS: boolean;
23556
+ SNI?: string | undefined | null;
23557
+ };
23558
+ };
23559
+ };
23560
+ };
23561
+ export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
23562
+ [key: string]: never;
23563
+ }>;
23564
+ export type DeletedUpstreamProxyHttpSubscription = {
23565
+ deletedUpstreamProxyHttp: {
23566
+ deletedProxyId: string;
23567
+ };
23568
+ };
22541
23569
  export type CreateUpstreamProxySocksMutationVariables = Exact<{
22542
23570
  input: CreateUpstreamProxySocksInput;
22543
23571
  }>;
@@ -22640,17 +23668,18 @@ export type RankUpstreamProxySocksMutation = {
22640
23668
  } | undefined | null;
22641
23669
  };
22642
23670
  };
22643
- export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
23671
+ export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
22644
23672
  [key: string]: never;
22645
23673
  }>;
22646
- export type CreatedUpstreamProxyHttpSubscription = {
22647
- createdUpstreamProxyHttp: {
23674
+ export type CreatedUpstreamProxySocksSubscription = {
23675
+ createdUpstreamProxySocks: {
22648
23676
  proxy: {
22649
- __typename: "UpstreamProxyHttp";
23677
+ __typename: "UpstreamProxySocks";
22650
23678
  id: string;
22651
23679
  allowlist: Array<string>;
22652
23680
  denylist: Array<string>;
22653
23681
  enabled: boolean;
23682
+ includeDns: boolean;
22654
23683
  rank: string;
22655
23684
  auth?: {
22656
23685
  __typename: "UpstreamProxyAuthBasic";
@@ -22667,17 +23696,18 @@ export type CreatedUpstreamProxyHttpSubscription = {
22667
23696
  };
22668
23697
  };
22669
23698
  };
22670
- export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
23699
+ export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
22671
23700
  [key: string]: never;
22672
23701
  }>;
22673
- export type UpdatedUpstreamProxyHttpSubscription = {
22674
- updatedUpstreamProxyHttp: {
23702
+ export type UpdatedUpstreamProxySocksSubscription = {
23703
+ updatedUpstreamProxySocks: {
22675
23704
  proxy: {
22676
- __typename: "UpstreamProxyHttp";
23705
+ __typename: "UpstreamProxySocks";
22677
23706
  id: string;
22678
23707
  allowlist: Array<string>;
22679
23708
  denylist: Array<string>;
22680
23709
  enabled: boolean;
23710
+ includeDns: boolean;
22681
23711
  rank: string;
22682
23712
  auth?: {
22683
23713
  __typename: "UpstreamProxyAuthBasic";
@@ -22694,76 +23724,155 @@ export type UpdatedUpstreamProxyHttpSubscription = {
22694
23724
  };
22695
23725
  };
22696
23726
  };
22697
- export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
23727
+ export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
22698
23728
  [key: string]: never;
22699
23729
  }>;
22700
- export type DeletedUpstreamProxyHttpSubscription = {
22701
- deletedUpstreamProxyHttp: {
23730
+ export type DeletedUpstreamProxySocksSubscription = {
23731
+ deletedUpstreamProxySocks: {
22702
23732
  deletedProxyId: string;
22703
23733
  };
22704
23734
  };
22705
- export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
23735
+ export type CreateUpstreamPluginMutationVariables = Exact<{
23736
+ input: CreateUpstreamPluginInput;
23737
+ }>;
23738
+ export type CreateUpstreamPluginMutation = {
23739
+ createUpstreamPlugin: {
23740
+ upstream?: {
23741
+ __typename: "UpstreamPlugin";
23742
+ id: string;
23743
+ allowlist: Array<string>;
23744
+ denylist: Array<string>;
23745
+ enabled: boolean;
23746
+ rank: string;
23747
+ plugin: {
23748
+ __typename: "PluginBackend";
23749
+ id: string;
23750
+ name?: string | undefined | null;
23751
+ enabled: boolean;
23752
+ manifestId: string;
23753
+ package: {
23754
+ id: string;
23755
+ };
23756
+ };
23757
+ } | undefined | null;
23758
+ };
23759
+ };
23760
+ export type UpdateUpstreamPluginMutationVariables = Exact<{
23761
+ id: Scalars["ID"]["input"];
23762
+ input: UpdateUpstreamPluginInput;
23763
+ }>;
23764
+ export type UpdateUpstreamPluginMutation = {
23765
+ updateUpstreamPlugin: {
23766
+ upstream?: {
23767
+ __typename: "UpstreamPlugin";
23768
+ id: string;
23769
+ allowlist: Array<string>;
23770
+ denylist: Array<string>;
23771
+ enabled: boolean;
23772
+ rank: string;
23773
+ plugin: {
23774
+ __typename: "PluginBackend";
23775
+ id: string;
23776
+ name?: string | undefined | null;
23777
+ enabled: boolean;
23778
+ manifestId: string;
23779
+ package: {
23780
+ id: string;
23781
+ };
23782
+ };
23783
+ } | undefined | null;
23784
+ };
23785
+ };
23786
+ export type DeleteUpstreamPluginMutationVariables = Exact<{
23787
+ id: Scalars["ID"]["input"];
23788
+ }>;
23789
+ export type DeleteUpstreamPluginMutation = {
23790
+ deleteUpstreamPlugin: {
23791
+ deletedId?: string | undefined | null;
23792
+ };
23793
+ };
23794
+ export type RankUpstreamPluginMutationVariables = Exact<{
23795
+ id: Scalars["ID"]["input"];
23796
+ input: RankInput;
23797
+ }>;
23798
+ export type RankUpstreamPluginMutation = {
23799
+ rankUpstreamPlugin: {
23800
+ upstream?: {
23801
+ __typename: "UpstreamPlugin";
23802
+ id: string;
23803
+ allowlist: Array<string>;
23804
+ denylist: Array<string>;
23805
+ enabled: boolean;
23806
+ rank: string;
23807
+ plugin: {
23808
+ __typename: "PluginBackend";
23809
+ id: string;
23810
+ name?: string | undefined | null;
23811
+ enabled: boolean;
23812
+ manifestId: string;
23813
+ package: {
23814
+ id: string;
23815
+ };
23816
+ };
23817
+ } | undefined | null;
23818
+ };
23819
+ };
23820
+ export type CreatedUpstreamPluginSubscriptionVariables = Exact<{
22706
23821
  [key: string]: never;
22707
23822
  }>;
22708
- export type CreatedUpstreamProxySocksSubscription = {
22709
- createdUpstreamProxySocks: {
22710
- proxy: {
22711
- __typename: "UpstreamProxySocks";
23823
+ export type CreatedUpstreamPluginSubscription = {
23824
+ createdUpstreamPlugin: {
23825
+ upstream: {
23826
+ __typename: "UpstreamPlugin";
22712
23827
  id: string;
22713
23828
  allowlist: Array<string>;
22714
23829
  denylist: Array<string>;
22715
23830
  enabled: boolean;
22716
- includeDns: boolean;
22717
23831
  rank: string;
22718
- auth?: {
22719
- __typename: "UpstreamProxyAuthBasic";
22720
- username: string;
22721
- password: string;
22722
- } | undefined | null;
22723
- connection: {
22724
- __typename: "ConnectionInfo";
22725
- host: string;
22726
- port: number;
22727
- isTLS: boolean;
22728
- SNI?: string | undefined | null;
23832
+ plugin: {
23833
+ __typename: "PluginBackend";
23834
+ id: string;
23835
+ name?: string | undefined | null;
23836
+ enabled: boolean;
23837
+ manifestId: string;
23838
+ package: {
23839
+ id: string;
23840
+ };
22729
23841
  };
22730
23842
  };
22731
23843
  };
22732
23844
  };
22733
- export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
23845
+ export type UpdatedUpstreamPluginSubscriptionVariables = Exact<{
22734
23846
  [key: string]: never;
22735
23847
  }>;
22736
- export type UpdatedUpstreamProxySocksSubscription = {
22737
- updatedUpstreamProxySocks: {
22738
- proxy: {
22739
- __typename: "UpstreamProxySocks";
23848
+ export type UpdatedUpstreamPluginSubscription = {
23849
+ updatedUpstreamPlugin: {
23850
+ upstream: {
23851
+ __typename: "UpstreamPlugin";
22740
23852
  id: string;
22741
23853
  allowlist: Array<string>;
22742
23854
  denylist: Array<string>;
22743
23855
  enabled: boolean;
22744
- includeDns: boolean;
22745
23856
  rank: string;
22746
- auth?: {
22747
- __typename: "UpstreamProxyAuthBasic";
22748
- username: string;
22749
- password: string;
22750
- } | undefined | null;
22751
- connection: {
22752
- __typename: "ConnectionInfo";
22753
- host: string;
22754
- port: number;
22755
- isTLS: boolean;
22756
- SNI?: string | undefined | null;
23857
+ plugin: {
23858
+ __typename: "PluginBackend";
23859
+ id: string;
23860
+ name?: string | undefined | null;
23861
+ enabled: boolean;
23862
+ manifestId: string;
23863
+ package: {
23864
+ id: string;
23865
+ };
22757
23866
  };
22758
23867
  };
22759
23868
  };
22760
23869
  };
22761
- export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
23870
+ export type DeletedUpstreamPluginSubscriptionVariables = Exact<{
22762
23871
  [key: string]: never;
22763
23872
  }>;
22764
- export type DeletedUpstreamProxySocksSubscription = {
22765
- deletedUpstreamProxySocks: {
22766
- deletedProxyId: string;
23873
+ export type DeletedUpstreamPluginSubscription = {
23874
+ deletedUpstreamPlugin: {
23875
+ deletedUpstreamId: string;
22767
23876
  };
22768
23877
  };
22769
23878
  export type UserProfileFullFragment = {
@@ -23423,7 +24532,6 @@ export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fr
23423
24532
  export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
23424
24533
  export declare const FinishedRestoreBackupTaskErrorFullFragmentDoc = "\n fragment finishedRestoreBackupTaskErrorFull on FinishedRestoreBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n ";
23425
24534
  export declare const BrowserFullFragmentDoc = "\n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
23426
- export declare const OnboardingFullFragmentDoc = "\n fragment onboardingFull on OnboardingState {\n __typename\n caCertificate\n license\n project\n}\n ";
23427
24535
  export declare const GlobalConfigProjectFullFragmentDoc = "\n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
23428
24536
  export declare const DnsRewriteFullFragmentDoc = "\n fragment dnsRewriteFull on DNSRewrite {\n id\n rank\n enabled\n resolution {\n ... on DNSIpResolver {\n ip\n }\n ... on DNSUpstreamResolver {\n id\n }\n }\n allowlist\n denylist\n}\n ";
23429
24537
  export declare const DnsUpstreamFullFragmentDoc = "\n fragment dnsUpstreamFull on DNSUpstream {\n id\n ip\n name\n}\n ";
@@ -23468,7 +24576,7 @@ export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEn
23468
24576
  export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
23469
24577
  export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
23470
24578
  export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
23471
- export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
24579
+ export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n}\n ";
23472
24580
  export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
23473
24581
  export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
23474
24582
  export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
@@ -23562,12 +24670,14 @@ export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment stream
23562
24670
  export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
23563
24671
  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 ";
23564
24672
  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 ";
24673
+ export declare const UpstreamPluginFullFragmentDoc = "\n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n ";
23565
24674
  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 ";
23566
24675
  export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
23567
24676
  export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
23568
24677
  export declare const WorkflowEdgeFullFragmentDoc = "\n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n ";
23569
24678
  export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
23570
24679
  export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
24680
+ export declare const TrackDocument = "\n mutation track($input: TrackInput!) {\n track(input: $input) {\n success\n }\n}\n ";
23571
24681
  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 ";
23572
24682
  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 ";
23573
24683
  export declare const AssistantCloudStateDocument = "\n query assistantCloudState {\n viewer {\n __typename\n ... on CloudUser {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n }\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n \n\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
@@ -23636,9 +24746,8 @@ export declare const UpdateBrowserDocument = "\n mutation updateBrowser {\n
23636
24746
  export declare const DeletedBrowserDocument = "\n subscription deletedBrowser {\n deletedBrowser {\n deletedBrowserId\n }\n}\n ";
23637
24747
  export declare const InstalledBrowserDocument = "\n subscription installedBrowser {\n installedBrowser {\n browser {\n ...browserFull\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
23638
24748
  export declare const UpdatedBrowserDocument = "\n subscription updatedBrowser {\n updatedBrowser {\n browser {\n ...browserFull\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
23639
- export declare const UpdateOnboardingDocument = "\n mutation updateOnboarding($input: SetConfigOnboardingInput!) {\n setGlobalConfigOnboarding(input: $input) {\n config {\n onboarding {\n ...onboardingFull\n }\n }\n }\n}\n \n fragment onboardingFull on OnboardingState {\n __typename\n caCertificate\n license\n project\n}\n ";
23640
24749
  export declare const UpdateGlobalConfigProjectDocument = "\n mutation updateGlobalConfigProject($input: SetConfigProjectInput!) {\n setGlobalConfigProject(input: $input) {\n config {\n project {\n ...globalConfigProjectFull\n }\n }\n }\n}\n \n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
23641
- export declare const GlobalConfigDocument = "\n query globalConfig {\n globalConfig {\n address\n onboarding {\n ...onboardingFull\n }\n project {\n ...globalConfigProjectFull\n }\n }\n}\n \n fragment onboardingFull on OnboardingState {\n __typename\n caCertificate\n license\n project\n}\n \n\n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
24750
+ export declare const GlobalConfigDocument = "\n query globalConfig {\n globalConfig {\n address\n project {\n ...globalConfigProjectFull\n }\n }\n}\n \n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
23642
24751
  export declare const GlobalConfigProjectDocument = "\n query globalConfigProject {\n globalConfig {\n project {\n ...globalConfigProjectFull\n }\n }\n}\n \n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
23643
24752
  export declare const DnsConfigStateDocument = "\n query DnsConfigState {\n dnsRewrites {\n ...dnsRewriteFull\n }\n dnsUpstreams {\n ...dnsUpstreamFull\n }\n}\n \n fragment dnsRewriteFull on DNSRewrite {\n id\n rank\n enabled\n resolution {\n ... on DNSIpResolver {\n ip\n }\n ... on DNSUpstreamResolver {\n id\n }\n }\n allowlist\n denylist\n}\n \n\n fragment dnsUpstreamFull on DNSUpstream {\n id\n ip\n name\n}\n ";
23644
24753
  export declare const CreateDnsRewriteDocument = "\n mutation createDnsRewrite($input: CreateDNSRewriteInput!) {\n createDnsRewrite(input: $input) {\n rewrite {\n ...dnsRewriteFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment dnsRewriteFull on DNSRewrite {\n id\n rank\n enabled\n resolution {\n ... on DNSIpResolver {\n ip\n }\n ... on DNSUpstreamResolver {\n id\n }\n }\n allowlist\n denylist\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 ";
@@ -23712,10 +24821,10 @@ export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile
23712
24821
  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 status\n updatedAt\n createdAt\n}\n ";
23713
24822
  export declare const UploadHostedFileDocument = "\n mutation uploadHostedFile($input: UploadHostedFileInput!) {\n uploadHostedFile(input: $input) {\n hostedFile {\n ...hostedFileFull\n }\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
23714
24823
  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 status\n updatedAt\n createdAt\n}\n ";
23715
- export declare const SetInstanceSettingsDocument = "\n mutation setInstanceSettings($input: SetInstanceSettingsInput!) {\n setInstanceSettings(input: $input) {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
24824
+ export declare const SetInstanceSettingsDocument = "\n mutation setInstanceSettings($input: SetInstanceSettingsInput!) {\n setInstanceSettings(input: $input) {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n}\n ";
23716
24825
  export declare const TestAiProviderDocument = "\n mutation testAiProvider($input: TestAIProviderInput!) {\n testAiProvider(input: $input) {\n ...testAiProviderPayloadFull\n }\n}\n \n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
23717
- export declare const InstanceSettingsDocument = "\n query instanceSettings {\n instanceSettings {\n ...instanceSettingsFull\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
23718
- export declare const UpdatedInstanceSettingsDocument = "\n subscription updatedInstanceSettings {\n updatedInstanceSettings {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
24826
+ export declare const InstanceSettingsDocument = "\n query instanceSettings {\n instanceSettings {\n ...instanceSettingsFull\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n}\n ";
24827
+ export declare const UpdatedInstanceSettingsDocument = "\n subscription updatedInstanceSettings {\n updatedInstanceSettings {\n settings {\n ...instanceSettingsFull\n }\n }\n}\n \n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n url\n }\n openrouter {\n apiKey\n }\n }\n onboarding {\n __typename\n analytic\n }\n analytic {\n __typename\n enabled\n local\n cloud\n }\n}\n ";
23719
24828
  export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
23720
24829
  export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
23721
24830
  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 streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
@@ -23742,6 +24851,10 @@ export declare const TestTamperRuleDocument = "\n mutation testTamperRule($in
23742
24851
  export declare const ToggleTamperRuleDocument = "\n mutation toggleTamperRule($id: ID!, $enabled: Boolean!) {\n toggleTamperRule(id: $id, enabled: $enabled) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
23743
24852
  export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id: ID!, $input: RankTamperRuleInput!) {\n rankTamperRule(id: $id, input: $input) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
23744
24853
  export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
24854
+ export declare const ExportTamperDocument = "\n mutation exportTamper($input: ExportTamperInput!) {\n exportTamper(input: $input) {\n export {\n ...dataExportOnDemandMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
24855
+ export declare const ImportTamperDocument = "\n mutation importTamper($input: ImportTamperRuleInput!) {\n importData(input: {tamper: $input}) {\n id\n errors\n summary {\n ... on TamperSummary {\n collectionsCreated\n rulesImported\n }\n }\n }\n}\n ";
24856
+ export declare const CreatedTamperRuleCollectionDocument = "\n subscription createdTamperRuleCollection {\n createdTamperRuleCollection {\n collectionEdge {\n cursor\n node {\n ...tamperRuleCollectionFull\n }\n }\n snapshot\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
24857
+ export declare const CreatedTamperRuleDocument = "\n subscription createdTamperRule {\n createdTamperRule {\n rule {\n ...tamperRuleFull\n }\n snapshot\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n sources\n}\n \n\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionRequestSNI {\n operation {\n ...tamperOperationSNIFull\n }\n }\n ... on TamperSectionResponseAll {\n operation {\n ...tamperOperationAllFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n \n\n fragment tamperOperationAllFull on TamperOperationAll {\n __typename\n ... on TamperOperationAllRaw {\n ...tamperOperationAllRawFull\n }\n}\n \n\n fragment tamperOperationAllRawFull on TamperOperationAllRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationSNIFull on TamperOperationSNI {\n __typename\n ... on TamperOperationSNIRaw {\n ...tamperOperationSNIRawFull\n }\n}\n \n\n fragment tamperOperationSNIRawFull on TamperOperationSNIRaw {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
23745
24858
  export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
23746
24859
  export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n official\n}\n ";
23747
24860
  export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
@@ -23835,23 +24948,30 @@ export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n
23835
24948
  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 ";
23836
24949
  export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\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 createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \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 ";
23837
24950
  export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \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 ";
23838
- export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
24951
+ export declare const UpstreamsDocument = "\n query upstreams {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n upstreamPlugins {\n ...upstreamPluginFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\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 ";
23839
24952
  export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23840
24953
  export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23841
24954
  export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
23842
24955
  export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
23843
24956
  export declare const RankUpstreamProxyHttpDocument = "\n mutation rankUpstreamProxyHttp($id: ID!, $input: RankInput!) {\n rankUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
24957
+ export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
24958
+ export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
24959
+ export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
23844
24960
  export declare const CreateUpstreamProxySocksDocument = "\n mutation createUpstreamProxySocks($input: CreateUpstreamProxySocksInput!) {\n createUpstreamProxySocks(input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23845
24961
  export declare const UpdateUpstreamProxySocksDocument = "\n mutation updateUpstreamProxySocks($id: ID!, $input: UpdateUpstreamProxySocksInput!) {\n updateUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23846
24962
  export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
23847
24963
  export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
23848
24964
  export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23849
- export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23850
- export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23851
- export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
23852
24965
  export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23853
24966
  export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
23854
24967
  export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
24968
+ export declare const CreateUpstreamPluginDocument = "\n mutation createUpstreamPlugin($input: CreateUpstreamPluginInput!) {\n createUpstreamPlugin(input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\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 ";
24969
+ export declare const UpdateUpstreamPluginDocument = "\n mutation updateUpstreamPlugin($id: ID!, $input: UpdateUpstreamPluginInput!) {\n updateUpstreamPlugin(id: $id, input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\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 ";
24970
+ export declare const DeleteUpstreamPluginDocument = "\n mutation deleteUpstreamPlugin($id: ID!) {\n deleteUpstreamPlugin(id: $id) {\n deletedId\n }\n}\n ";
24971
+ export declare const RankUpstreamPluginDocument = "\n mutation rankUpstreamPlugin($id: ID!, $input: RankInput!) {\n rankUpstreamPlugin(id: $id, input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\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 ";
24972
+ export declare const CreatedUpstreamPluginDocument = "\n subscription createdUpstreamPlugin {\n createdUpstreamPlugin {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\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 ";
24973
+ export declare const UpdatedUpstreamPluginDocument = "\n subscription updatedUpstreamPlugin {\n updatedUpstreamPlugin {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\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 ";
24974
+ export declare const DeletedUpstreamPluginDocument = "\n subscription deletedUpstreamPlugin {\n deletedUpstreamPlugin {\n deletedUpstreamId\n }\n}\n ";
23855
24975
  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 ";
23856
24976
  export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n __typename\n ... on CloudUser {\n id\n profile {\n ...userProfileFull\n }\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 ";
23857
24977
  export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n __typename\n ... on CloudUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n ... on GuestUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
@@ -23877,6 +24997,7 @@ export declare const TestWorkflowActiveDocument = "\n mutation testWorkflowAc
23877
24997
  export declare const TestWorkflowPassiveDocument = "\n mutation testWorkflowPassive($input: TestWorkflowPassiveInput!) {\n testWorkflowPassive(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n runState\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
23878
24998
  export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
23879
24999
  export declare function getSdk<C>(requester: Requester<C>): {
25000
+ track(variables: TrackMutationVariables, options?: C): Promise<TrackMutation>;
23880
25001
  assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
23881
25002
  assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
23882
25003
  assistantCloudState(variables?: AssistantCloudStateQueryVariables, options?: C): Promise<AssistantCloudStateQuery>;
@@ -23945,7 +25066,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
23945
25066
  deletedBrowser(variables?: DeletedBrowserSubscriptionVariables, options?: C): AsyncIterable<DeletedBrowserSubscription>;
23946
25067
  installedBrowser(variables?: InstalledBrowserSubscriptionVariables, options?: C): AsyncIterable<InstalledBrowserSubscription>;
23947
25068
  updatedBrowser(variables?: UpdatedBrowserSubscriptionVariables, options?: C): AsyncIterable<UpdatedBrowserSubscription>;
23948
- updateOnboarding(variables: UpdateOnboardingMutationVariables, options?: C): Promise<UpdateOnboardingMutation>;
23949
25069
  updateGlobalConfigProject(variables: UpdateGlobalConfigProjectMutationVariables, options?: C): Promise<UpdateGlobalConfigProjectMutation>;
23950
25070
  globalConfig(variables?: GlobalConfigQueryVariables, options?: C): Promise<GlobalConfigQuery>;
23951
25071
  globalConfigProject(variables?: GlobalConfigProjectQueryVariables, options?: C): Promise<GlobalConfigProjectQuery>;
@@ -24051,6 +25171,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
24051
25171
  toggleTamperRule(variables: ToggleTamperRuleMutationVariables, options?: C): Promise<ToggleTamperRuleMutation>;
24052
25172
  rankTamperRule(variables: RankTamperRuleMutationVariables, options?: C): Promise<RankTamperRuleMutation>;
24053
25173
  moveTamperRule(variables: MoveTamperRuleMutationVariables, options?: C): Promise<MoveTamperRuleMutation>;
25174
+ exportTamper(variables: ExportTamperMutationVariables, options?: C): Promise<ExportTamperMutation>;
25175
+ importTamper(variables: ImportTamperMutationVariables, options?: C): Promise<ImportTamperMutation>;
25176
+ createdTamperRuleCollection(variables?: CreatedTamperRuleCollectionSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleCollectionSubscription>;
25177
+ createdTamperRule(variables?: CreatedTamperRuleSubscriptionVariables, options?: C): AsyncIterable<CreatedTamperRuleSubscription>;
24054
25178
  pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
24055
25179
  storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
24056
25180
  installPluginPackage(variables: InstallPluginPackageMutationVariables, options?: C): Promise<InstallPluginPackageMutation>;
@@ -24144,23 +25268,30 @@ export declare function getSdk<C>(requester: Requester<C>): {
24144
25268
  cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
24145
25269
  startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
24146
25270
  finishedTask(variables?: FinishedTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedTaskSubscription>;
24147
- upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
25271
+ upstreams(variables?: UpstreamsQueryVariables, options?: C): Promise<UpstreamsQuery>;
24148
25272
  createUpstreamProxyHttp(variables: CreateUpstreamProxyHttpMutationVariables, options?: C): Promise<CreateUpstreamProxyHttpMutation>;
24149
25273
  updateUpstreamProxyHttp(variables: UpdateUpstreamProxyHttpMutationVariables, options?: C): Promise<UpdateUpstreamProxyHttpMutation>;
24150
25274
  deleteUpstreamProxyHttp(variables: DeleteUpstreamProxyHttpMutationVariables, options?: C): Promise<DeleteUpstreamProxyHttpMutation>;
24151
25275
  testUpstreamProxyHttp(variables: TestUpstreamProxyHttpMutationVariables, options?: C): Promise<TestUpstreamProxyHttpMutation>;
24152
25276
  rankUpstreamProxyHttp(variables: RankUpstreamProxyHttpMutationVariables, options?: C): Promise<RankUpstreamProxyHttpMutation>;
25277
+ createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
25278
+ updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
25279
+ deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
24153
25280
  createUpstreamProxySocks(variables: CreateUpstreamProxySocksMutationVariables, options?: C): Promise<CreateUpstreamProxySocksMutation>;
24154
25281
  updateUpstreamProxySocks(variables: UpdateUpstreamProxySocksMutationVariables, options?: C): Promise<UpdateUpstreamProxySocksMutation>;
24155
25282
  deleteUpstreamProxySocks(variables: DeleteUpstreamProxySocksMutationVariables, options?: C): Promise<DeleteUpstreamProxySocksMutation>;
24156
25283
  testUpstreamProxySocks(variables: TestUpstreamProxySocksMutationVariables, options?: C): Promise<TestUpstreamProxySocksMutation>;
24157
25284
  rankUpstreamProxySocks(variables: RankUpstreamProxySocksMutationVariables, options?: C): Promise<RankUpstreamProxySocksMutation>;
24158
- createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
24159
- updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
24160
- deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
24161
25285
  createdUpstreamProxySocks(variables?: CreatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxySocksSubscription>;
24162
25286
  updatedUpstreamProxySocks(variables?: UpdatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxySocksSubscription>;
24163
25287
  deletedUpstreamProxySocks(variables?: DeletedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxySocksSubscription>;
25288
+ createUpstreamPlugin(variables: CreateUpstreamPluginMutationVariables, options?: C): Promise<CreateUpstreamPluginMutation>;
25289
+ updateUpstreamPlugin(variables: UpdateUpstreamPluginMutationVariables, options?: C): Promise<UpdateUpstreamPluginMutation>;
25290
+ deleteUpstreamPlugin(variables: DeleteUpstreamPluginMutationVariables, options?: C): Promise<DeleteUpstreamPluginMutation>;
25291
+ rankUpstreamPlugin(variables: RankUpstreamPluginMutationVariables, options?: C): Promise<RankUpstreamPluginMutation>;
25292
+ createdUpstreamPlugin(variables?: CreatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamPluginSubscription>;
25293
+ updatedUpstreamPlugin(variables?: UpdatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamPluginSubscription>;
25294
+ deletedUpstreamPlugin(variables?: DeletedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamPluginSubscription>;
24164
25295
  updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
24165
25296
  userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
24166
25297
  userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;