@caido/sdk-frontend 0.54.2-beta.6 → 0.54.2-beta.7
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
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
|
};
|
|
@@ -23423,7 +23566,6 @@ export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fr
|
|
|
23423
23566
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
23424
23567
|
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
23568
|
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
23569
|
export declare const GlobalConfigProjectFullFragmentDoc = "\n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
|
|
23428
23570
|
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
23571
|
export declare const DnsUpstreamFullFragmentDoc = "\n fragment dnsUpstreamFull on DNSUpstream {\n id\n ip\n name\n}\n ";
|
|
@@ -23468,7 +23610,7 @@ export declare const InterceptEntryFullFragmentDoc = "\n fragment interceptEn
|
|
|
23468
23610
|
export declare const InterceptEntryEdgeMetaFragmentDoc = "\n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n ";
|
|
23469
23611
|
export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
23470
23612
|
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 ";
|
|
23613
|
+
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
23614
|
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
23615
|
export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
|
|
23474
23616
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
@@ -23636,9 +23778,8 @@ export declare const UpdateBrowserDocument = "\n mutation updateBrowser {\n
|
|
|
23636
23778
|
export declare const DeletedBrowserDocument = "\n subscription deletedBrowser {\n deletedBrowser {\n deletedBrowserId\n }\n}\n ";
|
|
23637
23779
|
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
23780
|
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
23781
|
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
|
|
23782
|
+
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
23783
|
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
23784
|
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
23785
|
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 +23853,10 @@ export declare const DeleteHostedFileDocument = "\n mutation deleteHostedFile
|
|
|
23712
23853
|
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
23854
|
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
23855
|
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 ";
|
|
23856
|
+
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
23857
|
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 ";
|
|
23858
|
+
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 ";
|
|
23859
|
+
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
23860
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
23720
23861
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
23721
23862
|
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 ";
|
|
@@ -23945,7 +24086,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
23945
24086
|
deletedBrowser(variables?: DeletedBrowserSubscriptionVariables, options?: C): AsyncIterable<DeletedBrowserSubscription>;
|
|
23946
24087
|
installedBrowser(variables?: InstalledBrowserSubscriptionVariables, options?: C): AsyncIterable<InstalledBrowserSubscription>;
|
|
23947
24088
|
updatedBrowser(variables?: UpdatedBrowserSubscriptionVariables, options?: C): AsyncIterable<UpdatedBrowserSubscription>;
|
|
23948
|
-
updateOnboarding(variables: UpdateOnboardingMutationVariables, options?: C): Promise<UpdateOnboardingMutation>;
|
|
23949
24089
|
updateGlobalConfigProject(variables: UpdateGlobalConfigProjectMutationVariables, options?: C): Promise<UpdateGlobalConfigProjectMutation>;
|
|
23950
24090
|
globalConfig(variables?: GlobalConfigQueryVariables, options?: C): Promise<GlobalConfigQuery>;
|
|
23951
24091
|
globalConfigProject(variables?: GlobalConfigProjectQueryVariables, options?: C): Promise<GlobalConfigProjectQuery>;
|