@caido/sdk-frontend 0.54.2-beta.0 → 0.54.2-beta.10
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 +457 -113
- package/src/types/index.d.ts +27 -3
- package/src/types/private/analytics.d.ts +29 -0
- package/src/types/sdks/ai.d.ts +6 -1
- package/src/types/sdks/automate.d.ts +37 -0
- package/src/types/sdks/findings.d.ts +6 -0
- package/src/types/sdks/httpHistory.d.ts +6 -0
- package/src/types/sdks/index.d.ts +11 -0
- package/src/types/sdks/matchReplace.d.ts +19 -1
- package/src/types/sdks/replay.d.ts +19 -1
- package/src/types/sdks/search.d.ts +6 -0
- package/src/types/sdks/settings.d.ts +22 -0
- package/src/types/sdks/sitemap.d.ts +52 -1
- package/src/types/sdks/window.d.ts +13 -2
- package/src/types/types/ai.d.ts +20 -0
- package/src/types/types/assistant.d.ts +7 -0
- package/src/types/types/automate.d.ts +56 -0
- package/src/types/types/backups.d.ts +7 -0
- package/src/types/types/certificate.d.ts +7 -0
- package/src/types/types/environment.d.ts +9 -0
- package/src/types/types/exports.d.ts +7 -0
- package/src/types/types/files.d.ts +7 -0
- package/src/types/types/filter.d.ts +9 -1
- package/src/types/types/findings.d.ts +9 -1
- package/src/types/types/httpHistory.d.ts +9 -0
- package/src/types/types/intercept.d.ts +19 -0
- package/src/types/types/matchReplace.d.ts +9 -1
- package/src/types/types/projects.d.ts +7 -0
- package/src/types/types/replay.d.ts +17 -1
- package/src/types/types/response.d.ts +27 -0
- package/src/types/types/scopes.d.ts +9 -1
- package/src/types/types/search.d.ts +7 -0
- package/src/types/types/settings.d.ts +25 -0
- package/src/types/types/sitemap.d.ts +96 -0
- package/src/types/types/utils.d.ts +28 -0
- package/src/types/types/websocket.d.ts +7 -0
- package/src/types/types/window.d.ts +31 -0
- 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 = 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"];
|
|
@@ -4692,6 +4822,14 @@ export type Workspace = {
|
|
|
4692
4822
|
id: Scalars["ID"]["output"];
|
|
4693
4823
|
name: Scalars["String"]["output"];
|
|
4694
4824
|
};
|
|
4825
|
+
export type TrackMutationVariables = Exact<{
|
|
4826
|
+
input: TrackInput;
|
|
4827
|
+
}>;
|
|
4828
|
+
export type TrackMutation = {
|
|
4829
|
+
track: {
|
|
4830
|
+
success: boolean;
|
|
4831
|
+
};
|
|
4832
|
+
};
|
|
4695
4833
|
export type AssistantMessageFullFragment = {
|
|
4696
4834
|
__typename: "AssistantMessage";
|
|
4697
4835
|
id: string;
|
|
@@ -7817,32 +7955,11 @@ export type UpdatedBrowserSubscription = {
|
|
|
7817
7955
|
};
|
|
7818
7956
|
};
|
|
7819
7957
|
};
|
|
7820
|
-
export type OnboardingFullFragment = {
|
|
7821
|
-
__typename: "OnboardingState";
|
|
7822
|
-
caCertificate: boolean;
|
|
7823
|
-
license: boolean;
|
|
7824
|
-
project: boolean;
|
|
7825
|
-
};
|
|
7826
7958
|
export type GlobalConfigProjectFullFragment = {
|
|
7827
7959
|
__typename: "GlobalConfigProject";
|
|
7828
7960
|
selectOnStart: ProjectSelectOnStart;
|
|
7829
7961
|
selectProjectId?: string | undefined | null;
|
|
7830
7962
|
};
|
|
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
7963
|
export type UpdateGlobalConfigProjectMutationVariables = Exact<{
|
|
7847
7964
|
input: SetConfigProjectInput;
|
|
7848
7965
|
}>;
|
|
@@ -7863,12 +7980,6 @@ export type GlobalConfigQueryVariables = Exact<{
|
|
|
7863
7980
|
export type GlobalConfigQuery = {
|
|
7864
7981
|
globalConfig: {
|
|
7865
7982
|
address: string;
|
|
7866
|
-
onboarding: {
|
|
7867
|
-
__typename: "OnboardingState";
|
|
7868
|
-
caCertificate: boolean;
|
|
7869
|
-
license: boolean;
|
|
7870
|
-
project: boolean;
|
|
7871
|
-
};
|
|
7872
7983
|
project: {
|
|
7873
7984
|
__typename: "GlobalConfigProject";
|
|
7874
7985
|
selectOnStart: ProjectSelectOnStart;
|
|
@@ -10383,6 +10494,16 @@ export type InstanceSettingsFullFragment = {
|
|
|
10383
10494
|
apiKey: string;
|
|
10384
10495
|
} | undefined | null;
|
|
10385
10496
|
};
|
|
10497
|
+
onboarding: {
|
|
10498
|
+
__typename: "OnboardingState";
|
|
10499
|
+
analytic: boolean;
|
|
10500
|
+
};
|
|
10501
|
+
analytic: {
|
|
10502
|
+
__typename: "AnalyticStatus";
|
|
10503
|
+
enabled: boolean;
|
|
10504
|
+
local: boolean;
|
|
10505
|
+
cloud: boolean;
|
|
10506
|
+
};
|
|
10386
10507
|
};
|
|
10387
10508
|
export type TestAiProviderPayloadFullFragment = {
|
|
10388
10509
|
success?: boolean | undefined | null;
|
|
@@ -10416,6 +10537,16 @@ export type SetInstanceSettingsMutation = {
|
|
|
10416
10537
|
apiKey: string;
|
|
10417
10538
|
} | undefined | null;
|
|
10418
10539
|
};
|
|
10540
|
+
onboarding: {
|
|
10541
|
+
__typename: "OnboardingState";
|
|
10542
|
+
analytic: boolean;
|
|
10543
|
+
};
|
|
10544
|
+
analytic: {
|
|
10545
|
+
__typename: "AnalyticStatus";
|
|
10546
|
+
enabled: boolean;
|
|
10547
|
+
local: boolean;
|
|
10548
|
+
cloud: boolean;
|
|
10549
|
+
};
|
|
10419
10550
|
};
|
|
10420
10551
|
};
|
|
10421
10552
|
};
|
|
@@ -10455,6 +10586,16 @@ export type InstanceSettingsQuery = {
|
|
|
10455
10586
|
apiKey: string;
|
|
10456
10587
|
} | undefined | null;
|
|
10457
10588
|
};
|
|
10589
|
+
onboarding: {
|
|
10590
|
+
__typename: "OnboardingState";
|
|
10591
|
+
analytic: boolean;
|
|
10592
|
+
};
|
|
10593
|
+
analytic: {
|
|
10594
|
+
__typename: "AnalyticStatus";
|
|
10595
|
+
enabled: boolean;
|
|
10596
|
+
local: boolean;
|
|
10597
|
+
cloud: boolean;
|
|
10598
|
+
};
|
|
10458
10599
|
};
|
|
10459
10600
|
};
|
|
10460
10601
|
export type UpdatedInstanceSettingsSubscriptionVariables = Exact<{
|
|
@@ -10479,6 +10620,16 @@ export type UpdatedInstanceSettingsSubscription = {
|
|
|
10479
10620
|
apiKey: string;
|
|
10480
10621
|
} | undefined | null;
|
|
10481
10622
|
};
|
|
10623
|
+
onboarding: {
|
|
10624
|
+
__typename: "OnboardingState";
|
|
10625
|
+
analytic: boolean;
|
|
10626
|
+
};
|
|
10627
|
+
analytic: {
|
|
10628
|
+
__typename: "AnalyticStatus";
|
|
10629
|
+
enabled: boolean;
|
|
10630
|
+
local: boolean;
|
|
10631
|
+
cloud: boolean;
|
|
10632
|
+
};
|
|
10482
10633
|
};
|
|
10483
10634
|
};
|
|
10484
10635
|
};
|
|
@@ -22388,15 +22539,33 @@ export type UpstreamProxySocksFullFragment = {
|
|
|
22388
22539
|
SNI?: string | undefined | null;
|
|
22389
22540
|
};
|
|
22390
22541
|
};
|
|
22542
|
+
export type UpstreamPluginFullFragment = {
|
|
22543
|
+
__typename: "UpstreamPlugin";
|
|
22544
|
+
id: string;
|
|
22545
|
+
allowlist: Array<string>;
|
|
22546
|
+
denylist: Array<string>;
|
|
22547
|
+
enabled: boolean;
|
|
22548
|
+
rank: string;
|
|
22549
|
+
plugin: {
|
|
22550
|
+
__typename: "PluginBackend";
|
|
22551
|
+
id: string;
|
|
22552
|
+
name?: string | undefined | null;
|
|
22553
|
+
enabled: boolean;
|
|
22554
|
+
manifestId: string;
|
|
22555
|
+
package: {
|
|
22556
|
+
id: string;
|
|
22557
|
+
};
|
|
22558
|
+
};
|
|
22559
|
+
};
|
|
22391
22560
|
export type UpstreamProxyAuthBasicFullFragment = {
|
|
22392
22561
|
__typename: "UpstreamProxyAuthBasic";
|
|
22393
22562
|
username: string;
|
|
22394
22563
|
password: string;
|
|
22395
22564
|
};
|
|
22396
|
-
export type
|
|
22565
|
+
export type UpstreamsQueryVariables = Exact<{
|
|
22397
22566
|
[key: string]: never;
|
|
22398
22567
|
}>;
|
|
22399
|
-
export type
|
|
22568
|
+
export type UpstreamsQuery = {
|
|
22400
22569
|
upstreamProxiesHttp: Array<{
|
|
22401
22570
|
__typename: "UpstreamProxyHttp";
|
|
22402
22571
|
id: string;
|
|
@@ -22438,6 +22607,24 @@ export type UpstreamProxiesQuery = {
|
|
|
22438
22607
|
SNI?: string | undefined | null;
|
|
22439
22608
|
};
|
|
22440
22609
|
}>;
|
|
22610
|
+
upstreamPlugins: Array<{
|
|
22611
|
+
__typename: "UpstreamPlugin";
|
|
22612
|
+
id: string;
|
|
22613
|
+
allowlist: Array<string>;
|
|
22614
|
+
denylist: Array<string>;
|
|
22615
|
+
enabled: boolean;
|
|
22616
|
+
rank: string;
|
|
22617
|
+
plugin: {
|
|
22618
|
+
__typename: "PluginBackend";
|
|
22619
|
+
id: string;
|
|
22620
|
+
name?: string | undefined | null;
|
|
22621
|
+
enabled: boolean;
|
|
22622
|
+
manifestId: string;
|
|
22623
|
+
package: {
|
|
22624
|
+
id: string;
|
|
22625
|
+
};
|
|
22626
|
+
};
|
|
22627
|
+
}>;
|
|
22441
22628
|
};
|
|
22442
22629
|
export type CreateUpstreamProxyHttpMutationVariables = Exact<{
|
|
22443
22630
|
input: CreateUpstreamProxyHttpInput;
|
|
@@ -22538,6 +22725,68 @@ export type RankUpstreamProxyHttpMutation = {
|
|
|
22538
22725
|
} | undefined | null;
|
|
22539
22726
|
};
|
|
22540
22727
|
};
|
|
22728
|
+
export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22729
|
+
[key: string]: never;
|
|
22730
|
+
}>;
|
|
22731
|
+
export type CreatedUpstreamProxyHttpSubscription = {
|
|
22732
|
+
createdUpstreamProxyHttp: {
|
|
22733
|
+
proxy: {
|
|
22734
|
+
__typename: "UpstreamProxyHttp";
|
|
22735
|
+
id: string;
|
|
22736
|
+
allowlist: Array<string>;
|
|
22737
|
+
denylist: Array<string>;
|
|
22738
|
+
enabled: boolean;
|
|
22739
|
+
rank: string;
|
|
22740
|
+
auth?: {
|
|
22741
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22742
|
+
username: string;
|
|
22743
|
+
password: string;
|
|
22744
|
+
} | undefined | null;
|
|
22745
|
+
connection: {
|
|
22746
|
+
__typename: "ConnectionInfo";
|
|
22747
|
+
host: string;
|
|
22748
|
+
port: number;
|
|
22749
|
+
isTLS: boolean;
|
|
22750
|
+
SNI?: string | undefined | null;
|
|
22751
|
+
};
|
|
22752
|
+
};
|
|
22753
|
+
};
|
|
22754
|
+
};
|
|
22755
|
+
export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22756
|
+
[key: string]: never;
|
|
22757
|
+
}>;
|
|
22758
|
+
export type UpdatedUpstreamProxyHttpSubscription = {
|
|
22759
|
+
updatedUpstreamProxyHttp: {
|
|
22760
|
+
proxy: {
|
|
22761
|
+
__typename: "UpstreamProxyHttp";
|
|
22762
|
+
id: string;
|
|
22763
|
+
allowlist: Array<string>;
|
|
22764
|
+
denylist: Array<string>;
|
|
22765
|
+
enabled: boolean;
|
|
22766
|
+
rank: string;
|
|
22767
|
+
auth?: {
|
|
22768
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22769
|
+
username: string;
|
|
22770
|
+
password: string;
|
|
22771
|
+
} | undefined | null;
|
|
22772
|
+
connection: {
|
|
22773
|
+
__typename: "ConnectionInfo";
|
|
22774
|
+
host: string;
|
|
22775
|
+
port: number;
|
|
22776
|
+
isTLS: boolean;
|
|
22777
|
+
SNI?: string | undefined | null;
|
|
22778
|
+
};
|
|
22779
|
+
};
|
|
22780
|
+
};
|
|
22781
|
+
};
|
|
22782
|
+
export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22783
|
+
[key: string]: never;
|
|
22784
|
+
}>;
|
|
22785
|
+
export type DeletedUpstreamProxyHttpSubscription = {
|
|
22786
|
+
deletedUpstreamProxyHttp: {
|
|
22787
|
+
deletedProxyId: string;
|
|
22788
|
+
};
|
|
22789
|
+
};
|
|
22541
22790
|
export type CreateUpstreamProxySocksMutationVariables = Exact<{
|
|
22542
22791
|
input: CreateUpstreamProxySocksInput;
|
|
22543
22792
|
}>;
|
|
@@ -22640,17 +22889,18 @@ export type RankUpstreamProxySocksMutation = {
|
|
|
22640
22889
|
} | undefined | null;
|
|
22641
22890
|
};
|
|
22642
22891
|
};
|
|
22643
|
-
export type
|
|
22892
|
+
export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22644
22893
|
[key: string]: never;
|
|
22645
22894
|
}>;
|
|
22646
|
-
export type
|
|
22647
|
-
|
|
22895
|
+
export type CreatedUpstreamProxySocksSubscription = {
|
|
22896
|
+
createdUpstreamProxySocks: {
|
|
22648
22897
|
proxy: {
|
|
22649
|
-
__typename: "
|
|
22898
|
+
__typename: "UpstreamProxySocks";
|
|
22650
22899
|
id: string;
|
|
22651
22900
|
allowlist: Array<string>;
|
|
22652
22901
|
denylist: Array<string>;
|
|
22653
22902
|
enabled: boolean;
|
|
22903
|
+
includeDns: boolean;
|
|
22654
22904
|
rank: string;
|
|
22655
22905
|
auth?: {
|
|
22656
22906
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22667,17 +22917,18 @@ export type CreatedUpstreamProxyHttpSubscription = {
|
|
|
22667
22917
|
};
|
|
22668
22918
|
};
|
|
22669
22919
|
};
|
|
22670
|
-
export type
|
|
22920
|
+
export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22671
22921
|
[key: string]: never;
|
|
22672
22922
|
}>;
|
|
22673
|
-
export type
|
|
22674
|
-
|
|
22923
|
+
export type UpdatedUpstreamProxySocksSubscription = {
|
|
22924
|
+
updatedUpstreamProxySocks: {
|
|
22675
22925
|
proxy: {
|
|
22676
|
-
__typename: "
|
|
22926
|
+
__typename: "UpstreamProxySocks";
|
|
22677
22927
|
id: string;
|
|
22678
22928
|
allowlist: Array<string>;
|
|
22679
22929
|
denylist: Array<string>;
|
|
22680
22930
|
enabled: boolean;
|
|
22931
|
+
includeDns: boolean;
|
|
22681
22932
|
rank: string;
|
|
22682
22933
|
auth?: {
|
|
22683
22934
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22694,76 +22945,155 @@ export type UpdatedUpstreamProxyHttpSubscription = {
|
|
|
22694
22945
|
};
|
|
22695
22946
|
};
|
|
22696
22947
|
};
|
|
22697
|
-
export type
|
|
22948
|
+
export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22698
22949
|
[key: string]: never;
|
|
22699
22950
|
}>;
|
|
22700
|
-
export type
|
|
22701
|
-
|
|
22951
|
+
export type DeletedUpstreamProxySocksSubscription = {
|
|
22952
|
+
deletedUpstreamProxySocks: {
|
|
22702
22953
|
deletedProxyId: string;
|
|
22703
22954
|
};
|
|
22704
22955
|
};
|
|
22705
|
-
export type
|
|
22956
|
+
export type CreateUpstreamPluginMutationVariables = Exact<{
|
|
22957
|
+
input: CreateUpstreamPluginInput;
|
|
22958
|
+
}>;
|
|
22959
|
+
export type CreateUpstreamPluginMutation = {
|
|
22960
|
+
createUpstreamPlugin: {
|
|
22961
|
+
upstream?: {
|
|
22962
|
+
__typename: "UpstreamPlugin";
|
|
22963
|
+
id: string;
|
|
22964
|
+
allowlist: Array<string>;
|
|
22965
|
+
denylist: Array<string>;
|
|
22966
|
+
enabled: boolean;
|
|
22967
|
+
rank: string;
|
|
22968
|
+
plugin: {
|
|
22969
|
+
__typename: "PluginBackend";
|
|
22970
|
+
id: string;
|
|
22971
|
+
name?: string | undefined | null;
|
|
22972
|
+
enabled: boolean;
|
|
22973
|
+
manifestId: string;
|
|
22974
|
+
package: {
|
|
22975
|
+
id: string;
|
|
22976
|
+
};
|
|
22977
|
+
};
|
|
22978
|
+
} | undefined | null;
|
|
22979
|
+
};
|
|
22980
|
+
};
|
|
22981
|
+
export type UpdateUpstreamPluginMutationVariables = Exact<{
|
|
22982
|
+
id: Scalars["ID"]["input"];
|
|
22983
|
+
input: UpdateUpstreamPluginInput;
|
|
22984
|
+
}>;
|
|
22985
|
+
export type UpdateUpstreamPluginMutation = {
|
|
22986
|
+
updateUpstreamPlugin: {
|
|
22987
|
+
upstream?: {
|
|
22988
|
+
__typename: "UpstreamPlugin";
|
|
22989
|
+
id: string;
|
|
22990
|
+
allowlist: Array<string>;
|
|
22991
|
+
denylist: Array<string>;
|
|
22992
|
+
enabled: boolean;
|
|
22993
|
+
rank: string;
|
|
22994
|
+
plugin: {
|
|
22995
|
+
__typename: "PluginBackend";
|
|
22996
|
+
id: string;
|
|
22997
|
+
name?: string | undefined | null;
|
|
22998
|
+
enabled: boolean;
|
|
22999
|
+
manifestId: string;
|
|
23000
|
+
package: {
|
|
23001
|
+
id: string;
|
|
23002
|
+
};
|
|
23003
|
+
};
|
|
23004
|
+
} | undefined | null;
|
|
23005
|
+
};
|
|
23006
|
+
};
|
|
23007
|
+
export type DeleteUpstreamPluginMutationVariables = Exact<{
|
|
23008
|
+
id: Scalars["ID"]["input"];
|
|
23009
|
+
}>;
|
|
23010
|
+
export type DeleteUpstreamPluginMutation = {
|
|
23011
|
+
deleteUpstreamPlugin: {
|
|
23012
|
+
deletedId?: string | undefined | null;
|
|
23013
|
+
};
|
|
23014
|
+
};
|
|
23015
|
+
export type RankUpstreamPluginMutationVariables = Exact<{
|
|
23016
|
+
id: Scalars["ID"]["input"];
|
|
23017
|
+
input: RankInput;
|
|
23018
|
+
}>;
|
|
23019
|
+
export type RankUpstreamPluginMutation = {
|
|
23020
|
+
rankUpstreamPlugin: {
|
|
23021
|
+
upstream?: {
|
|
23022
|
+
__typename: "UpstreamPlugin";
|
|
23023
|
+
id: string;
|
|
23024
|
+
allowlist: Array<string>;
|
|
23025
|
+
denylist: Array<string>;
|
|
23026
|
+
enabled: boolean;
|
|
23027
|
+
rank: string;
|
|
23028
|
+
plugin: {
|
|
23029
|
+
__typename: "PluginBackend";
|
|
23030
|
+
id: string;
|
|
23031
|
+
name?: string | undefined | null;
|
|
23032
|
+
enabled: boolean;
|
|
23033
|
+
manifestId: string;
|
|
23034
|
+
package: {
|
|
23035
|
+
id: string;
|
|
23036
|
+
};
|
|
23037
|
+
};
|
|
23038
|
+
} | undefined | null;
|
|
23039
|
+
};
|
|
23040
|
+
};
|
|
23041
|
+
export type CreatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22706
23042
|
[key: string]: never;
|
|
22707
23043
|
}>;
|
|
22708
|
-
export type
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
__typename: "
|
|
23044
|
+
export type CreatedUpstreamPluginSubscription = {
|
|
23045
|
+
createdUpstreamPlugin: {
|
|
23046
|
+
upstream: {
|
|
23047
|
+
__typename: "UpstreamPlugin";
|
|
22712
23048
|
id: string;
|
|
22713
23049
|
allowlist: Array<string>;
|
|
22714
23050
|
denylist: Array<string>;
|
|
22715
23051
|
enabled: boolean;
|
|
22716
|
-
includeDns: boolean;
|
|
22717
23052
|
rank: string;
|
|
22718
|
-
|
|
22719
|
-
__typename: "
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
isTLS: boolean;
|
|
22728
|
-
SNI?: string | undefined | null;
|
|
23053
|
+
plugin: {
|
|
23054
|
+
__typename: "PluginBackend";
|
|
23055
|
+
id: string;
|
|
23056
|
+
name?: string | undefined | null;
|
|
23057
|
+
enabled: boolean;
|
|
23058
|
+
manifestId: string;
|
|
23059
|
+
package: {
|
|
23060
|
+
id: string;
|
|
23061
|
+
};
|
|
22729
23062
|
};
|
|
22730
23063
|
};
|
|
22731
23064
|
};
|
|
22732
23065
|
};
|
|
22733
|
-
export type
|
|
23066
|
+
export type UpdatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22734
23067
|
[key: string]: never;
|
|
22735
23068
|
}>;
|
|
22736
|
-
export type
|
|
22737
|
-
|
|
22738
|
-
|
|
22739
|
-
__typename: "
|
|
23069
|
+
export type UpdatedUpstreamPluginSubscription = {
|
|
23070
|
+
updatedUpstreamPlugin: {
|
|
23071
|
+
upstream: {
|
|
23072
|
+
__typename: "UpstreamPlugin";
|
|
22740
23073
|
id: string;
|
|
22741
23074
|
allowlist: Array<string>;
|
|
22742
23075
|
denylist: Array<string>;
|
|
22743
23076
|
enabled: boolean;
|
|
22744
|
-
includeDns: boolean;
|
|
22745
23077
|
rank: string;
|
|
22746
|
-
|
|
22747
|
-
__typename: "
|
|
22748
|
-
|
|
22749
|
-
|
|
22750
|
-
|
|
22751
|
-
|
|
22752
|
-
|
|
22753
|
-
|
|
22754
|
-
|
|
22755
|
-
isTLS: boolean;
|
|
22756
|
-
SNI?: string | undefined | null;
|
|
23078
|
+
plugin: {
|
|
23079
|
+
__typename: "PluginBackend";
|
|
23080
|
+
id: string;
|
|
23081
|
+
name?: string | undefined | null;
|
|
23082
|
+
enabled: boolean;
|
|
23083
|
+
manifestId: string;
|
|
23084
|
+
package: {
|
|
23085
|
+
id: string;
|
|
23086
|
+
};
|
|
22757
23087
|
};
|
|
22758
23088
|
};
|
|
22759
23089
|
};
|
|
22760
23090
|
};
|
|
22761
|
-
export type
|
|
23091
|
+
export type DeletedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22762
23092
|
[key: string]: never;
|
|
22763
23093
|
}>;
|
|
22764
|
-
export type
|
|
22765
|
-
|
|
22766
|
-
|
|
23094
|
+
export type DeletedUpstreamPluginSubscription = {
|
|
23095
|
+
deletedUpstreamPlugin: {
|
|
23096
|
+
deletedUpstreamId: string;
|
|
22767
23097
|
};
|
|
22768
23098
|
};
|
|
22769
23099
|
export type UserProfileFullFragment = {
|
|
@@ -23423,7 +23753,6 @@ export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fr
|
|
|
23423
23753
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
23424
23754
|
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
23755
|
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
23756
|
export declare const GlobalConfigProjectFullFragmentDoc = "\n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
|
|
23428
23757
|
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
23758
|
export declare const DnsUpstreamFullFragmentDoc = "\n fragment dnsUpstreamFull on DNSUpstream {\n id\n ip\n name\n}\n ";
|
|
@@ -23468,7 +23797,7 @@ export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEn
|
|
|
23468
23797
|
export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
|
|
23469
23798
|
export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
23470
23799
|
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 ";
|
|
23800
|
+
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
23801
|
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
23802
|
export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
|
|
23474
23803
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
@@ -23562,12 +23891,14 @@ export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment stream
|
|
|
23562
23891
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
23563
23892
|
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
23893
|
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 ";
|
|
23894
|
+
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
23895
|
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
23896
|
export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
23567
23897
|
export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
|
|
23568
23898
|
export declare const WorkflowEdgeFullFragmentDoc = "\n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n ";
|
|
23569
23899
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
23570
23900
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
23901
|
+
export declare const TrackDocument = "\n mutation track($input: TrackInput!) {\n track(input: $input) {\n success\n }\n}\n ";
|
|
23571
23902
|
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
23903
|
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
23904
|
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 +23967,8 @@ export declare const UpdateBrowserDocument = "\n mutation updateBrowser {\n
|
|
|
23636
23967
|
export declare const DeletedBrowserDocument = "\n subscription deletedBrowser {\n deletedBrowser {\n deletedBrowserId\n }\n}\n ";
|
|
23637
23968
|
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
23969
|
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
23970
|
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
|
|
23971
|
+
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
23972
|
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
23973
|
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
23974
|
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 +24042,10 @@ export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile
|
|
|
23712
24042
|
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
24043
|
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
24044
|
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 ";
|
|
24045
|
+
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
24046
|
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 ";
|
|
24047
|
+
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 ";
|
|
24048
|
+
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
24049
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
23720
24050
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
23721
24051
|
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 +24165,30 @@ export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n
|
|
|
23835
24165
|
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
24166
|
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
24167
|
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
|
|
24168
|
+
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
24169
|
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
24170
|
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
24171
|
export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
|
|
23842
24172
|
export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
|
|
23843
24173
|
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 ";
|
|
24174
|
+
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 ";
|
|
24175
|
+
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 ";
|
|
24176
|
+
export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
|
|
23844
24177
|
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
24178
|
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
24179
|
export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
|
|
23847
24180
|
export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
|
|
23848
24181
|
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
24182
|
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
24183
|
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
24184
|
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
24185
|
+
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 ";
|
|
24186
|
+
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 ";
|
|
24187
|
+
export declare const DeleteUpstreamPluginDocument = "\n mutation deleteUpstreamPlugin($id: ID!) {\n deleteUpstreamPlugin(id: $id) {\n deletedId\n }\n}\n ";
|
|
24188
|
+
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 ";
|
|
24189
|
+
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 ";
|
|
24190
|
+
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 ";
|
|
24191
|
+
export declare const DeletedUpstreamPluginDocument = "\n subscription deletedUpstreamPlugin {\n deletedUpstreamPlugin {\n deletedUpstreamId\n }\n}\n ";
|
|
23855
24192
|
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
24193
|
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
24194
|
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 +24214,7 @@ export declare const TestWorkflowActiveDocument = "\n mutation testWorkflowAc
|
|
|
23877
24214
|
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
24215
|
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
23879
24216
|
export declare function getSdk<C>(requester: Requester<C>): {
|
|
24217
|
+
track(variables: TrackMutationVariables, options?: C): Promise<TrackMutation>;
|
|
23880
24218
|
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
23881
24219
|
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
23882
24220
|
assistantCloudState(variables?: AssistantCloudStateQueryVariables, options?: C): Promise<AssistantCloudStateQuery>;
|
|
@@ -23945,7 +24283,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
23945
24283
|
deletedBrowser(variables?: DeletedBrowserSubscriptionVariables, options?: C): AsyncIterable<DeletedBrowserSubscription>;
|
|
23946
24284
|
installedBrowser(variables?: InstalledBrowserSubscriptionVariables, options?: C): AsyncIterable<InstalledBrowserSubscription>;
|
|
23947
24285
|
updatedBrowser(variables?: UpdatedBrowserSubscriptionVariables, options?: C): AsyncIterable<UpdatedBrowserSubscription>;
|
|
23948
|
-
updateOnboarding(variables: UpdateOnboardingMutationVariables, options?: C): Promise<UpdateOnboardingMutation>;
|
|
23949
24286
|
updateGlobalConfigProject(variables: UpdateGlobalConfigProjectMutationVariables, options?: C): Promise<UpdateGlobalConfigProjectMutation>;
|
|
23950
24287
|
globalConfig(variables?: GlobalConfigQueryVariables, options?: C): Promise<GlobalConfigQuery>;
|
|
23951
24288
|
globalConfigProject(variables?: GlobalConfigProjectQueryVariables, options?: C): Promise<GlobalConfigProjectQuery>;
|
|
@@ -24144,23 +24481,30 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24144
24481
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
24145
24482
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|
|
24146
24483
|
finishedTask(variables?: FinishedTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedTaskSubscription>;
|
|
24147
|
-
|
|
24484
|
+
upstreams(variables?: UpstreamsQueryVariables, options?: C): Promise<UpstreamsQuery>;
|
|
24148
24485
|
createUpstreamProxyHttp(variables: CreateUpstreamProxyHttpMutationVariables, options?: C): Promise<CreateUpstreamProxyHttpMutation>;
|
|
24149
24486
|
updateUpstreamProxyHttp(variables: UpdateUpstreamProxyHttpMutationVariables, options?: C): Promise<UpdateUpstreamProxyHttpMutation>;
|
|
24150
24487
|
deleteUpstreamProxyHttp(variables: DeleteUpstreamProxyHttpMutationVariables, options?: C): Promise<DeleteUpstreamProxyHttpMutation>;
|
|
24151
24488
|
testUpstreamProxyHttp(variables: TestUpstreamProxyHttpMutationVariables, options?: C): Promise<TestUpstreamProxyHttpMutation>;
|
|
24152
24489
|
rankUpstreamProxyHttp(variables: RankUpstreamProxyHttpMutationVariables, options?: C): Promise<RankUpstreamProxyHttpMutation>;
|
|
24490
|
+
createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
|
|
24491
|
+
updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
|
|
24492
|
+
deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
|
|
24153
24493
|
createUpstreamProxySocks(variables: CreateUpstreamProxySocksMutationVariables, options?: C): Promise<CreateUpstreamProxySocksMutation>;
|
|
24154
24494
|
updateUpstreamProxySocks(variables: UpdateUpstreamProxySocksMutationVariables, options?: C): Promise<UpdateUpstreamProxySocksMutation>;
|
|
24155
24495
|
deleteUpstreamProxySocks(variables: DeleteUpstreamProxySocksMutationVariables, options?: C): Promise<DeleteUpstreamProxySocksMutation>;
|
|
24156
24496
|
testUpstreamProxySocks(variables: TestUpstreamProxySocksMutationVariables, options?: C): Promise<TestUpstreamProxySocksMutation>;
|
|
24157
24497
|
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
24498
|
createdUpstreamProxySocks(variables?: CreatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxySocksSubscription>;
|
|
24162
24499
|
updatedUpstreamProxySocks(variables?: UpdatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxySocksSubscription>;
|
|
24163
24500
|
deletedUpstreamProxySocks(variables?: DeletedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxySocksSubscription>;
|
|
24501
|
+
createUpstreamPlugin(variables: CreateUpstreamPluginMutationVariables, options?: C): Promise<CreateUpstreamPluginMutation>;
|
|
24502
|
+
updateUpstreamPlugin(variables: UpdateUpstreamPluginMutationVariables, options?: C): Promise<UpdateUpstreamPluginMutation>;
|
|
24503
|
+
deleteUpstreamPlugin(variables: DeleteUpstreamPluginMutationVariables, options?: C): Promise<DeleteUpstreamPluginMutation>;
|
|
24504
|
+
rankUpstreamPlugin(variables: RankUpstreamPluginMutationVariables, options?: C): Promise<RankUpstreamPluginMutation>;
|
|
24505
|
+
createdUpstreamPlugin(variables?: CreatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamPluginSubscription>;
|
|
24506
|
+
updatedUpstreamPlugin(variables?: UpdatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamPluginSubscription>;
|
|
24507
|
+
deletedUpstreamPlugin(variables?: DeletedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamPluginSubscription>;
|
|
24164
24508
|
updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
|
|
24165
24509
|
userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
|
|
24166
24510
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|