@caido/sdk-frontend 0.54.2-beta.6 → 0.54.2-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/__generated__/graphql-sdk.d.ts +447 -113
package/package.json
CHANGED
|
@@ -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 = 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
|
};
|
|
@@ -1468,7 +1505,6 @@ export type ForwardInterceptStreamWsMessageInput = {
|
|
|
1468
1505
|
};
|
|
1469
1506
|
export type GlobalConfig = {
|
|
1470
1507
|
address: Scalars["String"]["output"];
|
|
1471
|
-
onboarding: OnboardingState;
|
|
1472
1508
|
project: GlobalConfigProject;
|
|
1473
1509
|
};
|
|
1474
1510
|
export type GlobalConfigProject = {
|
|
@@ -1521,6 +1557,12 @@ export type ImportCertificateInput = {
|
|
|
1521
1557
|
export type ImportCertificatePayload = {
|
|
1522
1558
|
error?: Maybe<ImportCertificateError>;
|
|
1523
1559
|
};
|
|
1560
|
+
export type ImportDataInput = {
|
|
1561
|
+
tamper: ImportTamperRuleInput;
|
|
1562
|
+
};
|
|
1563
|
+
export type ImportTamperRuleInput = {
|
|
1564
|
+
file: Scalars["Upload"]["input"];
|
|
1565
|
+
};
|
|
1524
1566
|
export type InstallBrowserError = CloudUserError | OtherUserError | UnsupportedPlatformUserError;
|
|
1525
1567
|
export type InstallBrowserPayload = {
|
|
1526
1568
|
browser?: Maybe<Browser>;
|
|
@@ -1537,6 +1579,8 @@ export type InstallPluginPackagePayload = {
|
|
|
1537
1579
|
};
|
|
1538
1580
|
export type InstanceSettings = {
|
|
1539
1581
|
aiProviders: AiProviders;
|
|
1582
|
+
analytic: AnalyticStatus;
|
|
1583
|
+
onboarding: OnboardingState;
|
|
1540
1584
|
};
|
|
1541
1585
|
export type InterceptEntry = {
|
|
1542
1586
|
id: Scalars["ID"]["output"];
|
|
@@ -1731,6 +1775,7 @@ export type MutationRoot = {
|
|
|
1731
1775
|
createSitemapEntries: CreateSitemapEntriesPayload;
|
|
1732
1776
|
createTamperRule: CreateTamperRulePayload;
|
|
1733
1777
|
createTamperRuleCollection: CreateTamperRuleCollectionPayload;
|
|
1778
|
+
createUpstreamPlugin: CreateUpstreamPluginPayload;
|
|
1734
1779
|
createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
|
|
1735
1780
|
createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
|
|
1736
1781
|
createWorkflow: CreateWorkflowPayload;
|
|
@@ -1755,16 +1800,19 @@ export type MutationRoot = {
|
|
|
1755
1800
|
deleteSitemapEntries: DeleteSitemapEntriesPayload;
|
|
1756
1801
|
deleteTamperRule: DeleteTamperRulePayload;
|
|
1757
1802
|
deleteTamperRuleCollection: DeleteTamperRuleCollectionPayload;
|
|
1803
|
+
deleteUpstreamPlugin: DeleteUpstreamPluginPayload;
|
|
1758
1804
|
deleteUpstreamProxyHttp: DeleteUpstreamProxyHttpPayload;
|
|
1759
1805
|
deleteUpstreamProxySocks: DeleteUpstreamProxySocksPayload;
|
|
1760
1806
|
deleteWorkflow: DeleteWorkflowPayload;
|
|
1761
1807
|
dropInterceptMessage: DropInterceptMessagePayload;
|
|
1762
1808
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
1763
1809
|
exportFindings: ExportFindingsPayload;
|
|
1810
|
+
exportTamper: ExportTamperPayload;
|
|
1764
1811
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
1765
1812
|
globalizeWorkflow: GlobalizeWorkflowPayload;
|
|
1766
1813
|
hideFindings: HideFindingsPayload;
|
|
1767
1814
|
importCertificate: ImportCertificatePayload;
|
|
1815
|
+
importData: DataImportResult;
|
|
1768
1816
|
installBrowser: InstallBrowserPayload;
|
|
1769
1817
|
installPluginPackage: InstallPluginPackagePayload;
|
|
1770
1818
|
localizeWorkflow: LocalizeWorkflowPayload;
|
|
@@ -1777,6 +1825,7 @@ export type MutationRoot = {
|
|
|
1777
1825
|
persistProject: PersistProjectPayload;
|
|
1778
1826
|
rankDnsRewrite: RankDnsRewritePayload;
|
|
1779
1827
|
rankTamperRule: RankTamperRulePayload;
|
|
1828
|
+
rankUpstreamPlugin: RankUpstreamPluginPayload;
|
|
1780
1829
|
rankUpstreamProxyHttp: RankUpstreamProxyHttpPayload;
|
|
1781
1830
|
rankUpstreamProxySocks: RankUpstreamProxySocksPayload;
|
|
1782
1831
|
refreshAuthenticationToken: RefreshAuthenticationTokenPayload;
|
|
@@ -1805,7 +1854,6 @@ export type MutationRoot = {
|
|
|
1805
1854
|
sendAssistantMessage: SendAssistantMessagePayload;
|
|
1806
1855
|
/** @deprecated Remove usage, no replacement */
|
|
1807
1856
|
setActiveReplaySessionEntry: SetActiveReplaySessionEntryPayload;
|
|
1808
|
-
setGlobalConfigOnboarding: SetConfigOnboardingPayload;
|
|
1809
1857
|
setGlobalConfigPort: SetConfigPortPayload;
|
|
1810
1858
|
setGlobalConfigProject: SetConfigProjectPayload;
|
|
1811
1859
|
setInstanceSettings: SetInstanceSettingsPayload;
|
|
@@ -1826,9 +1874,11 @@ export type MutationRoot = {
|
|
|
1826
1874
|
toggleDnsRewrite: ToggleDnsRewritePayload;
|
|
1827
1875
|
togglePlugin: TogglePluginPayload;
|
|
1828
1876
|
toggleTamperRule: ToggleTamperRulePayload;
|
|
1877
|
+
toggleUpstreamPlugin: ToggleUpstreamPluginPayload;
|
|
1829
1878
|
toggleUpstreamProxyHttp: ToggleUpstreamProxyHttpPayload;
|
|
1830
1879
|
toggleUpstreamProxySocks: ToggleUpstreamProxySocksPayload;
|
|
1831
1880
|
toggleWorkflow: ToggleWorkflowPayload;
|
|
1881
|
+
track: TrackPayload;
|
|
1832
1882
|
uninstallPluginPackage: UninstallPluginPackagePayload;
|
|
1833
1883
|
updateAutomateSession: UpdateAutomateSessionPayload;
|
|
1834
1884
|
updateBrowser: UpdateBrowserPayload;
|
|
@@ -1840,6 +1890,7 @@ export type MutationRoot = {
|
|
|
1840
1890
|
updateRequestMetadata: UpdateRequestMetadataPayload;
|
|
1841
1891
|
updateScope: UpdateScopePayload;
|
|
1842
1892
|
updateTamperRule: UpdateTamperRulePayload;
|
|
1893
|
+
updateUpstreamPlugin: UpdateUpstreamPluginPayload;
|
|
1843
1894
|
updateUpstreamProxyHttp: UpdateUpstreamProxyHttpPayload;
|
|
1844
1895
|
updateUpstreamProxySocks: UpdateUpstreamProxySocksPayload;
|
|
1845
1896
|
updateViewerSettings: UpdateViewerSettingsPayload;
|
|
@@ -1904,6 +1955,9 @@ export type MutationRootCreateTamperRuleArgs = {
|
|
|
1904
1955
|
export type MutationRootCreateTamperRuleCollectionArgs = {
|
|
1905
1956
|
input: CreateTamperRuleCollectionInput;
|
|
1906
1957
|
};
|
|
1958
|
+
export type MutationRootCreateUpstreamPluginArgs = {
|
|
1959
|
+
input: CreateUpstreamPluginInput;
|
|
1960
|
+
};
|
|
1907
1961
|
export type MutationRootCreateUpstreamProxyHttpArgs = {
|
|
1908
1962
|
input: CreateUpstreamProxyHttpInput;
|
|
1909
1963
|
};
|
|
@@ -1974,6 +2028,9 @@ export type MutationRootDeleteTamperRuleArgs = {
|
|
|
1974
2028
|
export type MutationRootDeleteTamperRuleCollectionArgs = {
|
|
1975
2029
|
id: Scalars["ID"]["input"];
|
|
1976
2030
|
};
|
|
2031
|
+
export type MutationRootDeleteUpstreamPluginArgs = {
|
|
2032
|
+
id: Scalars["ID"]["input"];
|
|
2033
|
+
};
|
|
1977
2034
|
export type MutationRootDeleteUpstreamProxyHttpArgs = {
|
|
1978
2035
|
id: Scalars["ID"]["input"];
|
|
1979
2036
|
};
|
|
@@ -1992,6 +2049,9 @@ export type MutationRootDuplicateAutomateSessionArgs = {
|
|
|
1992
2049
|
export type MutationRootExportFindingsArgs = {
|
|
1993
2050
|
input: ExportFindingsInput;
|
|
1994
2051
|
};
|
|
2052
|
+
export type MutationRootExportTamperArgs = {
|
|
2053
|
+
input: ExportTamperInput;
|
|
2054
|
+
};
|
|
1995
2055
|
export type MutationRootForwardInterceptMessageArgs = {
|
|
1996
2056
|
id: Scalars["ID"]["input"];
|
|
1997
2057
|
input?: InputMaybe<ForwardInterceptMessageInput>;
|
|
@@ -2005,6 +2065,9 @@ export type MutationRootHideFindingsArgs = {
|
|
|
2005
2065
|
export type MutationRootImportCertificateArgs = {
|
|
2006
2066
|
input: ImportCertificateInput;
|
|
2007
2067
|
};
|
|
2068
|
+
export type MutationRootImportDataArgs = {
|
|
2069
|
+
input: ImportDataInput;
|
|
2070
|
+
};
|
|
2008
2071
|
export type MutationRootInstallPluginPackageArgs = {
|
|
2009
2072
|
input: InstallPluginPackageInput;
|
|
2010
2073
|
};
|
|
@@ -2033,6 +2096,10 @@ export type MutationRootRankTamperRuleArgs = {
|
|
|
2033
2096
|
id: Scalars["ID"]["input"];
|
|
2034
2097
|
input: RankTamperRuleInput;
|
|
2035
2098
|
};
|
|
2099
|
+
export type MutationRootRankUpstreamPluginArgs = {
|
|
2100
|
+
id: Scalars["ID"]["input"];
|
|
2101
|
+
input: RankInput;
|
|
2102
|
+
};
|
|
2036
2103
|
export type MutationRootRankUpstreamProxyHttpArgs = {
|
|
2037
2104
|
id: Scalars["ID"]["input"];
|
|
2038
2105
|
input: RankInput;
|
|
@@ -2128,9 +2195,6 @@ export type MutationRootSetActiveReplaySessionEntryArgs = {
|
|
|
2128
2195
|
entryId: Scalars["ID"]["input"];
|
|
2129
2196
|
id: Scalars["ID"]["input"];
|
|
2130
2197
|
};
|
|
2131
|
-
export type MutationRootSetGlobalConfigOnboardingArgs = {
|
|
2132
|
-
input: SetConfigOnboardingInput;
|
|
2133
|
-
};
|
|
2134
2198
|
export type MutationRootSetGlobalConfigPortArgs = {
|
|
2135
2199
|
input: Scalars["Int"]["input"];
|
|
2136
2200
|
};
|
|
@@ -2193,6 +2257,10 @@ export type MutationRootToggleTamperRuleArgs = {
|
|
|
2193
2257
|
enabled: Scalars["Boolean"]["input"];
|
|
2194
2258
|
id: Scalars["ID"]["input"];
|
|
2195
2259
|
};
|
|
2260
|
+
export type MutationRootToggleUpstreamPluginArgs = {
|
|
2261
|
+
enabled: Scalars["Boolean"]["input"];
|
|
2262
|
+
id: Scalars["ID"]["input"];
|
|
2263
|
+
};
|
|
2196
2264
|
export type MutationRootToggleUpstreamProxyHttpArgs = {
|
|
2197
2265
|
enabled: Scalars["Boolean"]["input"];
|
|
2198
2266
|
id: Scalars["ID"]["input"];
|
|
@@ -2205,6 +2273,9 @@ export type MutationRootToggleWorkflowArgs = {
|
|
|
2205
2273
|
enabled: Scalars["Boolean"]["input"];
|
|
2206
2274
|
id: Scalars["ID"]["input"];
|
|
2207
2275
|
};
|
|
2276
|
+
export type MutationRootTrackArgs = {
|
|
2277
|
+
input: TrackInput;
|
|
2278
|
+
};
|
|
2208
2279
|
export type MutationRootUninstallPluginPackageArgs = {
|
|
2209
2280
|
id: Scalars["ID"]["input"];
|
|
2210
2281
|
};
|
|
@@ -2244,6 +2315,10 @@ export type MutationRootUpdateTamperRuleArgs = {
|
|
|
2244
2315
|
id: Scalars["ID"]["input"];
|
|
2245
2316
|
input: UpdateTamperRuleInput;
|
|
2246
2317
|
};
|
|
2318
|
+
export type MutationRootUpdateUpstreamPluginArgs = {
|
|
2319
|
+
id: Scalars["ID"]["input"];
|
|
2320
|
+
input: UpdateUpstreamPluginInput;
|
|
2321
|
+
};
|
|
2247
2322
|
export type MutationRootUpdateUpstreamProxyHttpArgs = {
|
|
2248
2323
|
id: Scalars["ID"]["input"];
|
|
2249
2324
|
input: UpdateUpstreamProxyHttpInput;
|
|
@@ -2271,9 +2346,7 @@ export type NewerVersionUserError = UserError & {
|
|
|
2271
2346
|
version: Scalars["Int"]["output"];
|
|
2272
2347
|
};
|
|
2273
2348
|
export type OnboardingState = {
|
|
2274
|
-
|
|
2275
|
-
license: Scalars["Boolean"]["output"];
|
|
2276
|
-
project: Scalars["Boolean"]["output"];
|
|
2349
|
+
analytic: Scalars["Boolean"]["output"];
|
|
2277
2350
|
};
|
|
2278
2351
|
export declare const Ordering: {
|
|
2279
2352
|
readonly Asc: "ASC";
|
|
@@ -2519,6 +2592,7 @@ export type QueryRoot = {
|
|
|
2519
2592
|
tamperRuleCollection?: Maybe<TamperRuleCollection>;
|
|
2520
2593
|
tamperRuleCollections: Array<TamperRuleCollection>;
|
|
2521
2594
|
tasks: Array<Task>;
|
|
2595
|
+
upstreamPlugins: Array<UpstreamPlugin>;
|
|
2522
2596
|
upstreamProxiesHttp: Array<UpstreamProxyHttp>;
|
|
2523
2597
|
upstreamProxiesSocks: Array<UpstreamProxySocks>;
|
|
2524
2598
|
viewer: User;
|
|
@@ -2745,6 +2819,9 @@ export type RankTamperRulePayload = {
|
|
|
2745
2819
|
error?: Maybe<RankTamperRuleError>;
|
|
2746
2820
|
rule?: Maybe<TamperRule>;
|
|
2747
2821
|
};
|
|
2822
|
+
export type RankUpstreamPluginPayload = {
|
|
2823
|
+
upstream?: Maybe<UpstreamPlugin>;
|
|
2824
|
+
};
|
|
2748
2825
|
export type RankUpstreamProxyHttpPayload = {
|
|
2749
2826
|
proxy?: Maybe<UpstreamProxyHttp>;
|
|
2750
2827
|
};
|
|
@@ -3197,14 +3274,6 @@ export type SendAssistantMessagePayload = {
|
|
|
3197
3274
|
export type SetActiveReplaySessionEntryPayload = {
|
|
3198
3275
|
session?: Maybe<ReplaySession>;
|
|
3199
3276
|
};
|
|
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
3277
|
export type SetConfigPortPayload = {
|
|
3209
3278
|
config: GlobalConfig;
|
|
3210
3279
|
};
|
|
@@ -3217,6 +3286,16 @@ export type SetConfigProjectPayload = {
|
|
|
3217
3286
|
};
|
|
3218
3287
|
export type SetInstanceSettingsInput = {
|
|
3219
3288
|
aiProvider: SettingsAiProviderInput;
|
|
3289
|
+
analytics?: never;
|
|
3290
|
+
onboarding?: never;
|
|
3291
|
+
} | {
|
|
3292
|
+
aiProvider?: never;
|
|
3293
|
+
analytics: SettingsAnalyticInput;
|
|
3294
|
+
onboarding?: never;
|
|
3295
|
+
} | {
|
|
3296
|
+
aiProvider?: never;
|
|
3297
|
+
analytics?: never;
|
|
3298
|
+
onboarding: SettingsOnboardingInput;
|
|
3220
3299
|
};
|
|
3221
3300
|
export type SetInstanceSettingsPayload = {
|
|
3222
3301
|
settings: InstanceSettings;
|
|
@@ -3253,6 +3332,12 @@ export type SettingsAiProviderInput = {
|
|
|
3253
3332
|
openai?: never;
|
|
3254
3333
|
openrouter: AiProviderOpenRouterInput;
|
|
3255
3334
|
};
|
|
3335
|
+
export type SettingsAnalyticInput = {
|
|
3336
|
+
enabled: Scalars["Boolean"]["input"];
|
|
3337
|
+
};
|
|
3338
|
+
export type SettingsOnboardingInput = {
|
|
3339
|
+
analytic: Scalars["Boolean"]["input"];
|
|
3340
|
+
};
|
|
3256
3341
|
export declare const SitemapDescendantsDepth: {
|
|
3257
3342
|
readonly All: "ALL";
|
|
3258
3343
|
readonly Direct: "DIRECT";
|
|
@@ -3518,6 +3603,7 @@ export type SubscriptionRoot = {
|
|
|
3518
3603
|
createdStreamWsMessage: CreatedStreamWsMessagePayload;
|
|
3519
3604
|
createdTamperRule: CreatedTamperRulePayload;
|
|
3520
3605
|
createdTamperRuleCollection: CreatedTamperRuleCollectionPayload;
|
|
3606
|
+
createdUpstreamPlugin: CreatedUpstreamPluginPayload;
|
|
3521
3607
|
createdUpstreamProxyHttp: CreatedUpstreamProxyHttpPayload;
|
|
3522
3608
|
createdUpstreamProxySocks: CreatedUpstreamProxySocksPayload;
|
|
3523
3609
|
createdWorkflow: CreatedWorkflowPayload;
|
|
@@ -3544,6 +3630,7 @@ export type SubscriptionRoot = {
|
|
|
3544
3630
|
deletedSitemapEntry: DeletedSitemapEntriesPayload;
|
|
3545
3631
|
deletedTamperRule: DeletedTamperRulePayload;
|
|
3546
3632
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
|
|
3633
|
+
deletedUpstreamPlugin: DeletedUpstreamPluginPayload;
|
|
3547
3634
|
deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
|
|
3548
3635
|
deletedUpstreamProxySocks: DeletedUpstreamProxySocksPayload;
|
|
3549
3636
|
deletedWorkflow: DeletedWorkflowPayload;
|
|
@@ -3590,6 +3677,7 @@ export type SubscriptionRoot = {
|
|
|
3590
3677
|
updatedStreamWsMessage: UpdatedStreamWsMessagePayload;
|
|
3591
3678
|
updatedTamperRule: UpdatedTamperRulePayload;
|
|
3592
3679
|
updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload;
|
|
3680
|
+
updatedUpstreamPlugin: UpdatedUpstreamPluginPayload;
|
|
3593
3681
|
updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
|
|
3594
3682
|
updatedUpstreamProxySocks: UpdatedUpstreamProxySocksPayload;
|
|
3595
3683
|
updatedViewerAssistantUsage: UpdatedViewerAssistantUsagePayload;
|
|
@@ -3633,6 +3721,13 @@ export type SubscriptionRootUpdatedRequestArgs = {
|
|
|
3633
3721
|
export type SubscriptionRootUpdatedSitemapEntryArgs = {
|
|
3634
3722
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
3635
3723
|
};
|
|
3724
|
+
export type TamperExportScopeInput = {
|
|
3725
|
+
collections: Array<Scalars["ID"]["input"]>;
|
|
3726
|
+
rules?: never;
|
|
3727
|
+
} | {
|
|
3728
|
+
collections?: never;
|
|
3729
|
+
rules: Array<Scalars["ID"]["input"]>;
|
|
3730
|
+
};
|
|
3636
3731
|
export type TamperMatcherFull = {
|
|
3637
3732
|
full: Scalars["Boolean"]["output"];
|
|
3638
3733
|
};
|
|
@@ -4159,6 +4254,10 @@ export type TamperSectionResponseStatusCode = {
|
|
|
4159
4254
|
export type TamperSectionResponseStatusCodeInput = {
|
|
4160
4255
|
operation: TamperOperationStatusCodeInput;
|
|
4161
4256
|
};
|
|
4257
|
+
export type TamperSummary = {
|
|
4258
|
+
collectionsCreated: Scalars["Int"]["output"];
|
|
4259
|
+
rulesImported: Scalars["Int"]["output"];
|
|
4260
|
+
};
|
|
4162
4261
|
export type Task = {
|
|
4163
4262
|
createdAt: Scalars["DateTime"]["output"];
|
|
4164
4263
|
id: Scalars["ID"]["output"];
|
|
@@ -4266,6 +4365,9 @@ export type ToggleTamperRulePayload = {
|
|
|
4266
4365
|
error?: Maybe<ToggleTamperRuleError>;
|
|
4267
4366
|
rule?: Maybe<TamperRule>;
|
|
4268
4367
|
};
|
|
4368
|
+
export type ToggleUpstreamPluginPayload = {
|
|
4369
|
+
upstream?: Maybe<UpstreamPlugin>;
|
|
4370
|
+
};
|
|
4269
4371
|
export type ToggleUpstreamProxyHttpPayload = {
|
|
4270
4372
|
proxy?: Maybe<UpstreamProxyHttp>;
|
|
4271
4373
|
};
|
|
@@ -4277,6 +4379,14 @@ export type ToggleWorkflowPayload = {
|
|
|
4277
4379
|
error?: Maybe<ToggleWorkflowError>;
|
|
4278
4380
|
workflow?: Maybe<Workflow>;
|
|
4279
4381
|
};
|
|
4382
|
+
export type TrackInput = {
|
|
4383
|
+
createdAt: Scalars["Timestamp"]["input"];
|
|
4384
|
+
name: Scalars["String"]["input"];
|
|
4385
|
+
value: Scalars["JsonObject"]["input"];
|
|
4386
|
+
};
|
|
4387
|
+
export type TrackPayload = {
|
|
4388
|
+
success: Scalars["Boolean"]["output"];
|
|
4389
|
+
};
|
|
4280
4390
|
export type UninstallPluginPackageError = OtherUserError | UnknownIdUserError;
|
|
4281
4391
|
export type UninstallPluginPackagePayload = {
|
|
4282
4392
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -4371,14 +4481,23 @@ export type UpdateScopePayload = {
|
|
|
4371
4481
|
export type UpdateTamperRuleError = InvalidHttpqlUserError | InvalidRegexUserError | OtherUserError | UnknownIdUserError;
|
|
4372
4482
|
export type UpdateTamperRuleInput = {
|
|
4373
4483
|
condition?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
4374
|
-
name
|
|
4375
|
-
section
|
|
4376
|
-
sources
|
|
4484
|
+
name: Scalars["String"]["input"];
|
|
4485
|
+
section: TamperSectionInput;
|
|
4486
|
+
sources: Array<Source>;
|
|
4377
4487
|
};
|
|
4378
4488
|
export type UpdateTamperRulePayload = {
|
|
4379
4489
|
error?: Maybe<UpdateTamperRuleError>;
|
|
4380
4490
|
rule?: Maybe<TamperRule>;
|
|
4381
4491
|
};
|
|
4492
|
+
export type UpdateUpstreamPluginInput = {
|
|
4493
|
+
allowlist: Array<Scalars["String"]["input"]>;
|
|
4494
|
+
denylist: Array<Scalars["String"]["input"]>;
|
|
4495
|
+
enabled: Scalars["Boolean"]["input"];
|
|
4496
|
+
pluginId: Scalars["ID"]["input"];
|
|
4497
|
+
};
|
|
4498
|
+
export type UpdateUpstreamPluginPayload = {
|
|
4499
|
+
upstream?: Maybe<UpstreamPlugin>;
|
|
4500
|
+
};
|
|
4382
4501
|
export type UpdateUpstreamProxyHttpInput = {
|
|
4383
4502
|
allowlist: Array<Scalars["String"]["input"]>;
|
|
4384
4503
|
auth?: InputMaybe<UpstreamProxyAuthInput>;
|
|
@@ -4553,6 +4672,9 @@ export type UpdatedTamperRulePayload = {
|
|
|
4553
4672
|
rule: TamperRule;
|
|
4554
4673
|
snapshot: Scalars["Snapshot"]["output"];
|
|
4555
4674
|
};
|
|
4675
|
+
export type UpdatedUpstreamPluginPayload = {
|
|
4676
|
+
upstream: UpstreamPlugin;
|
|
4677
|
+
};
|
|
4556
4678
|
export type UpdatedUpstreamProxyHttpPayload = {
|
|
4557
4679
|
proxy: UpstreamProxyHttp;
|
|
4558
4680
|
};
|
|
@@ -4584,6 +4706,14 @@ export type UploadedBrowserPayload = {
|
|
|
4584
4706
|
export type UploadedHostedFilePayload = {
|
|
4585
4707
|
hostedFile: HostedFile;
|
|
4586
4708
|
};
|
|
4709
|
+
export type UpstreamPlugin = {
|
|
4710
|
+
allowlist: Array<Scalars["String"]["output"]>;
|
|
4711
|
+
denylist: Array<Scalars["String"]["output"]>;
|
|
4712
|
+
enabled: Scalars["Boolean"]["output"];
|
|
4713
|
+
id: Scalars["ID"]["output"];
|
|
4714
|
+
plugin: PluginBackend;
|
|
4715
|
+
rank: Scalars["Rank"]["output"];
|
|
4716
|
+
};
|
|
4587
4717
|
export type UpstreamProxyAuth = UpstreamProxyAuthBasic;
|
|
4588
4718
|
export type UpstreamProxyAuthBasic = {
|
|
4589
4719
|
password: Scalars["Sensitive"]["output"];
|
|
@@ -7817,32 +7947,11 @@ export type UpdatedBrowserSubscription = {
|
|
|
7817
7947
|
};
|
|
7818
7948
|
};
|
|
7819
7949
|
};
|
|
7820
|
-
export type OnboardingFullFragment = {
|
|
7821
|
-
__typename: "OnboardingState";
|
|
7822
|
-
caCertificate: boolean;
|
|
7823
|
-
license: boolean;
|
|
7824
|
-
project: boolean;
|
|
7825
|
-
};
|
|
7826
7950
|
export type GlobalConfigProjectFullFragment = {
|
|
7827
7951
|
__typename: "GlobalConfigProject";
|
|
7828
7952
|
selectOnStart: ProjectSelectOnStart;
|
|
7829
7953
|
selectProjectId?: string | undefined | null;
|
|
7830
7954
|
};
|
|
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
7955
|
export type UpdateGlobalConfigProjectMutationVariables = Exact<{
|
|
7847
7956
|
input: SetConfigProjectInput;
|
|
7848
7957
|
}>;
|
|
@@ -7863,12 +7972,6 @@ export type GlobalConfigQueryVariables = Exact<{
|
|
|
7863
7972
|
export type GlobalConfigQuery = {
|
|
7864
7973
|
globalConfig: {
|
|
7865
7974
|
address: string;
|
|
7866
|
-
onboarding: {
|
|
7867
|
-
__typename: "OnboardingState";
|
|
7868
|
-
caCertificate: boolean;
|
|
7869
|
-
license: boolean;
|
|
7870
|
-
project: boolean;
|
|
7871
|
-
};
|
|
7872
7975
|
project: {
|
|
7873
7976
|
__typename: "GlobalConfigProject";
|
|
7874
7977
|
selectOnStart: ProjectSelectOnStart;
|
|
@@ -10383,6 +10486,16 @@ export type InstanceSettingsFullFragment = {
|
|
|
10383
10486
|
apiKey: string;
|
|
10384
10487
|
} | undefined | null;
|
|
10385
10488
|
};
|
|
10489
|
+
onboarding: {
|
|
10490
|
+
__typename: "OnboardingState";
|
|
10491
|
+
analytic: boolean;
|
|
10492
|
+
};
|
|
10493
|
+
analytic: {
|
|
10494
|
+
__typename: "AnalyticStatus";
|
|
10495
|
+
enabled: boolean;
|
|
10496
|
+
local: boolean;
|
|
10497
|
+
cloud: boolean;
|
|
10498
|
+
};
|
|
10386
10499
|
};
|
|
10387
10500
|
export type TestAiProviderPayloadFullFragment = {
|
|
10388
10501
|
success?: boolean | undefined | null;
|
|
@@ -10416,6 +10529,16 @@ export type SetInstanceSettingsMutation = {
|
|
|
10416
10529
|
apiKey: string;
|
|
10417
10530
|
} | undefined | null;
|
|
10418
10531
|
};
|
|
10532
|
+
onboarding: {
|
|
10533
|
+
__typename: "OnboardingState";
|
|
10534
|
+
analytic: boolean;
|
|
10535
|
+
};
|
|
10536
|
+
analytic: {
|
|
10537
|
+
__typename: "AnalyticStatus";
|
|
10538
|
+
enabled: boolean;
|
|
10539
|
+
local: boolean;
|
|
10540
|
+
cloud: boolean;
|
|
10541
|
+
};
|
|
10419
10542
|
};
|
|
10420
10543
|
};
|
|
10421
10544
|
};
|
|
@@ -10455,6 +10578,16 @@ export type InstanceSettingsQuery = {
|
|
|
10455
10578
|
apiKey: string;
|
|
10456
10579
|
} | undefined | null;
|
|
10457
10580
|
};
|
|
10581
|
+
onboarding: {
|
|
10582
|
+
__typename: "OnboardingState";
|
|
10583
|
+
analytic: boolean;
|
|
10584
|
+
};
|
|
10585
|
+
analytic: {
|
|
10586
|
+
__typename: "AnalyticStatus";
|
|
10587
|
+
enabled: boolean;
|
|
10588
|
+
local: boolean;
|
|
10589
|
+
cloud: boolean;
|
|
10590
|
+
};
|
|
10458
10591
|
};
|
|
10459
10592
|
};
|
|
10460
10593
|
export type UpdatedInstanceSettingsSubscriptionVariables = Exact<{
|
|
@@ -10479,6 +10612,16 @@ export type UpdatedInstanceSettingsSubscription = {
|
|
|
10479
10612
|
apiKey: string;
|
|
10480
10613
|
} | undefined | null;
|
|
10481
10614
|
};
|
|
10615
|
+
onboarding: {
|
|
10616
|
+
__typename: "OnboardingState";
|
|
10617
|
+
analytic: boolean;
|
|
10618
|
+
};
|
|
10619
|
+
analytic: {
|
|
10620
|
+
__typename: "AnalyticStatus";
|
|
10621
|
+
enabled: boolean;
|
|
10622
|
+
local: boolean;
|
|
10623
|
+
cloud: boolean;
|
|
10624
|
+
};
|
|
10482
10625
|
};
|
|
10483
10626
|
};
|
|
10484
10627
|
};
|
|
@@ -22388,15 +22531,33 @@ export type UpstreamProxySocksFullFragment = {
|
|
|
22388
22531
|
SNI?: string | undefined | null;
|
|
22389
22532
|
};
|
|
22390
22533
|
};
|
|
22534
|
+
export type UpstreamPluginFullFragment = {
|
|
22535
|
+
__typename: "UpstreamPlugin";
|
|
22536
|
+
id: string;
|
|
22537
|
+
allowlist: Array<string>;
|
|
22538
|
+
denylist: Array<string>;
|
|
22539
|
+
enabled: boolean;
|
|
22540
|
+
rank: string;
|
|
22541
|
+
plugin: {
|
|
22542
|
+
__typename: "PluginBackend";
|
|
22543
|
+
id: string;
|
|
22544
|
+
name?: string | undefined | null;
|
|
22545
|
+
enabled: boolean;
|
|
22546
|
+
manifestId: string;
|
|
22547
|
+
package: {
|
|
22548
|
+
id: string;
|
|
22549
|
+
};
|
|
22550
|
+
};
|
|
22551
|
+
};
|
|
22391
22552
|
export type UpstreamProxyAuthBasicFullFragment = {
|
|
22392
22553
|
__typename: "UpstreamProxyAuthBasic";
|
|
22393
22554
|
username: string;
|
|
22394
22555
|
password: string;
|
|
22395
22556
|
};
|
|
22396
|
-
export type
|
|
22557
|
+
export type UpstreamsQueryVariables = Exact<{
|
|
22397
22558
|
[key: string]: never;
|
|
22398
22559
|
}>;
|
|
22399
|
-
export type
|
|
22560
|
+
export type UpstreamsQuery = {
|
|
22400
22561
|
upstreamProxiesHttp: Array<{
|
|
22401
22562
|
__typename: "UpstreamProxyHttp";
|
|
22402
22563
|
id: string;
|
|
@@ -22438,6 +22599,24 @@ export type UpstreamProxiesQuery = {
|
|
|
22438
22599
|
SNI?: string | undefined | null;
|
|
22439
22600
|
};
|
|
22440
22601
|
}>;
|
|
22602
|
+
upstreamPlugins: Array<{
|
|
22603
|
+
__typename: "UpstreamPlugin";
|
|
22604
|
+
id: string;
|
|
22605
|
+
allowlist: Array<string>;
|
|
22606
|
+
denylist: Array<string>;
|
|
22607
|
+
enabled: boolean;
|
|
22608
|
+
rank: string;
|
|
22609
|
+
plugin: {
|
|
22610
|
+
__typename: "PluginBackend";
|
|
22611
|
+
id: string;
|
|
22612
|
+
name?: string | undefined | null;
|
|
22613
|
+
enabled: boolean;
|
|
22614
|
+
manifestId: string;
|
|
22615
|
+
package: {
|
|
22616
|
+
id: string;
|
|
22617
|
+
};
|
|
22618
|
+
};
|
|
22619
|
+
}>;
|
|
22441
22620
|
};
|
|
22442
22621
|
export type CreateUpstreamProxyHttpMutationVariables = Exact<{
|
|
22443
22622
|
input: CreateUpstreamProxyHttpInput;
|
|
@@ -22538,6 +22717,68 @@ export type RankUpstreamProxyHttpMutation = {
|
|
|
22538
22717
|
} | undefined | null;
|
|
22539
22718
|
};
|
|
22540
22719
|
};
|
|
22720
|
+
export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22721
|
+
[key: string]: never;
|
|
22722
|
+
}>;
|
|
22723
|
+
export type CreatedUpstreamProxyHttpSubscription = {
|
|
22724
|
+
createdUpstreamProxyHttp: {
|
|
22725
|
+
proxy: {
|
|
22726
|
+
__typename: "UpstreamProxyHttp";
|
|
22727
|
+
id: string;
|
|
22728
|
+
allowlist: Array<string>;
|
|
22729
|
+
denylist: Array<string>;
|
|
22730
|
+
enabled: boolean;
|
|
22731
|
+
rank: string;
|
|
22732
|
+
auth?: {
|
|
22733
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22734
|
+
username: string;
|
|
22735
|
+
password: string;
|
|
22736
|
+
} | undefined | null;
|
|
22737
|
+
connection: {
|
|
22738
|
+
__typename: "ConnectionInfo";
|
|
22739
|
+
host: string;
|
|
22740
|
+
port: number;
|
|
22741
|
+
isTLS: boolean;
|
|
22742
|
+
SNI?: string | undefined | null;
|
|
22743
|
+
};
|
|
22744
|
+
};
|
|
22745
|
+
};
|
|
22746
|
+
};
|
|
22747
|
+
export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22748
|
+
[key: string]: never;
|
|
22749
|
+
}>;
|
|
22750
|
+
export type UpdatedUpstreamProxyHttpSubscription = {
|
|
22751
|
+
updatedUpstreamProxyHttp: {
|
|
22752
|
+
proxy: {
|
|
22753
|
+
__typename: "UpstreamProxyHttp";
|
|
22754
|
+
id: string;
|
|
22755
|
+
allowlist: Array<string>;
|
|
22756
|
+
denylist: Array<string>;
|
|
22757
|
+
enabled: boolean;
|
|
22758
|
+
rank: string;
|
|
22759
|
+
auth?: {
|
|
22760
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22761
|
+
username: string;
|
|
22762
|
+
password: string;
|
|
22763
|
+
} | undefined | null;
|
|
22764
|
+
connection: {
|
|
22765
|
+
__typename: "ConnectionInfo";
|
|
22766
|
+
host: string;
|
|
22767
|
+
port: number;
|
|
22768
|
+
isTLS: boolean;
|
|
22769
|
+
SNI?: string | undefined | null;
|
|
22770
|
+
};
|
|
22771
|
+
};
|
|
22772
|
+
};
|
|
22773
|
+
};
|
|
22774
|
+
export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22775
|
+
[key: string]: never;
|
|
22776
|
+
}>;
|
|
22777
|
+
export type DeletedUpstreamProxyHttpSubscription = {
|
|
22778
|
+
deletedUpstreamProxyHttp: {
|
|
22779
|
+
deletedProxyId: string;
|
|
22780
|
+
};
|
|
22781
|
+
};
|
|
22541
22782
|
export type CreateUpstreamProxySocksMutationVariables = Exact<{
|
|
22542
22783
|
input: CreateUpstreamProxySocksInput;
|
|
22543
22784
|
}>;
|
|
@@ -22640,17 +22881,18 @@ export type RankUpstreamProxySocksMutation = {
|
|
|
22640
22881
|
} | undefined | null;
|
|
22641
22882
|
};
|
|
22642
22883
|
};
|
|
22643
|
-
export type
|
|
22884
|
+
export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22644
22885
|
[key: string]: never;
|
|
22645
22886
|
}>;
|
|
22646
|
-
export type
|
|
22647
|
-
|
|
22887
|
+
export type CreatedUpstreamProxySocksSubscription = {
|
|
22888
|
+
createdUpstreamProxySocks: {
|
|
22648
22889
|
proxy: {
|
|
22649
|
-
__typename: "
|
|
22890
|
+
__typename: "UpstreamProxySocks";
|
|
22650
22891
|
id: string;
|
|
22651
22892
|
allowlist: Array<string>;
|
|
22652
22893
|
denylist: Array<string>;
|
|
22653
22894
|
enabled: boolean;
|
|
22895
|
+
includeDns: boolean;
|
|
22654
22896
|
rank: string;
|
|
22655
22897
|
auth?: {
|
|
22656
22898
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22667,17 +22909,18 @@ export type CreatedUpstreamProxyHttpSubscription = {
|
|
|
22667
22909
|
};
|
|
22668
22910
|
};
|
|
22669
22911
|
};
|
|
22670
|
-
export type
|
|
22912
|
+
export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22671
22913
|
[key: string]: never;
|
|
22672
22914
|
}>;
|
|
22673
|
-
export type
|
|
22674
|
-
|
|
22915
|
+
export type UpdatedUpstreamProxySocksSubscription = {
|
|
22916
|
+
updatedUpstreamProxySocks: {
|
|
22675
22917
|
proxy: {
|
|
22676
|
-
__typename: "
|
|
22918
|
+
__typename: "UpstreamProxySocks";
|
|
22677
22919
|
id: string;
|
|
22678
22920
|
allowlist: Array<string>;
|
|
22679
22921
|
denylist: Array<string>;
|
|
22680
22922
|
enabled: boolean;
|
|
22923
|
+
includeDns: boolean;
|
|
22681
22924
|
rank: string;
|
|
22682
22925
|
auth?: {
|
|
22683
22926
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22694,76 +22937,155 @@ export type UpdatedUpstreamProxyHttpSubscription = {
|
|
|
22694
22937
|
};
|
|
22695
22938
|
};
|
|
22696
22939
|
};
|
|
22697
|
-
export type
|
|
22940
|
+
export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22698
22941
|
[key: string]: never;
|
|
22699
22942
|
}>;
|
|
22700
|
-
export type
|
|
22701
|
-
|
|
22943
|
+
export type DeletedUpstreamProxySocksSubscription = {
|
|
22944
|
+
deletedUpstreamProxySocks: {
|
|
22702
22945
|
deletedProxyId: string;
|
|
22703
22946
|
};
|
|
22704
22947
|
};
|
|
22705
|
-
export type
|
|
22948
|
+
export type CreateUpstreamPluginMutationVariables = Exact<{
|
|
22949
|
+
input: CreateUpstreamPluginInput;
|
|
22950
|
+
}>;
|
|
22951
|
+
export type CreateUpstreamPluginMutation = {
|
|
22952
|
+
createUpstreamPlugin: {
|
|
22953
|
+
upstream?: {
|
|
22954
|
+
__typename: "UpstreamPlugin";
|
|
22955
|
+
id: string;
|
|
22956
|
+
allowlist: Array<string>;
|
|
22957
|
+
denylist: Array<string>;
|
|
22958
|
+
enabled: boolean;
|
|
22959
|
+
rank: string;
|
|
22960
|
+
plugin: {
|
|
22961
|
+
__typename: "PluginBackend";
|
|
22962
|
+
id: string;
|
|
22963
|
+
name?: string | undefined | null;
|
|
22964
|
+
enabled: boolean;
|
|
22965
|
+
manifestId: string;
|
|
22966
|
+
package: {
|
|
22967
|
+
id: string;
|
|
22968
|
+
};
|
|
22969
|
+
};
|
|
22970
|
+
} | undefined | null;
|
|
22971
|
+
};
|
|
22972
|
+
};
|
|
22973
|
+
export type UpdateUpstreamPluginMutationVariables = Exact<{
|
|
22974
|
+
id: Scalars["ID"]["input"];
|
|
22975
|
+
input: UpdateUpstreamPluginInput;
|
|
22976
|
+
}>;
|
|
22977
|
+
export type UpdateUpstreamPluginMutation = {
|
|
22978
|
+
updateUpstreamPlugin: {
|
|
22979
|
+
upstream?: {
|
|
22980
|
+
__typename: "UpstreamPlugin";
|
|
22981
|
+
id: string;
|
|
22982
|
+
allowlist: Array<string>;
|
|
22983
|
+
denylist: Array<string>;
|
|
22984
|
+
enabled: boolean;
|
|
22985
|
+
rank: string;
|
|
22986
|
+
plugin: {
|
|
22987
|
+
__typename: "PluginBackend";
|
|
22988
|
+
id: string;
|
|
22989
|
+
name?: string | undefined | null;
|
|
22990
|
+
enabled: boolean;
|
|
22991
|
+
manifestId: string;
|
|
22992
|
+
package: {
|
|
22993
|
+
id: string;
|
|
22994
|
+
};
|
|
22995
|
+
};
|
|
22996
|
+
} | undefined | null;
|
|
22997
|
+
};
|
|
22998
|
+
};
|
|
22999
|
+
export type DeleteUpstreamPluginMutationVariables = Exact<{
|
|
23000
|
+
id: Scalars["ID"]["input"];
|
|
23001
|
+
}>;
|
|
23002
|
+
export type DeleteUpstreamPluginMutation = {
|
|
23003
|
+
deleteUpstreamPlugin: {
|
|
23004
|
+
deletedId?: string | undefined | null;
|
|
23005
|
+
};
|
|
23006
|
+
};
|
|
23007
|
+
export type RankUpstreamPluginMutationVariables = Exact<{
|
|
23008
|
+
id: Scalars["ID"]["input"];
|
|
23009
|
+
input: RankInput;
|
|
23010
|
+
}>;
|
|
23011
|
+
export type RankUpstreamPluginMutation = {
|
|
23012
|
+
rankUpstreamPlugin: {
|
|
23013
|
+
upstream?: {
|
|
23014
|
+
__typename: "UpstreamPlugin";
|
|
23015
|
+
id: string;
|
|
23016
|
+
allowlist: Array<string>;
|
|
23017
|
+
denylist: Array<string>;
|
|
23018
|
+
enabled: boolean;
|
|
23019
|
+
rank: string;
|
|
23020
|
+
plugin: {
|
|
23021
|
+
__typename: "PluginBackend";
|
|
23022
|
+
id: string;
|
|
23023
|
+
name?: string | undefined | null;
|
|
23024
|
+
enabled: boolean;
|
|
23025
|
+
manifestId: string;
|
|
23026
|
+
package: {
|
|
23027
|
+
id: string;
|
|
23028
|
+
};
|
|
23029
|
+
};
|
|
23030
|
+
} | undefined | null;
|
|
23031
|
+
};
|
|
23032
|
+
};
|
|
23033
|
+
export type CreatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22706
23034
|
[key: string]: never;
|
|
22707
23035
|
}>;
|
|
22708
|
-
export type
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
__typename: "
|
|
23036
|
+
export type CreatedUpstreamPluginSubscription = {
|
|
23037
|
+
createdUpstreamPlugin: {
|
|
23038
|
+
upstream: {
|
|
23039
|
+
__typename: "UpstreamPlugin";
|
|
22712
23040
|
id: string;
|
|
22713
23041
|
allowlist: Array<string>;
|
|
22714
23042
|
denylist: Array<string>;
|
|
22715
23043
|
enabled: boolean;
|
|
22716
|
-
includeDns: boolean;
|
|
22717
23044
|
rank: string;
|
|
22718
|
-
|
|
22719
|
-
__typename: "
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
isTLS: boolean;
|
|
22728
|
-
SNI?: string | undefined | null;
|
|
23045
|
+
plugin: {
|
|
23046
|
+
__typename: "PluginBackend";
|
|
23047
|
+
id: string;
|
|
23048
|
+
name?: string | undefined | null;
|
|
23049
|
+
enabled: boolean;
|
|
23050
|
+
manifestId: string;
|
|
23051
|
+
package: {
|
|
23052
|
+
id: string;
|
|
23053
|
+
};
|
|
22729
23054
|
};
|
|
22730
23055
|
};
|
|
22731
23056
|
};
|
|
22732
23057
|
};
|
|
22733
|
-
export type
|
|
23058
|
+
export type UpdatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22734
23059
|
[key: string]: never;
|
|
22735
23060
|
}>;
|
|
22736
|
-
export type
|
|
22737
|
-
|
|
22738
|
-
|
|
22739
|
-
__typename: "
|
|
23061
|
+
export type UpdatedUpstreamPluginSubscription = {
|
|
23062
|
+
updatedUpstreamPlugin: {
|
|
23063
|
+
upstream: {
|
|
23064
|
+
__typename: "UpstreamPlugin";
|
|
22740
23065
|
id: string;
|
|
22741
23066
|
allowlist: Array<string>;
|
|
22742
23067
|
denylist: Array<string>;
|
|
22743
23068
|
enabled: boolean;
|
|
22744
|
-
includeDns: boolean;
|
|
22745
23069
|
rank: string;
|
|
22746
|
-
|
|
22747
|
-
__typename: "
|
|
22748
|
-
|
|
22749
|
-
|
|
22750
|
-
|
|
22751
|
-
|
|
22752
|
-
|
|
22753
|
-
|
|
22754
|
-
|
|
22755
|
-
isTLS: boolean;
|
|
22756
|
-
SNI?: string | undefined | null;
|
|
23070
|
+
plugin: {
|
|
23071
|
+
__typename: "PluginBackend";
|
|
23072
|
+
id: string;
|
|
23073
|
+
name?: string | undefined | null;
|
|
23074
|
+
enabled: boolean;
|
|
23075
|
+
manifestId: string;
|
|
23076
|
+
package: {
|
|
23077
|
+
id: string;
|
|
23078
|
+
};
|
|
22757
23079
|
};
|
|
22758
23080
|
};
|
|
22759
23081
|
};
|
|
22760
23082
|
};
|
|
22761
|
-
export type
|
|
23083
|
+
export type DeletedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22762
23084
|
[key: string]: never;
|
|
22763
23085
|
}>;
|
|
22764
|
-
export type
|
|
22765
|
-
|
|
22766
|
-
|
|
23086
|
+
export type DeletedUpstreamPluginSubscription = {
|
|
23087
|
+
deletedUpstreamPlugin: {
|
|
23088
|
+
deletedUpstreamId: string;
|
|
22767
23089
|
};
|
|
22768
23090
|
};
|
|
22769
23091
|
export type UserProfileFullFragment = {
|
|
@@ -23423,7 +23745,6 @@ export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fr
|
|
|
23423
23745
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
23424
23746
|
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
23747
|
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
23748
|
export declare const GlobalConfigProjectFullFragmentDoc = "\n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
|
|
23428
23749
|
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
23750
|
export declare const DnsUpstreamFullFragmentDoc = "\n fragment dnsUpstreamFull on DNSUpstream {\n id\n ip\n name\n}\n ";
|
|
@@ -23468,7 +23789,7 @@ export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEn
|
|
|
23468
23789
|
export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
|
|
23469
23790
|
export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
23470
23791
|
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 ";
|
|
23792
|
+
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
23793
|
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
23794
|
export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
|
|
23474
23795
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
@@ -23562,6 +23883,7 @@ export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment stream
|
|
|
23562
23883
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
23563
23884
|
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
23885
|
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 ";
|
|
23886
|
+
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
23887
|
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
23888
|
export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
23567
23889
|
export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
|
|
@@ -23636,9 +23958,8 @@ export declare const UpdateBrowserDocument = "\n mutation updateBrowser {\n
|
|
|
23636
23958
|
export declare const DeletedBrowserDocument = "\n subscription deletedBrowser {\n deletedBrowser {\n deletedBrowserId\n }\n}\n ";
|
|
23637
23959
|
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
23960
|
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
23961
|
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
|
|
23962
|
+
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
23963
|
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
23964
|
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
23965
|
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 +24033,10 @@ export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile
|
|
|
23712
24033
|
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
24034
|
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
24035
|
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 ";
|
|
24036
|
+
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
24037
|
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 ";
|
|
24038
|
+
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 ";
|
|
24039
|
+
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
24040
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
23720
24041
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
23721
24042
|
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 ";
|
|
@@ -23835,23 +24156,30 @@ export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n
|
|
|
23835
24156
|
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
24157
|
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
24158
|
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
|
|
24159
|
+
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
24160
|
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
24161
|
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
24162
|
export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
|
|
23842
24163
|
export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
|
|
23843
24164
|
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 ";
|
|
24165
|
+
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 ";
|
|
24166
|
+
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 ";
|
|
24167
|
+
export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
|
|
23844
24168
|
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
24169
|
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
24170
|
export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
|
|
23847
24171
|
export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
|
|
23848
24172
|
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
24173
|
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
24174
|
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
24175
|
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
24176
|
+
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 ";
|
|
24177
|
+
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 ";
|
|
24178
|
+
export declare const DeleteUpstreamPluginDocument = "\n mutation deleteUpstreamPlugin($id: ID!) {\n deleteUpstreamPlugin(id: $id) {\n deletedId\n }\n}\n ";
|
|
24179
|
+
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 ";
|
|
24180
|
+
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 ";
|
|
24181
|
+
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 ";
|
|
24182
|
+
export declare const DeletedUpstreamPluginDocument = "\n subscription deletedUpstreamPlugin {\n deletedUpstreamPlugin {\n deletedUpstreamId\n }\n}\n ";
|
|
23855
24183
|
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
24184
|
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
24185
|
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 ";
|
|
@@ -23945,7 +24273,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
23945
24273
|
deletedBrowser(variables?: DeletedBrowserSubscriptionVariables, options?: C): AsyncIterable<DeletedBrowserSubscription>;
|
|
23946
24274
|
installedBrowser(variables?: InstalledBrowserSubscriptionVariables, options?: C): AsyncIterable<InstalledBrowserSubscription>;
|
|
23947
24275
|
updatedBrowser(variables?: UpdatedBrowserSubscriptionVariables, options?: C): AsyncIterable<UpdatedBrowserSubscription>;
|
|
23948
|
-
updateOnboarding(variables: UpdateOnboardingMutationVariables, options?: C): Promise<UpdateOnboardingMutation>;
|
|
23949
24276
|
updateGlobalConfigProject(variables: UpdateGlobalConfigProjectMutationVariables, options?: C): Promise<UpdateGlobalConfigProjectMutation>;
|
|
23950
24277
|
globalConfig(variables?: GlobalConfigQueryVariables, options?: C): Promise<GlobalConfigQuery>;
|
|
23951
24278
|
globalConfigProject(variables?: GlobalConfigProjectQueryVariables, options?: C): Promise<GlobalConfigProjectQuery>;
|
|
@@ -24144,23 +24471,30 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24144
24471
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
24145
24472
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|
|
24146
24473
|
finishedTask(variables?: FinishedTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedTaskSubscription>;
|
|
24147
|
-
|
|
24474
|
+
upstreams(variables?: UpstreamsQueryVariables, options?: C): Promise<UpstreamsQuery>;
|
|
24148
24475
|
createUpstreamProxyHttp(variables: CreateUpstreamProxyHttpMutationVariables, options?: C): Promise<CreateUpstreamProxyHttpMutation>;
|
|
24149
24476
|
updateUpstreamProxyHttp(variables: UpdateUpstreamProxyHttpMutationVariables, options?: C): Promise<UpdateUpstreamProxyHttpMutation>;
|
|
24150
24477
|
deleteUpstreamProxyHttp(variables: DeleteUpstreamProxyHttpMutationVariables, options?: C): Promise<DeleteUpstreamProxyHttpMutation>;
|
|
24151
24478
|
testUpstreamProxyHttp(variables: TestUpstreamProxyHttpMutationVariables, options?: C): Promise<TestUpstreamProxyHttpMutation>;
|
|
24152
24479
|
rankUpstreamProxyHttp(variables: RankUpstreamProxyHttpMutationVariables, options?: C): Promise<RankUpstreamProxyHttpMutation>;
|
|
24480
|
+
createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
|
|
24481
|
+
updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
|
|
24482
|
+
deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
|
|
24153
24483
|
createUpstreamProxySocks(variables: CreateUpstreamProxySocksMutationVariables, options?: C): Promise<CreateUpstreamProxySocksMutation>;
|
|
24154
24484
|
updateUpstreamProxySocks(variables: UpdateUpstreamProxySocksMutationVariables, options?: C): Promise<UpdateUpstreamProxySocksMutation>;
|
|
24155
24485
|
deleteUpstreamProxySocks(variables: DeleteUpstreamProxySocksMutationVariables, options?: C): Promise<DeleteUpstreamProxySocksMutation>;
|
|
24156
24486
|
testUpstreamProxySocks(variables: TestUpstreamProxySocksMutationVariables, options?: C): Promise<TestUpstreamProxySocksMutation>;
|
|
24157
24487
|
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
24488
|
createdUpstreamProxySocks(variables?: CreatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxySocksSubscription>;
|
|
24162
24489
|
updatedUpstreamProxySocks(variables?: UpdatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxySocksSubscription>;
|
|
24163
24490
|
deletedUpstreamProxySocks(variables?: DeletedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxySocksSubscription>;
|
|
24491
|
+
createUpstreamPlugin(variables: CreateUpstreamPluginMutationVariables, options?: C): Promise<CreateUpstreamPluginMutation>;
|
|
24492
|
+
updateUpstreamPlugin(variables: UpdateUpstreamPluginMutationVariables, options?: C): Promise<UpdateUpstreamPluginMutation>;
|
|
24493
|
+
deleteUpstreamPlugin(variables: DeleteUpstreamPluginMutationVariables, options?: C): Promise<DeleteUpstreamPluginMutation>;
|
|
24494
|
+
rankUpstreamPlugin(variables: RankUpstreamPluginMutationVariables, options?: C): Promise<RankUpstreamPluginMutation>;
|
|
24495
|
+
createdUpstreamPlugin(variables?: CreatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamPluginSubscription>;
|
|
24496
|
+
updatedUpstreamPlugin(variables?: UpdatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamPluginSubscription>;
|
|
24497
|
+
deletedUpstreamPlugin(variables?: DeletedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamPluginSubscription>;
|
|
24164
24498
|
updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
|
|
24165
24499
|
userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
|
|
24166
24500
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|