@caido/sdk-frontend 0.41.1-beta.1 → 0.41.1-beta.3
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 +855 -235
|
@@ -706,17 +706,26 @@ export type CreateTamperRulePayload = {
|
|
|
706
706
|
error?: Maybe<CreateTamperRuleError>;
|
|
707
707
|
rule?: Maybe<TamperRule>;
|
|
708
708
|
};
|
|
709
|
-
export type
|
|
709
|
+
export type CreateUpstreamProxyHttpInput = {
|
|
710
710
|
allowlist: Array<Scalars["String"]["input"]>;
|
|
711
711
|
auth?: InputMaybe<UpstreamProxyAuthInput>;
|
|
712
|
+
connection: ConnectionInfoInput;
|
|
712
713
|
denylist: Array<Scalars["String"]["input"]>;
|
|
713
714
|
enabled: Scalars["Boolean"]["input"];
|
|
714
|
-
host: Scalars["String"]["input"];
|
|
715
|
-
kind: UpstreamProxyKind;
|
|
716
|
-
port: Scalars["Port"]["input"];
|
|
717
715
|
};
|
|
718
|
-
export type
|
|
719
|
-
proxy?: Maybe<
|
|
716
|
+
export type CreateUpstreamProxyHttpPayload = {
|
|
717
|
+
proxy?: Maybe<UpstreamProxyHttp>;
|
|
718
|
+
};
|
|
719
|
+
export type CreateUpstreamProxySocksInput = {
|
|
720
|
+
allowlist: Array<Scalars["String"]["input"]>;
|
|
721
|
+
auth?: InputMaybe<UpstreamProxyAuthInput>;
|
|
722
|
+
connection: ConnectionInfoInput;
|
|
723
|
+
denylist: Array<Scalars["String"]["input"]>;
|
|
724
|
+
enabled: Scalars["Boolean"]["input"];
|
|
725
|
+
includeDns: Scalars["Boolean"]["input"];
|
|
726
|
+
};
|
|
727
|
+
export type CreateUpstreamProxySocksPayload = {
|
|
728
|
+
proxy?: Maybe<UpstreamProxySocks>;
|
|
720
729
|
};
|
|
721
730
|
export type CreateWorkflowError = OtherUserError | WorkflowUserError;
|
|
722
731
|
export type CreateWorkflowInput = {
|
|
@@ -854,6 +863,12 @@ export type CreatedTamperRulePayload = {
|
|
|
854
863
|
ruleEdge: TamperRuleEdge;
|
|
855
864
|
snapshot: Scalars["Snapshot"]["output"];
|
|
856
865
|
};
|
|
866
|
+
export type CreatedUpstreamProxyHttpPayload = {
|
|
867
|
+
proxy: UpstreamProxyHttp;
|
|
868
|
+
};
|
|
869
|
+
export type CreatedUpstreamProxySocksPayload = {
|
|
870
|
+
proxy: UpstreamProxySocks;
|
|
871
|
+
};
|
|
857
872
|
export type CreatedWorkflowPayload = {
|
|
858
873
|
workflowEdge: WorkflowEdge;
|
|
859
874
|
};
|
|
@@ -969,11 +984,16 @@ export type DeleteTamperRuleCollectionPayload = {
|
|
|
969
984
|
export type DeleteTamperRulePayload = {
|
|
970
985
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
971
986
|
};
|
|
972
|
-
export type
|
|
987
|
+
export type DeleteUpstreamProxyHttpPayload = {
|
|
973
988
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
974
989
|
};
|
|
990
|
+
export type DeleteUpstreamProxySocksPayload = {
|
|
991
|
+
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
992
|
+
};
|
|
993
|
+
export type DeleteWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError;
|
|
975
994
|
export type DeleteWorkflowPayload = {
|
|
976
995
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
996
|
+
error?: Maybe<DeleteWorkflowError>;
|
|
977
997
|
};
|
|
978
998
|
export type DeletedAssistantSessionPayload = {
|
|
979
999
|
deletedSessionId: Scalars["ID"]["output"];
|
|
@@ -1050,6 +1070,12 @@ export type DeletedTamperRulePayload = {
|
|
|
1050
1070
|
deletedRuleId: Scalars["ID"]["output"];
|
|
1051
1071
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1052
1072
|
};
|
|
1073
|
+
export type DeletedUpstreamProxyHttpPayload = {
|
|
1074
|
+
deletedProxyId: Scalars["ID"]["output"];
|
|
1075
|
+
};
|
|
1076
|
+
export type DeletedUpstreamProxySocksPayload = {
|
|
1077
|
+
deletedProxyId: Scalars["ID"]["output"];
|
|
1078
|
+
};
|
|
1053
1079
|
export type DeletedWorkflowPayload = {
|
|
1054
1080
|
deletedWorkflowId: Scalars["ID"]["output"];
|
|
1055
1081
|
};
|
|
@@ -1174,7 +1200,7 @@ export type GlobalConfig = {
|
|
|
1174
1200
|
address: Scalars["String"]["output"];
|
|
1175
1201
|
onboarding: OnboardingState;
|
|
1176
1202
|
};
|
|
1177
|
-
export type GlobalizeWorkflowError = OtherUserError | UnknownIdUserError | WorkflowUserError;
|
|
1203
|
+
export type GlobalizeWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError | WorkflowUserError;
|
|
1178
1204
|
export type GlobalizeWorkflowPayload = {
|
|
1179
1205
|
error?: Maybe<GlobalizeWorkflowError>;
|
|
1180
1206
|
workflow?: Maybe<Workflow>;
|
|
@@ -1321,7 +1347,7 @@ export type InvalidRegexUserError = UserError & {
|
|
|
1321
1347
|
code: Scalars["String"]["output"];
|
|
1322
1348
|
term: Scalars["String"]["output"];
|
|
1323
1349
|
};
|
|
1324
|
-
export type LocalizeWorkflowError = OtherUserError | UnknownIdUserError | WorkflowUserError;
|
|
1350
|
+
export type LocalizeWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError | WorkflowUserError;
|
|
1325
1351
|
export type LocalizeWorkflowPayload = {
|
|
1326
1352
|
error?: Maybe<LocalizeWorkflowError>;
|
|
1327
1353
|
workflow?: Maybe<Workflow>;
|
|
@@ -1353,7 +1379,8 @@ export type MutationRoot = {
|
|
|
1353
1379
|
createSitemapEntries: CreateSitemapEntriesPayload;
|
|
1354
1380
|
createTamperRule: CreateTamperRulePayload;
|
|
1355
1381
|
createTamperRuleCollection: CreateTamperRuleCollectionPayload;
|
|
1356
|
-
|
|
1382
|
+
createUpstreamProxyHttp: CreateUpstreamProxyHttpPayload;
|
|
1383
|
+
createUpstreamProxySocks: CreateUpstreamProxySocksPayload;
|
|
1357
1384
|
createWorkflow: CreateWorkflowPayload;
|
|
1358
1385
|
deleteAssistantSession: DeleteAssistantSessionPayload;
|
|
1359
1386
|
deleteAutomateEntries: DeleteAutomateEntriesPayload;
|
|
@@ -1372,7 +1399,8 @@ export type MutationRoot = {
|
|
|
1372
1399
|
deleteScope: DeleteScopePayload;
|
|
1373
1400
|
deleteTamperRule: DeleteTamperRulePayload;
|
|
1374
1401
|
deleteTamperRuleCollection: DeleteTamperRuleCollectionPayload;
|
|
1375
|
-
|
|
1402
|
+
deleteUpstreamProxyHttp: DeleteUpstreamProxyHttpPayload;
|
|
1403
|
+
deleteUpstreamProxySocks: DeleteUpstreamProxySocksPayload;
|
|
1376
1404
|
deleteWorkflow: DeleteWorkflowPayload;
|
|
1377
1405
|
disableTamperRule: DisableTamperRulePayload;
|
|
1378
1406
|
dropInterceptMessage: DropInterceptMessagePayload;
|
|
@@ -1389,7 +1417,8 @@ export type MutationRoot = {
|
|
|
1389
1417
|
pauseAutomateTask: PauseAutomateTaskPayload;
|
|
1390
1418
|
pauseIntercept: PauseInterceptPayload;
|
|
1391
1419
|
rankTamperRule: RankTamperRulePayload;
|
|
1392
|
-
|
|
1420
|
+
rankUpstreamProxyHttp: RankUpstreamProxyHttpPayload;
|
|
1421
|
+
rankUpstreamProxySocks: RankUpstreamProxySocksPayload;
|
|
1393
1422
|
refreshAuthenticationToken: RefreshAuthenticationTokenPayload;
|
|
1394
1423
|
renameAssistantSession: RenameAssistantSessionPayload;
|
|
1395
1424
|
renameAutomateEntry: RenameAutomateEntryPayload;
|
|
@@ -1423,8 +1452,11 @@ export type MutationRoot = {
|
|
|
1423
1452
|
startExportRequestsTask: StartExportRequestsTaskPayload;
|
|
1424
1453
|
startReplayTask: StartReplayTaskPayload;
|
|
1425
1454
|
testTamperRule: TestTamperRulePayload;
|
|
1426
|
-
|
|
1455
|
+
testUpstreamProxyHttp: TestUpstreamProxyHttpPayload;
|
|
1456
|
+
testUpstreamProxySocks: TestUpstreamProxySocksPayload;
|
|
1427
1457
|
togglePlugin: TogglePluginPayload;
|
|
1458
|
+
toggleUpstreamProxyHttp: ToggleUpstreamProxyHttpPayload;
|
|
1459
|
+
toggleUpstreamProxySocks: ToggleUpstreamProxySocksPayload;
|
|
1428
1460
|
toggleWorkflow: ToggleWorkflowPayload;
|
|
1429
1461
|
uninstallPluginPackage: UninstallPluginPackagePayload;
|
|
1430
1462
|
updateAutomateSession: UpdateAutomateSessionPayload;
|
|
@@ -1433,7 +1465,8 @@ export type MutationRoot = {
|
|
|
1433
1465
|
updateRequestMetadata: UpdateRequestMetadataPayload;
|
|
1434
1466
|
updateScope: UpdateScopePayload;
|
|
1435
1467
|
updateTamperRule: UpdateTamperRulePayload;
|
|
1436
|
-
|
|
1468
|
+
updateUpstreamProxyHttp: UpdateUpstreamProxyHttpPayload;
|
|
1469
|
+
updateUpstreamProxySocks: UpdateUpstreamProxySocksPayload;
|
|
1437
1470
|
updateViewerSettings: UpdateViewerSettingsPayload;
|
|
1438
1471
|
updateWorkflow: UpdateWorkflowPayload;
|
|
1439
1472
|
uploadHostedFile: UploadHostedFilePayload;
|
|
@@ -1490,8 +1523,11 @@ export type MutationRootCreateTamperRuleArgs = {
|
|
|
1490
1523
|
export type MutationRootCreateTamperRuleCollectionArgs = {
|
|
1491
1524
|
input: CreateTamperRuleCollectionInput;
|
|
1492
1525
|
};
|
|
1493
|
-
export type
|
|
1494
|
-
input:
|
|
1526
|
+
export type MutationRootCreateUpstreamProxyHttpArgs = {
|
|
1527
|
+
input: CreateUpstreamProxyHttpInput;
|
|
1528
|
+
};
|
|
1529
|
+
export type MutationRootCreateUpstreamProxySocksArgs = {
|
|
1530
|
+
input: CreateUpstreamProxySocksInput;
|
|
1495
1531
|
};
|
|
1496
1532
|
export type MutationRootCreateWorkflowArgs = {
|
|
1497
1533
|
input: CreateWorkflowInput;
|
|
@@ -1545,7 +1581,10 @@ export type MutationRootDeleteTamperRuleArgs = {
|
|
|
1545
1581
|
export type MutationRootDeleteTamperRuleCollectionArgs = {
|
|
1546
1582
|
id: Scalars["ID"]["input"];
|
|
1547
1583
|
};
|
|
1548
|
-
export type
|
|
1584
|
+
export type MutationRootDeleteUpstreamProxyHttpArgs = {
|
|
1585
|
+
id: Scalars["ID"]["input"];
|
|
1586
|
+
};
|
|
1587
|
+
export type MutationRootDeleteUpstreamProxySocksArgs = {
|
|
1549
1588
|
id: Scalars["ID"]["input"];
|
|
1550
1589
|
};
|
|
1551
1590
|
export type MutationRootDeleteWorkflowArgs = {
|
|
@@ -1591,9 +1630,13 @@ export type MutationRootRankTamperRuleArgs = {
|
|
|
1591
1630
|
id: Scalars["ID"]["input"];
|
|
1592
1631
|
input: RankTamperRuleInput;
|
|
1593
1632
|
};
|
|
1594
|
-
export type
|
|
1633
|
+
export type MutationRootRankUpstreamProxyHttpArgs = {
|
|
1634
|
+
id: Scalars["ID"]["input"];
|
|
1635
|
+
input: RankUpstreamProxyHttpInput;
|
|
1636
|
+
};
|
|
1637
|
+
export type MutationRootRankUpstreamProxySocksArgs = {
|
|
1595
1638
|
id: Scalars["ID"]["input"];
|
|
1596
|
-
input:
|
|
1639
|
+
input: RankUpstreamProxySocksInput;
|
|
1597
1640
|
};
|
|
1598
1641
|
export type MutationRootRefreshAuthenticationTokenArgs = {
|
|
1599
1642
|
refreshToken: Scalars["Token"]["input"];
|
|
@@ -1705,13 +1748,24 @@ export type MutationRootStartReplayTaskArgs = {
|
|
|
1705
1748
|
export type MutationRootTestTamperRuleArgs = {
|
|
1706
1749
|
input: TestTamperRuleInput;
|
|
1707
1750
|
};
|
|
1708
|
-
export type
|
|
1709
|
-
input:
|
|
1751
|
+
export type MutationRootTestUpstreamProxyHttpArgs = {
|
|
1752
|
+
input: TestUpstreamProxyHttpInput;
|
|
1753
|
+
};
|
|
1754
|
+
export type MutationRootTestUpstreamProxySocksArgs = {
|
|
1755
|
+
input: TestUpstreamProxySocksInput;
|
|
1710
1756
|
};
|
|
1711
1757
|
export type MutationRootTogglePluginArgs = {
|
|
1712
1758
|
enabled: Scalars["Boolean"]["input"];
|
|
1713
1759
|
id: Scalars["ID"]["input"];
|
|
1714
1760
|
};
|
|
1761
|
+
export type MutationRootToggleUpstreamProxyHttpArgs = {
|
|
1762
|
+
enabled: Scalars["Boolean"]["input"];
|
|
1763
|
+
id: Scalars["ID"]["input"];
|
|
1764
|
+
};
|
|
1765
|
+
export type MutationRootToggleUpstreamProxySocksArgs = {
|
|
1766
|
+
enabled: Scalars["Boolean"]["input"];
|
|
1767
|
+
id: Scalars["ID"]["input"];
|
|
1768
|
+
};
|
|
1715
1769
|
export type MutationRootToggleWorkflowArgs = {
|
|
1716
1770
|
enabled: Scalars["Boolean"]["input"];
|
|
1717
1771
|
id: Scalars["ID"]["input"];
|
|
@@ -1739,9 +1793,13 @@ export type MutationRootUpdateTamperRuleArgs = {
|
|
|
1739
1793
|
id: Scalars["ID"]["input"];
|
|
1740
1794
|
input: UpdateTamperRuleInput;
|
|
1741
1795
|
};
|
|
1742
|
-
export type
|
|
1796
|
+
export type MutationRootUpdateUpstreamProxyHttpArgs = {
|
|
1743
1797
|
id: Scalars["ID"]["input"];
|
|
1744
|
-
input:
|
|
1798
|
+
input: UpdateUpstreamProxyHttpInput;
|
|
1799
|
+
};
|
|
1800
|
+
export type MutationRootUpdateUpstreamProxySocksArgs = {
|
|
1801
|
+
id: Scalars["ID"]["input"];
|
|
1802
|
+
input: UpdateUpstreamProxySocksInput;
|
|
1745
1803
|
};
|
|
1746
1804
|
export type MutationRootUpdateViewerSettingsArgs = {
|
|
1747
1805
|
input: UpdateViewerSettingsInput;
|
|
@@ -1866,6 +1924,14 @@ export type PluginUserError = UserError & {
|
|
|
1866
1924
|
code: Scalars["String"]["output"];
|
|
1867
1925
|
reason: PluginErrorReason;
|
|
1868
1926
|
};
|
|
1927
|
+
export type PluginWorkflow = Plugin & {
|
|
1928
|
+
enabled: Scalars["Boolean"]["output"];
|
|
1929
|
+
id: Scalars["ID"]["output"];
|
|
1930
|
+
manifestId: Scalars["ID"]["output"];
|
|
1931
|
+
name?: Maybe<Scalars["String"]["output"]>;
|
|
1932
|
+
package: PluginPackage;
|
|
1933
|
+
workflow?: Maybe<Workflow>;
|
|
1934
|
+
};
|
|
1869
1935
|
export type Project = {
|
|
1870
1936
|
backups: Array<Backup>;
|
|
1871
1937
|
createdAt: Scalars["DateTime"]["output"];
|
|
@@ -1951,7 +2017,8 @@ export type QueryRoot = {
|
|
|
1951
2017
|
tamperRuleCollection?: Maybe<TamperRuleCollection>;
|
|
1952
2018
|
tamperRuleCollections: TamperRuleCollectionConnection;
|
|
1953
2019
|
tasks: Array<Task>;
|
|
1954
|
-
|
|
2020
|
+
upstreamProxiesHttp: Array<UpstreamProxyHttp>;
|
|
2021
|
+
upstreamProxiesSocks: Array<UpstreamProxySocks>;
|
|
1955
2022
|
viewer: User;
|
|
1956
2023
|
workflow?: Maybe<Workflow>;
|
|
1957
2024
|
workflowNodeDefinitions: Array<WorkflowNodeDefinition>;
|
|
@@ -2149,12 +2216,22 @@ export type RankTamperRuleInput = {
|
|
|
2149
2216
|
export type RankTamperRulePayload = {
|
|
2150
2217
|
rule?: Maybe<TamperRule>;
|
|
2151
2218
|
};
|
|
2152
|
-
export type
|
|
2219
|
+
export type RankUpstreamProxyHttpInput = {
|
|
2220
|
+
afterId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2221
|
+
beforeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2222
|
+
};
|
|
2223
|
+
export type RankUpstreamProxyHttpPayload = {
|
|
2224
|
+
proxy?: Maybe<UpstreamProxyHttp>;
|
|
2225
|
+
};
|
|
2226
|
+
export type RankUpstreamProxySocksInput = {
|
|
2153
2227
|
afterId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2154
2228
|
beforeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2155
2229
|
};
|
|
2156
|
-
export type
|
|
2157
|
-
proxy?: Maybe<
|
|
2230
|
+
export type RankUpstreamProxySocksPayload = {
|
|
2231
|
+
proxy?: Maybe<UpstreamProxySocks>;
|
|
2232
|
+
};
|
|
2233
|
+
export type ReadOnlyUserError = UserError & {
|
|
2234
|
+
code: Scalars["String"]["output"];
|
|
2158
2235
|
};
|
|
2159
2236
|
export type RefreshAuthenticationTokenError = AuthenticationUserError | OtherUserError;
|
|
2160
2237
|
export type RefreshAuthenticationTokenPayload = {
|
|
@@ -2209,7 +2286,7 @@ export type RenameTamperRuleCollectionPayload = {
|
|
|
2209
2286
|
export type RenameTamperRulePayload = {
|
|
2210
2287
|
rule?: Maybe<TamperRule>;
|
|
2211
2288
|
};
|
|
2212
|
-
export type RenameWorkflowError = OtherUserError | UnknownIdUserError;
|
|
2289
|
+
export type RenameWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError;
|
|
2213
2290
|
export type RenameWorkflowPayload = {
|
|
2214
2291
|
error?: Maybe<RenameWorkflowError>;
|
|
2215
2292
|
workflow?: Maybe<Workflow>;
|
|
@@ -2817,6 +2894,8 @@ export type SubscriptionRoot = {
|
|
|
2817
2894
|
createdStreamWsMessage: CreatedStreamWsMessagePayload;
|
|
2818
2895
|
createdTamperRule: CreatedTamperRulePayload;
|
|
2819
2896
|
createdTamperRuleCollection: CreatedTamperRuleCollectionPayload;
|
|
2897
|
+
createdUpstreamProxyHttp: CreatedUpstreamProxyHttpPayload;
|
|
2898
|
+
createdUpstreamProxySocks: CreatedUpstreamProxySocksPayload;
|
|
2820
2899
|
createdWorkflow: CreatedWorkflowPayload;
|
|
2821
2900
|
deletedAssistantSession: DeletedAssistantSessionPayload;
|
|
2822
2901
|
deletedAutomateEntry: DeletedAutomateEntryPayload;
|
|
@@ -2838,6 +2917,8 @@ export type SubscriptionRoot = {
|
|
|
2838
2917
|
deletedScope: DeletedScopePayload;
|
|
2839
2918
|
deletedTamperRule: DeletedTamperRulePayload;
|
|
2840
2919
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload;
|
|
2920
|
+
deletedUpstreamProxyHttp: DeletedUpstreamProxyHttpPayload;
|
|
2921
|
+
deletedUpstreamProxySocks: DeletedUpstreamProxySocksPayload;
|
|
2841
2922
|
deletedWorkflow: DeletedWorkflowPayload;
|
|
2842
2923
|
finishedBackupTask: FinishedBackupTaskPayload;
|
|
2843
2924
|
finishedDeleteInterceptEntriesTask: FinishedDeleteInterceptEntriesTaskPayload;
|
|
@@ -2873,6 +2954,8 @@ export type SubscriptionRoot = {
|
|
|
2873
2954
|
updatedSitemapEntry: UpdatedSitemapEntryPayload;
|
|
2874
2955
|
updatedTamperRule: UpdatedTamperRulePayload;
|
|
2875
2956
|
updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload;
|
|
2957
|
+
updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
|
|
2958
|
+
updatedUpstreamProxySocks: UpdatedUpstreamProxySocksPayload;
|
|
2876
2959
|
updatedViewerAssistantUsage: UpdatedViewerAssistantUsagePayload;
|
|
2877
2960
|
updatedViewerSettings: UpdatedViewerSettingsPayload;
|
|
2878
2961
|
updatedWorkflow: UpdatedWorkflowPayload;
|
|
@@ -2980,13 +3063,19 @@ export type TestTamperRulePayload = {
|
|
|
2980
3063
|
error?: Maybe<TestTamperRuleError>;
|
|
2981
3064
|
raw?: Maybe<Scalars["Blob"]["output"]>;
|
|
2982
3065
|
};
|
|
2983
|
-
export type
|
|
3066
|
+
export type TestUpstreamProxyHttpInput = {
|
|
2984
3067
|
auth?: InputMaybe<UpstreamProxyAuthInput>;
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
3068
|
+
connection: ConnectionInfoInput;
|
|
3069
|
+
};
|
|
3070
|
+
export type TestUpstreamProxyHttpPayload = {
|
|
3071
|
+
success?: Maybe<Scalars["Boolean"]["output"]>;
|
|
2988
3072
|
};
|
|
2989
|
-
export type
|
|
3073
|
+
export type TestUpstreamProxySocksInput = {
|
|
3074
|
+
auth?: InputMaybe<UpstreamProxyAuthInput>;
|
|
3075
|
+
connection: ConnectionInfoInput;
|
|
3076
|
+
includeDns: Scalars["Boolean"]["input"];
|
|
3077
|
+
};
|
|
3078
|
+
export type TestUpstreamProxySocksPayload = {
|
|
2990
3079
|
success?: Maybe<Scalars["Boolean"]["output"]>;
|
|
2991
3080
|
};
|
|
2992
3081
|
export type TogglePluginError = OtherUserError | PluginUserError | UnknownIdUserError;
|
|
@@ -2994,6 +3083,12 @@ export type TogglePluginPayload = {
|
|
|
2994
3083
|
error?: Maybe<TogglePluginError>;
|
|
2995
3084
|
plugin?: Maybe<Plugin>;
|
|
2996
3085
|
};
|
|
3086
|
+
export type ToggleUpstreamProxyHttpPayload = {
|
|
3087
|
+
proxy?: Maybe<UpstreamProxyHttp>;
|
|
3088
|
+
};
|
|
3089
|
+
export type ToggleUpstreamProxySocksPayload = {
|
|
3090
|
+
proxy?: Maybe<UpstreamProxySocks>;
|
|
3091
|
+
};
|
|
2997
3092
|
export type ToggleWorkflowError = OtherUserError | UnknownIdUserError;
|
|
2998
3093
|
export type ToggleWorkflowPayload = {
|
|
2999
3094
|
error?: Maybe<ToggleWorkflowError>;
|
|
@@ -3067,17 +3162,26 @@ export type UpdateTamperRulePayload = {
|
|
|
3067
3162
|
error?: Maybe<UpdateTamperRuleError>;
|
|
3068
3163
|
rule?: Maybe<TamperRule>;
|
|
3069
3164
|
};
|
|
3070
|
-
export type
|
|
3165
|
+
export type UpdateUpstreamProxyHttpInput = {
|
|
3071
3166
|
allowlist: Array<Scalars["String"]["input"]>;
|
|
3072
3167
|
auth?: InputMaybe<UpstreamProxyAuthInput>;
|
|
3168
|
+
connection: ConnectionInfoInput;
|
|
3073
3169
|
denylist: Array<Scalars["String"]["input"]>;
|
|
3074
3170
|
enabled: Scalars["Boolean"]["input"];
|
|
3075
|
-
host: Scalars["String"]["input"];
|
|
3076
|
-
kind: UpstreamProxyKind;
|
|
3077
|
-
port: Scalars["Port"]["input"];
|
|
3078
3171
|
};
|
|
3079
|
-
export type
|
|
3080
|
-
proxy?: Maybe<
|
|
3172
|
+
export type UpdateUpstreamProxyHttpPayload = {
|
|
3173
|
+
proxy?: Maybe<UpstreamProxyHttp>;
|
|
3174
|
+
};
|
|
3175
|
+
export type UpdateUpstreamProxySocksInput = {
|
|
3176
|
+
allowlist: Array<Scalars["String"]["input"]>;
|
|
3177
|
+
auth?: InputMaybe<UpstreamProxyAuthInput>;
|
|
3178
|
+
connection: ConnectionInfoInput;
|
|
3179
|
+
denylist: Array<Scalars["String"]["input"]>;
|
|
3180
|
+
enabled: Scalars["Boolean"]["input"];
|
|
3181
|
+
includeDns: Scalars["Boolean"]["input"];
|
|
3182
|
+
};
|
|
3183
|
+
export type UpdateUpstreamProxySocksPayload = {
|
|
3184
|
+
proxy?: Maybe<UpstreamProxySocks>;
|
|
3081
3185
|
};
|
|
3082
3186
|
export type UpdateViewerSettingsInput = {
|
|
3083
3187
|
data: Scalars["JSON"]["input"];
|
|
@@ -3086,7 +3190,7 @@ export type UpdateViewerSettingsInput = {
|
|
|
3086
3190
|
export type UpdateViewerSettingsPayload = {
|
|
3087
3191
|
settings?: Maybe<UserSettings>;
|
|
3088
3192
|
};
|
|
3089
|
-
export type UpdateWorkflowError = OtherUserError | UnknownIdUserError | WorkflowUserError;
|
|
3193
|
+
export type UpdateWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError | WorkflowUserError;
|
|
3090
3194
|
export type UpdateWorkflowInput = {
|
|
3091
3195
|
definition: Scalars["JsonObject"]["input"];
|
|
3092
3196
|
};
|
|
@@ -3196,6 +3300,12 @@ export type UpdatedTamperRulePayload = {
|
|
|
3196
3300
|
ruleEdge: TamperRuleEdge;
|
|
3197
3301
|
snapshot: Scalars["Snapshot"]["output"];
|
|
3198
3302
|
};
|
|
3303
|
+
export type UpdatedUpstreamProxyHttpPayload = {
|
|
3304
|
+
proxy: UpstreamProxyHttp;
|
|
3305
|
+
};
|
|
3306
|
+
export type UpdatedUpstreamProxySocksPayload = {
|
|
3307
|
+
proxy: UpstreamProxySocks;
|
|
3308
|
+
};
|
|
3199
3309
|
export type UpdatedViewerAssistantUsagePayload = {
|
|
3200
3310
|
usage: AssistantUsage;
|
|
3201
3311
|
};
|
|
@@ -3218,17 +3328,6 @@ export type UploadedBrowserPayload = {
|
|
|
3218
3328
|
export type UploadedHostedFilePayload = {
|
|
3219
3329
|
hostedFile: HostedFile;
|
|
3220
3330
|
};
|
|
3221
|
-
export type UpstreamProxy = {
|
|
3222
|
-
allowlist: Array<Scalars["String"]["output"]>;
|
|
3223
|
-
auth?: Maybe<UpstreamProxyAuth>;
|
|
3224
|
-
denylist: Array<Scalars["String"]["output"]>;
|
|
3225
|
-
enabled: Scalars["Boolean"]["output"];
|
|
3226
|
-
host: Scalars["String"]["output"];
|
|
3227
|
-
id: Scalars["ID"]["output"];
|
|
3228
|
-
kind: UpstreamProxyKind;
|
|
3229
|
-
port: Scalars["Port"]["output"];
|
|
3230
|
-
rank: Scalars["Rank"]["output"];
|
|
3231
|
-
};
|
|
3232
3331
|
export type UpstreamProxyAuth = UpstreamProxyAuthBasic;
|
|
3233
3332
|
export type UpstreamProxyAuthBasic = {
|
|
3234
3333
|
password: Scalars["Sensitive"]["output"];
|
|
@@ -3241,11 +3340,25 @@ export type UpstreamProxyAuthBasicInput = {
|
|
|
3241
3340
|
export type UpstreamProxyAuthInput = {
|
|
3242
3341
|
basic: UpstreamProxyAuthBasicInput;
|
|
3243
3342
|
};
|
|
3244
|
-
export
|
|
3245
|
-
|
|
3246
|
-
|
|
3343
|
+
export type UpstreamProxyHttp = {
|
|
3344
|
+
allowlist: Array<Scalars["String"]["output"]>;
|
|
3345
|
+
auth?: Maybe<UpstreamProxyAuth>;
|
|
3346
|
+
connection: ConnectionInfo;
|
|
3347
|
+
denylist: Array<Scalars["String"]["output"]>;
|
|
3348
|
+
enabled: Scalars["Boolean"]["output"];
|
|
3349
|
+
id: Scalars["ID"]["output"];
|
|
3350
|
+
rank: Scalars["Rank"]["output"];
|
|
3351
|
+
};
|
|
3352
|
+
export type UpstreamProxySocks = {
|
|
3353
|
+
allowlist: Array<Scalars["String"]["output"]>;
|
|
3354
|
+
auth?: Maybe<UpstreamProxyAuth>;
|
|
3355
|
+
connection: ConnectionInfo;
|
|
3356
|
+
denylist: Array<Scalars["String"]["output"]>;
|
|
3357
|
+
enabled: Scalars["Boolean"]["output"];
|
|
3358
|
+
id: Scalars["ID"]["output"];
|
|
3359
|
+
includeDns: Scalars["Boolean"]["output"];
|
|
3360
|
+
rank: Scalars["Rank"]["output"];
|
|
3247
3361
|
};
|
|
3248
|
-
export type UpstreamProxyKind = (typeof UpstreamProxyKind)[keyof typeof UpstreamProxyKind];
|
|
3249
3362
|
export type User = {
|
|
3250
3363
|
assistantUsage: AssistantUsage;
|
|
3251
3364
|
id: Scalars["ID"]["output"];
|
|
@@ -3286,6 +3399,7 @@ export type Workflow = {
|
|
|
3286
3399
|
id: Scalars["ID"]["output"];
|
|
3287
3400
|
kind: WorkflowKind;
|
|
3288
3401
|
name: Scalars["String"]["output"];
|
|
3402
|
+
readOnly: Scalars["Boolean"]["output"];
|
|
3289
3403
|
updatedAt: Scalars["DateTime"]["output"];
|
|
3290
3404
|
};
|
|
3291
3405
|
/** An edge in a connection. */
|
|
@@ -3319,7 +3433,7 @@ export type WorkflowTask = Task & {
|
|
|
3319
3433
|
export type WorkflowUserError = UserError & {
|
|
3320
3434
|
code: Scalars["String"]["output"];
|
|
3321
3435
|
message: Scalars["String"]["output"];
|
|
3322
|
-
|
|
3436
|
+
node?: Maybe<Scalars["String"]["output"]>;
|
|
3323
3437
|
reason: WorkflowErrorReason;
|
|
3324
3438
|
};
|
|
3325
3439
|
export type AssistantMessageFullFragment = {
|
|
@@ -4102,9 +4216,13 @@ export type AssistantUserErrorFullFragment = {
|
|
|
4102
4216
|
code: string;
|
|
4103
4217
|
assistantReason: AssistantErrorReason;
|
|
4104
4218
|
};
|
|
4219
|
+
export type ReadOnlyUserErrorFullFragment = {
|
|
4220
|
+
__typename: "ReadOnlyUserError";
|
|
4221
|
+
code: string;
|
|
4222
|
+
};
|
|
4105
4223
|
export type WorkflowUserErrorFullFragment = {
|
|
4106
4224
|
__typename: "WorkflowUserError";
|
|
4107
|
-
|
|
4225
|
+
node?: string | undefined | null;
|
|
4108
4226
|
message: string;
|
|
4109
4227
|
reason: WorkflowErrorReason;
|
|
4110
4228
|
code: string;
|
|
@@ -4170,6 +4288,10 @@ type UserErrorFull_ProjectLockedUserError_Fragment = {
|
|
|
4170
4288
|
__typename: "ProjectLockedUserError";
|
|
4171
4289
|
code: string;
|
|
4172
4290
|
};
|
|
4291
|
+
type UserErrorFull_ReadOnlyUserError_Fragment = {
|
|
4292
|
+
__typename: "ReadOnlyUserError";
|
|
4293
|
+
code: string;
|
|
4294
|
+
};
|
|
4173
4295
|
type UserErrorFull_RenderFailedUserError_Fragment = {
|
|
4174
4296
|
__typename: "RenderFailedUserError";
|
|
4175
4297
|
code: string;
|
|
@@ -4194,7 +4316,7 @@ type UserErrorFull_WorkflowUserError_Fragment = {
|
|
|
4194
4316
|
__typename: "WorkflowUserError";
|
|
4195
4317
|
code: string;
|
|
4196
4318
|
};
|
|
4197
|
-
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
4319
|
+
export type UserErrorFullFragment = UserErrorFull_AliasTakenUserError_Fragment | UserErrorFull_AssistantUserError_Fragment | UserErrorFull_AuthenticationUserError_Fragment | UserErrorFull_AutomateTaskUserError_Fragment | UserErrorFull_BackupUserError_Fragment | UserErrorFull_InternalUserError_Fragment | UserErrorFull_InvalidGlobTermsUserError_Fragment | UserErrorFull_InvalidHttpqlUserError_Fragment | UserErrorFull_InvalidRegexUserError_Fragment | UserErrorFull_NameTakenUserError_Fragment | UserErrorFull_OtherUserError_Fragment | UserErrorFull_PermissionDeniedUserError_Fragment | UserErrorFull_PluginUserError_Fragment | UserErrorFull_ProjectLockedUserError_Fragment | UserErrorFull_ReadOnlyUserError_Fragment | UserErrorFull_RenderFailedUserError_Fragment | UserErrorFull_StoreUserError_Fragment | UserErrorFull_TaskInProgressUserError_Fragment | UserErrorFull_UnknownIdUserError_Fragment | UserErrorFull_UnsupportedPlatformUserError_Fragment | UserErrorFull_WorkflowUserError_Fragment;
|
|
4198
4320
|
export type InvalidHttpqlUserErrorFullFragment = {
|
|
4199
4321
|
__typename: "InvalidHTTPQLUserError";
|
|
4200
4322
|
query: string;
|
|
@@ -4728,27 +4850,6 @@ export type InterceptResponseOptionsMetaFragment = {
|
|
|
4728
4850
|
export type InterceptScopeOptionsMetaFragment = {
|
|
4729
4851
|
scopeId: string;
|
|
4730
4852
|
};
|
|
4731
|
-
export type UpstreamProxyFullFragment = {
|
|
4732
|
-
__typename: "UpstreamProxy";
|
|
4733
|
-
id: string;
|
|
4734
|
-
allowlist: Array<string>;
|
|
4735
|
-
denylist: Array<string>;
|
|
4736
|
-
enabled: boolean;
|
|
4737
|
-
host: string;
|
|
4738
|
-
kind: UpstreamProxyKind;
|
|
4739
|
-
port: number;
|
|
4740
|
-
rank: string;
|
|
4741
|
-
auth?: {
|
|
4742
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
4743
|
-
username: string;
|
|
4744
|
-
password: string;
|
|
4745
|
-
} | undefined | null;
|
|
4746
|
-
};
|
|
4747
|
-
export type UpstreamProxyAuthBasicFullFragment = {
|
|
4748
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
4749
|
-
username: string;
|
|
4750
|
-
password: string;
|
|
4751
|
-
};
|
|
4752
4853
|
export type CountFullFragment = {
|
|
4753
4854
|
__typename: "Count";
|
|
4754
4855
|
value: number;
|
|
@@ -4781,7 +4882,17 @@ type PluginMeta_PluginFrontend_Fragment = {
|
|
|
4781
4882
|
id: string;
|
|
4782
4883
|
};
|
|
4783
4884
|
};
|
|
4784
|
-
|
|
4885
|
+
type PluginMeta_PluginWorkflow_Fragment = {
|
|
4886
|
+
__typename: "PluginWorkflow";
|
|
4887
|
+
id: string;
|
|
4888
|
+
name?: string | undefined | null;
|
|
4889
|
+
enabled: boolean;
|
|
4890
|
+
manifestId: string;
|
|
4891
|
+
package: {
|
|
4892
|
+
id: string;
|
|
4893
|
+
};
|
|
4894
|
+
};
|
|
4895
|
+
export type PluginMetaFragment = PluginMeta_PluginBackend_Fragment | PluginMeta_PluginFrontend_Fragment | PluginMeta_PluginWorkflow_Fragment;
|
|
4785
4896
|
export type PluginBackendMetaFragment = {
|
|
4786
4897
|
__typename: "PluginBackend";
|
|
4787
4898
|
id: string;
|
|
@@ -4818,6 +4929,25 @@ export type PluginFrontendFullFragment = {
|
|
|
4818
4929
|
id: string;
|
|
4819
4930
|
};
|
|
4820
4931
|
};
|
|
4932
|
+
export type PluginWorkflowFullFragment = {
|
|
4933
|
+
__typename: "PluginWorkflow";
|
|
4934
|
+
name?: string | undefined | null;
|
|
4935
|
+
id: string;
|
|
4936
|
+
enabled: boolean;
|
|
4937
|
+
manifestId: string;
|
|
4938
|
+
workflow?: {
|
|
4939
|
+
__typename: "Workflow";
|
|
4940
|
+
id: string;
|
|
4941
|
+
kind: WorkflowKind;
|
|
4942
|
+
name: string;
|
|
4943
|
+
enabled: boolean;
|
|
4944
|
+
global: boolean;
|
|
4945
|
+
readOnly: boolean;
|
|
4946
|
+
} | undefined | null;
|
|
4947
|
+
package: {
|
|
4948
|
+
id: string;
|
|
4949
|
+
};
|
|
4950
|
+
};
|
|
4821
4951
|
export type PluginAuthorFullFragment = {
|
|
4822
4952
|
name?: string | undefined | null;
|
|
4823
4953
|
email?: string | undefined | null;
|
|
@@ -4873,6 +5003,24 @@ export type PluginPackageFullFragment = {
|
|
|
4873
5003
|
package: {
|
|
4874
5004
|
id: string;
|
|
4875
5005
|
};
|
|
5006
|
+
} | {
|
|
5007
|
+
__typename: "PluginWorkflow";
|
|
5008
|
+
name?: string | undefined | null;
|
|
5009
|
+
id: string;
|
|
5010
|
+
enabled: boolean;
|
|
5011
|
+
manifestId: string;
|
|
5012
|
+
workflow?: {
|
|
5013
|
+
__typename: "Workflow";
|
|
5014
|
+
id: string;
|
|
5015
|
+
kind: WorkflowKind;
|
|
5016
|
+
name: string;
|
|
5017
|
+
enabled: boolean;
|
|
5018
|
+
global: boolean;
|
|
5019
|
+
readOnly: boolean;
|
|
5020
|
+
} | undefined | null;
|
|
5021
|
+
package: {
|
|
5022
|
+
id: string;
|
|
5023
|
+
};
|
|
4876
5024
|
}>;
|
|
4877
5025
|
author?: {
|
|
4878
5026
|
name?: string | undefined | null;
|
|
@@ -5773,6 +5921,50 @@ type TaskMeta_WorkflowTask_Fragment = {
|
|
|
5773
5921
|
createdAt: Date;
|
|
5774
5922
|
};
|
|
5775
5923
|
export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
5924
|
+
export type UpstreamProxyHttpFullFragment = {
|
|
5925
|
+
__typename: "UpstreamProxyHttp";
|
|
5926
|
+
id: string;
|
|
5927
|
+
allowlist: Array<string>;
|
|
5928
|
+
denylist: Array<string>;
|
|
5929
|
+
enabled: boolean;
|
|
5930
|
+
rank: string;
|
|
5931
|
+
auth?: {
|
|
5932
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
5933
|
+
username: string;
|
|
5934
|
+
password: string;
|
|
5935
|
+
} | undefined | null;
|
|
5936
|
+
connection: {
|
|
5937
|
+
__typename: "ConnectionInfo";
|
|
5938
|
+
host: string;
|
|
5939
|
+
port: number;
|
|
5940
|
+
isTls: boolean;
|
|
5941
|
+
};
|
|
5942
|
+
};
|
|
5943
|
+
export type UpstreamProxySocksFullFragment = {
|
|
5944
|
+
__typename: "UpstreamProxySocks";
|
|
5945
|
+
id: string;
|
|
5946
|
+
allowlist: Array<string>;
|
|
5947
|
+
denylist: Array<string>;
|
|
5948
|
+
enabled: boolean;
|
|
5949
|
+
includeDns: boolean;
|
|
5950
|
+
rank: string;
|
|
5951
|
+
auth?: {
|
|
5952
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
5953
|
+
username: string;
|
|
5954
|
+
password: string;
|
|
5955
|
+
} | undefined | null;
|
|
5956
|
+
connection: {
|
|
5957
|
+
__typename: "ConnectionInfo";
|
|
5958
|
+
host: string;
|
|
5959
|
+
port: number;
|
|
5960
|
+
isTls: boolean;
|
|
5961
|
+
};
|
|
5962
|
+
};
|
|
5963
|
+
export type UpstreamProxyAuthBasicFullFragment = {
|
|
5964
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
5965
|
+
username: string;
|
|
5966
|
+
password: string;
|
|
5967
|
+
};
|
|
5776
5968
|
export type UserProfileFullFragment = {
|
|
5777
5969
|
__typename: "UserProfile";
|
|
5778
5970
|
identity: {
|
|
@@ -5804,6 +5996,7 @@ export type WorkflowMetaFragment = {
|
|
|
5804
5996
|
name: string;
|
|
5805
5997
|
enabled: boolean;
|
|
5806
5998
|
global: boolean;
|
|
5999
|
+
readOnly: boolean;
|
|
5807
6000
|
};
|
|
5808
6001
|
export type WorkflowFullFragment = {
|
|
5809
6002
|
__typename: "Workflow";
|
|
@@ -5813,6 +6006,7 @@ export type WorkflowFullFragment = {
|
|
|
5813
6006
|
name: string;
|
|
5814
6007
|
enabled: boolean;
|
|
5815
6008
|
global: boolean;
|
|
6009
|
+
readOnly: boolean;
|
|
5816
6010
|
};
|
|
5817
6011
|
export type WorkflowNodeDefinitionFullFragment = {
|
|
5818
6012
|
__typename: "WorkflowNodeDefinition";
|
|
@@ -5829,6 +6023,7 @@ export type WorkflowTaskMetaFragment = {
|
|
|
5829
6023
|
name: string;
|
|
5830
6024
|
enabled: boolean;
|
|
5831
6025
|
global: boolean;
|
|
6026
|
+
readOnly: boolean;
|
|
5832
6027
|
};
|
|
5833
6028
|
};
|
|
5834
6029
|
export type SendAssistantMessageMutationVariables = Exact<{
|
|
@@ -7018,93 +7213,6 @@ export type ResumeInterceptMutation = {
|
|
|
7018
7213
|
status: InterceptStatus;
|
|
7019
7214
|
};
|
|
7020
7215
|
};
|
|
7021
|
-
export type CreateUpstreamProxyMutationVariables = Exact<{
|
|
7022
|
-
input: CreateUpstreamProxyInput;
|
|
7023
|
-
}>;
|
|
7024
|
-
export type CreateUpstreamProxyMutation = {
|
|
7025
|
-
createUpstreamProxy: {
|
|
7026
|
-
proxy?: {
|
|
7027
|
-
__typename: "UpstreamProxy";
|
|
7028
|
-
id: string;
|
|
7029
|
-
allowlist: Array<string>;
|
|
7030
|
-
denylist: Array<string>;
|
|
7031
|
-
enabled: boolean;
|
|
7032
|
-
host: string;
|
|
7033
|
-
kind: UpstreamProxyKind;
|
|
7034
|
-
port: number;
|
|
7035
|
-
rank: string;
|
|
7036
|
-
auth?: {
|
|
7037
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
7038
|
-
username: string;
|
|
7039
|
-
password: string;
|
|
7040
|
-
} | undefined | null;
|
|
7041
|
-
} | undefined | null;
|
|
7042
|
-
};
|
|
7043
|
-
};
|
|
7044
|
-
export type UpdateUpstreamProxyMutationVariables = Exact<{
|
|
7045
|
-
id: Scalars["ID"]["input"];
|
|
7046
|
-
input: UpdateUpstreamProxyInput;
|
|
7047
|
-
}>;
|
|
7048
|
-
export type UpdateUpstreamProxyMutation = {
|
|
7049
|
-
updateUpstreamProxy: {
|
|
7050
|
-
proxy?: {
|
|
7051
|
-
__typename: "UpstreamProxy";
|
|
7052
|
-
id: string;
|
|
7053
|
-
allowlist: Array<string>;
|
|
7054
|
-
denylist: Array<string>;
|
|
7055
|
-
enabled: boolean;
|
|
7056
|
-
host: string;
|
|
7057
|
-
kind: UpstreamProxyKind;
|
|
7058
|
-
port: number;
|
|
7059
|
-
rank: string;
|
|
7060
|
-
auth?: {
|
|
7061
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
7062
|
-
username: string;
|
|
7063
|
-
password: string;
|
|
7064
|
-
} | undefined | null;
|
|
7065
|
-
} | undefined | null;
|
|
7066
|
-
};
|
|
7067
|
-
};
|
|
7068
|
-
export type DeleteUpstreamProxyMutationVariables = Exact<{
|
|
7069
|
-
id: Scalars["ID"]["input"];
|
|
7070
|
-
}>;
|
|
7071
|
-
export type DeleteUpstreamProxyMutation = {
|
|
7072
|
-
deleteUpstreamProxy: {
|
|
7073
|
-
deletedId?: string | undefined | null;
|
|
7074
|
-
};
|
|
7075
|
-
};
|
|
7076
|
-
export type TestUpstreamProxyMutationVariables = Exact<{
|
|
7077
|
-
input: TestUpstreamProxyInput;
|
|
7078
|
-
}>;
|
|
7079
|
-
export type TestUpstreamProxyMutation = {
|
|
7080
|
-
testUpstreamProxy: {
|
|
7081
|
-
success?: boolean | undefined | null;
|
|
7082
|
-
};
|
|
7083
|
-
};
|
|
7084
|
-
export type RankUpstreamProxyMutationVariables = Exact<{
|
|
7085
|
-
id: Scalars["ID"]["input"];
|
|
7086
|
-
input: RankUpstreamProxyInput;
|
|
7087
|
-
}>;
|
|
7088
|
-
export type RankUpstreamProxyMutation = {
|
|
7089
|
-
rankUpstreamProxy: {
|
|
7090
|
-
proxy?: {
|
|
7091
|
-
__typename: "UpstreamProxy";
|
|
7092
|
-
id: string;
|
|
7093
|
-
allowlist: Array<string>;
|
|
7094
|
-
denylist: Array<string>;
|
|
7095
|
-
enabled: boolean;
|
|
7096
|
-
host: string;
|
|
7097
|
-
kind: UpstreamProxyKind;
|
|
7098
|
-
port: number;
|
|
7099
|
-
rank: string;
|
|
7100
|
-
auth?: {
|
|
7101
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
7102
|
-
username: string;
|
|
7103
|
-
password: string;
|
|
7104
|
-
} | undefined | null;
|
|
7105
|
-
} | undefined | null;
|
|
7106
|
-
};
|
|
7107
|
-
};
|
|
7108
7216
|
export type InstallPluginPackageMutationVariables = Exact<{
|
|
7109
7217
|
input: InstallPluginPackageInput;
|
|
7110
7218
|
}>;
|
|
@@ -7147,10 +7255,28 @@ export type InstallPluginPackageMutation = {
|
|
|
7147
7255
|
package: {
|
|
7148
7256
|
id: string;
|
|
7149
7257
|
};
|
|
7150
|
-
}
|
|
7151
|
-
|
|
7258
|
+
} | {
|
|
7259
|
+
__typename: "PluginWorkflow";
|
|
7152
7260
|
name?: string | undefined | null;
|
|
7153
|
-
|
|
7261
|
+
id: string;
|
|
7262
|
+
enabled: boolean;
|
|
7263
|
+
manifestId: string;
|
|
7264
|
+
workflow?: {
|
|
7265
|
+
__typename: "Workflow";
|
|
7266
|
+
id: string;
|
|
7267
|
+
kind: WorkflowKind;
|
|
7268
|
+
name: string;
|
|
7269
|
+
enabled: boolean;
|
|
7270
|
+
global: boolean;
|
|
7271
|
+
readOnly: boolean;
|
|
7272
|
+
} | undefined | null;
|
|
7273
|
+
package: {
|
|
7274
|
+
id: string;
|
|
7275
|
+
};
|
|
7276
|
+
}>;
|
|
7277
|
+
author?: {
|
|
7278
|
+
name?: string | undefined | null;
|
|
7279
|
+
email?: string | undefined | null;
|
|
7154
7280
|
url?: string | undefined | null;
|
|
7155
7281
|
} | undefined | null;
|
|
7156
7282
|
} | undefined | null;
|
|
@@ -7220,6 +7346,24 @@ export type TogglePluginMutation = {
|
|
|
7220
7346
|
package: {
|
|
7221
7347
|
id: string;
|
|
7222
7348
|
};
|
|
7349
|
+
} | {
|
|
7350
|
+
__typename: "PluginWorkflow";
|
|
7351
|
+
name?: string | undefined | null;
|
|
7352
|
+
id: string;
|
|
7353
|
+
enabled: boolean;
|
|
7354
|
+
manifestId: string;
|
|
7355
|
+
workflow?: {
|
|
7356
|
+
__typename: "Workflow";
|
|
7357
|
+
id: string;
|
|
7358
|
+
kind: WorkflowKind;
|
|
7359
|
+
name: string;
|
|
7360
|
+
enabled: boolean;
|
|
7361
|
+
global: boolean;
|
|
7362
|
+
readOnly: boolean;
|
|
7363
|
+
} | undefined | null;
|
|
7364
|
+
package: {
|
|
7365
|
+
id: string;
|
|
7366
|
+
};
|
|
7223
7367
|
} | undefined | null;
|
|
7224
7368
|
error?: {
|
|
7225
7369
|
__typename: "OtherUserError";
|
|
@@ -7271,6 +7415,24 @@ export type SetPluginDataMutation = {
|
|
|
7271
7415
|
package: {
|
|
7272
7416
|
id: string;
|
|
7273
7417
|
};
|
|
7418
|
+
} | {
|
|
7419
|
+
__typename: "PluginWorkflow";
|
|
7420
|
+
name?: string | undefined | null;
|
|
7421
|
+
id: string;
|
|
7422
|
+
enabled: boolean;
|
|
7423
|
+
manifestId: string;
|
|
7424
|
+
workflow?: {
|
|
7425
|
+
__typename: "Workflow";
|
|
7426
|
+
id: string;
|
|
7427
|
+
kind: WorkflowKind;
|
|
7428
|
+
name: string;
|
|
7429
|
+
enabled: boolean;
|
|
7430
|
+
global: boolean;
|
|
7431
|
+
readOnly: boolean;
|
|
7432
|
+
} | undefined | null;
|
|
7433
|
+
package: {
|
|
7434
|
+
id: string;
|
|
7435
|
+
};
|
|
7274
7436
|
} | undefined | null;
|
|
7275
7437
|
error?: {
|
|
7276
7438
|
__typename: "OtherUserError";
|
|
@@ -8711,6 +8873,201 @@ export type CancelTaskMutation = {
|
|
|
8711
8873
|
} | undefined | null;
|
|
8712
8874
|
};
|
|
8713
8875
|
};
|
|
8876
|
+
export type CreateUpstreamProxyHttpMutationVariables = Exact<{
|
|
8877
|
+
input: CreateUpstreamProxyHttpInput;
|
|
8878
|
+
}>;
|
|
8879
|
+
export type CreateUpstreamProxyHttpMutation = {
|
|
8880
|
+
createUpstreamProxyHttp: {
|
|
8881
|
+
proxy?: {
|
|
8882
|
+
__typename: "UpstreamProxyHttp";
|
|
8883
|
+
id: string;
|
|
8884
|
+
allowlist: Array<string>;
|
|
8885
|
+
denylist: Array<string>;
|
|
8886
|
+
enabled: boolean;
|
|
8887
|
+
rank: string;
|
|
8888
|
+
auth?: {
|
|
8889
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
8890
|
+
username: string;
|
|
8891
|
+
password: string;
|
|
8892
|
+
} | undefined | null;
|
|
8893
|
+
connection: {
|
|
8894
|
+
__typename: "ConnectionInfo";
|
|
8895
|
+
host: string;
|
|
8896
|
+
port: number;
|
|
8897
|
+
isTls: boolean;
|
|
8898
|
+
};
|
|
8899
|
+
} | undefined | null;
|
|
8900
|
+
};
|
|
8901
|
+
};
|
|
8902
|
+
export type UpdateUpstreamProxyHttpMutationVariables = Exact<{
|
|
8903
|
+
id: Scalars["ID"]["input"];
|
|
8904
|
+
input: UpdateUpstreamProxyHttpInput;
|
|
8905
|
+
}>;
|
|
8906
|
+
export type UpdateUpstreamProxyHttpMutation = {
|
|
8907
|
+
updateUpstreamProxyHttp: {
|
|
8908
|
+
proxy?: {
|
|
8909
|
+
__typename: "UpstreamProxyHttp";
|
|
8910
|
+
id: string;
|
|
8911
|
+
allowlist: Array<string>;
|
|
8912
|
+
denylist: Array<string>;
|
|
8913
|
+
enabled: boolean;
|
|
8914
|
+
rank: string;
|
|
8915
|
+
auth?: {
|
|
8916
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
8917
|
+
username: string;
|
|
8918
|
+
password: string;
|
|
8919
|
+
} | undefined | null;
|
|
8920
|
+
connection: {
|
|
8921
|
+
__typename: "ConnectionInfo";
|
|
8922
|
+
host: string;
|
|
8923
|
+
port: number;
|
|
8924
|
+
isTls: boolean;
|
|
8925
|
+
};
|
|
8926
|
+
} | undefined | null;
|
|
8927
|
+
};
|
|
8928
|
+
};
|
|
8929
|
+
export type DeleteUpstreamProxyHttpMutationVariables = Exact<{
|
|
8930
|
+
id: Scalars["ID"]["input"];
|
|
8931
|
+
}>;
|
|
8932
|
+
export type DeleteUpstreamProxyHttpMutation = {
|
|
8933
|
+
deleteUpstreamProxyHttp: {
|
|
8934
|
+
deletedId?: string | undefined | null;
|
|
8935
|
+
};
|
|
8936
|
+
};
|
|
8937
|
+
export type TestUpstreamProxyHttpMutationVariables = Exact<{
|
|
8938
|
+
input: TestUpstreamProxyHttpInput;
|
|
8939
|
+
}>;
|
|
8940
|
+
export type TestUpstreamProxyHttpMutation = {
|
|
8941
|
+
testUpstreamProxyHttp: {
|
|
8942
|
+
success?: boolean | undefined | null;
|
|
8943
|
+
};
|
|
8944
|
+
};
|
|
8945
|
+
export type RankUpstreamProxyHttpMutationVariables = Exact<{
|
|
8946
|
+
id: Scalars["ID"]["input"];
|
|
8947
|
+
input: RankUpstreamProxyHttpInput;
|
|
8948
|
+
}>;
|
|
8949
|
+
export type RankUpstreamProxyHttpMutation = {
|
|
8950
|
+
rankUpstreamProxyHttp: {
|
|
8951
|
+
proxy?: {
|
|
8952
|
+
__typename: "UpstreamProxyHttp";
|
|
8953
|
+
id: string;
|
|
8954
|
+
allowlist: Array<string>;
|
|
8955
|
+
denylist: Array<string>;
|
|
8956
|
+
enabled: boolean;
|
|
8957
|
+
rank: string;
|
|
8958
|
+
auth?: {
|
|
8959
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
8960
|
+
username: string;
|
|
8961
|
+
password: string;
|
|
8962
|
+
} | undefined | null;
|
|
8963
|
+
connection: {
|
|
8964
|
+
__typename: "ConnectionInfo";
|
|
8965
|
+
host: string;
|
|
8966
|
+
port: number;
|
|
8967
|
+
isTls: boolean;
|
|
8968
|
+
};
|
|
8969
|
+
} | undefined | null;
|
|
8970
|
+
};
|
|
8971
|
+
};
|
|
8972
|
+
export type CreateUpstreamProxySocksMutationVariables = Exact<{
|
|
8973
|
+
input: CreateUpstreamProxySocksInput;
|
|
8974
|
+
}>;
|
|
8975
|
+
export type CreateUpstreamProxySocksMutation = {
|
|
8976
|
+
createUpstreamProxySocks: {
|
|
8977
|
+
proxy?: {
|
|
8978
|
+
__typename: "UpstreamProxySocks";
|
|
8979
|
+
id: string;
|
|
8980
|
+
allowlist: Array<string>;
|
|
8981
|
+
denylist: Array<string>;
|
|
8982
|
+
enabled: boolean;
|
|
8983
|
+
includeDns: boolean;
|
|
8984
|
+
rank: string;
|
|
8985
|
+
auth?: {
|
|
8986
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
8987
|
+
username: string;
|
|
8988
|
+
password: string;
|
|
8989
|
+
} | undefined | null;
|
|
8990
|
+
connection: {
|
|
8991
|
+
__typename: "ConnectionInfo";
|
|
8992
|
+
host: string;
|
|
8993
|
+
port: number;
|
|
8994
|
+
isTls: boolean;
|
|
8995
|
+
};
|
|
8996
|
+
} | undefined | null;
|
|
8997
|
+
};
|
|
8998
|
+
};
|
|
8999
|
+
export type UpdateUpstreamProxySocksMutationVariables = Exact<{
|
|
9000
|
+
id: Scalars["ID"]["input"];
|
|
9001
|
+
input: UpdateUpstreamProxySocksInput;
|
|
9002
|
+
}>;
|
|
9003
|
+
export type UpdateUpstreamProxySocksMutation = {
|
|
9004
|
+
updateUpstreamProxySocks: {
|
|
9005
|
+
proxy?: {
|
|
9006
|
+
__typename: "UpstreamProxySocks";
|
|
9007
|
+
id: string;
|
|
9008
|
+
allowlist: Array<string>;
|
|
9009
|
+
denylist: Array<string>;
|
|
9010
|
+
enabled: boolean;
|
|
9011
|
+
includeDns: boolean;
|
|
9012
|
+
rank: string;
|
|
9013
|
+
auth?: {
|
|
9014
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
9015
|
+
username: string;
|
|
9016
|
+
password: string;
|
|
9017
|
+
} | undefined | null;
|
|
9018
|
+
connection: {
|
|
9019
|
+
__typename: "ConnectionInfo";
|
|
9020
|
+
host: string;
|
|
9021
|
+
port: number;
|
|
9022
|
+
isTls: boolean;
|
|
9023
|
+
};
|
|
9024
|
+
} | undefined | null;
|
|
9025
|
+
};
|
|
9026
|
+
};
|
|
9027
|
+
export type DeleteUpstreamProxySocksMutationVariables = Exact<{
|
|
9028
|
+
id: Scalars["ID"]["input"];
|
|
9029
|
+
}>;
|
|
9030
|
+
export type DeleteUpstreamProxySocksMutation = {
|
|
9031
|
+
deleteUpstreamProxySocks: {
|
|
9032
|
+
deletedId?: string | undefined | null;
|
|
9033
|
+
};
|
|
9034
|
+
};
|
|
9035
|
+
export type TestUpstreamProxySocksMutationVariables = Exact<{
|
|
9036
|
+
input: TestUpstreamProxySocksInput;
|
|
9037
|
+
}>;
|
|
9038
|
+
export type TestUpstreamProxySocksMutation = {
|
|
9039
|
+
testUpstreamProxySocks: {
|
|
9040
|
+
success?: boolean | undefined | null;
|
|
9041
|
+
};
|
|
9042
|
+
};
|
|
9043
|
+
export type RankUpstreamProxySocksMutationVariables = Exact<{
|
|
9044
|
+
id: Scalars["ID"]["input"];
|
|
9045
|
+
input: RankUpstreamProxySocksInput;
|
|
9046
|
+
}>;
|
|
9047
|
+
export type RankUpstreamProxySocksMutation = {
|
|
9048
|
+
rankUpstreamProxySocks: {
|
|
9049
|
+
proxy?: {
|
|
9050
|
+
__typename: "UpstreamProxySocks";
|
|
9051
|
+
id: string;
|
|
9052
|
+
allowlist: Array<string>;
|
|
9053
|
+
denylist: Array<string>;
|
|
9054
|
+
enabled: boolean;
|
|
9055
|
+
includeDns: boolean;
|
|
9056
|
+
rank: string;
|
|
9057
|
+
auth?: {
|
|
9058
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
9059
|
+
username: string;
|
|
9060
|
+
password: string;
|
|
9061
|
+
} | undefined | null;
|
|
9062
|
+
connection: {
|
|
9063
|
+
__typename: "ConnectionInfo";
|
|
9064
|
+
host: string;
|
|
9065
|
+
port: number;
|
|
9066
|
+
isTls: boolean;
|
|
9067
|
+
};
|
|
9068
|
+
} | undefined | null;
|
|
9069
|
+
};
|
|
9070
|
+
};
|
|
8714
9071
|
export type UpdateViewerSettingsMutationVariables = Exact<{
|
|
8715
9072
|
input: UpdateViewerSettingsInput;
|
|
8716
9073
|
}>;
|
|
@@ -8733,7 +9090,7 @@ export type CreateWorkflowMutation = {
|
|
|
8733
9090
|
code: string;
|
|
8734
9091
|
} | {
|
|
8735
9092
|
__typename: "WorkflowUserError";
|
|
8736
|
-
|
|
9093
|
+
node?: string | undefined | null;
|
|
8737
9094
|
message: string;
|
|
8738
9095
|
reason: WorkflowErrorReason;
|
|
8739
9096
|
code: string;
|
|
@@ -8746,6 +9103,7 @@ export type CreateWorkflowMutation = {
|
|
|
8746
9103
|
name: string;
|
|
8747
9104
|
enabled: boolean;
|
|
8748
9105
|
global: boolean;
|
|
9106
|
+
readOnly: boolean;
|
|
8749
9107
|
} | undefined | null;
|
|
8750
9108
|
};
|
|
8751
9109
|
};
|
|
@@ -8755,6 +9113,17 @@ export type DeleteWorkflowMutationVariables = Exact<{
|
|
|
8755
9113
|
export type DeleteWorkflowMutation = {
|
|
8756
9114
|
deleteWorkflow: {
|
|
8757
9115
|
deletedId?: string | undefined | null;
|
|
9116
|
+
error?: {
|
|
9117
|
+
__typename: "OtherUserError";
|
|
9118
|
+
code: string;
|
|
9119
|
+
} | {
|
|
9120
|
+
__typename: "ReadOnlyUserError";
|
|
9121
|
+
code: string;
|
|
9122
|
+
} | {
|
|
9123
|
+
__typename: "UnknownIdUserError";
|
|
9124
|
+
id: string;
|
|
9125
|
+
code: string;
|
|
9126
|
+
} | undefined | null;
|
|
8758
9127
|
};
|
|
8759
9128
|
};
|
|
8760
9129
|
export type ToggleWorkflowMutationVariables = Exact<{
|
|
@@ -8779,6 +9148,7 @@ export type ToggleWorkflowMutation = {
|
|
|
8779
9148
|
name: string;
|
|
8780
9149
|
enabled: boolean;
|
|
8781
9150
|
global: boolean;
|
|
9151
|
+
readOnly: boolean;
|
|
8782
9152
|
} | undefined | null;
|
|
8783
9153
|
};
|
|
8784
9154
|
};
|
|
@@ -8791,6 +9161,9 @@ export type RenameWorkflowMutation = {
|
|
|
8791
9161
|
error?: {
|
|
8792
9162
|
__typename: "OtherUserError";
|
|
8793
9163
|
code: string;
|
|
9164
|
+
} | {
|
|
9165
|
+
__typename: "ReadOnlyUserError";
|
|
9166
|
+
code: string;
|
|
8794
9167
|
} | {
|
|
8795
9168
|
__typename: "UnknownIdUserError";
|
|
8796
9169
|
id: string;
|
|
@@ -8804,6 +9177,7 @@ export type RenameWorkflowMutation = {
|
|
|
8804
9177
|
name: string;
|
|
8805
9178
|
enabled: boolean;
|
|
8806
9179
|
global: boolean;
|
|
9180
|
+
readOnly: boolean;
|
|
8807
9181
|
} | undefined | null;
|
|
8808
9182
|
};
|
|
8809
9183
|
};
|
|
@@ -8816,13 +9190,16 @@ export type UpdateWorkflowMutation = {
|
|
|
8816
9190
|
error?: {
|
|
8817
9191
|
__typename: "OtherUserError";
|
|
8818
9192
|
code: string;
|
|
9193
|
+
} | {
|
|
9194
|
+
__typename: "ReadOnlyUserError";
|
|
9195
|
+
code: string;
|
|
8819
9196
|
} | {
|
|
8820
9197
|
__typename: "UnknownIdUserError";
|
|
8821
9198
|
id: string;
|
|
8822
9199
|
code: string;
|
|
8823
9200
|
} | {
|
|
8824
9201
|
__typename: "WorkflowUserError";
|
|
8825
|
-
|
|
9202
|
+
node?: string | undefined | null;
|
|
8826
9203
|
message: string;
|
|
8827
9204
|
reason: WorkflowErrorReason;
|
|
8828
9205
|
code: string;
|
|
@@ -8835,6 +9212,7 @@ export type UpdateWorkflowMutation = {
|
|
|
8835
9212
|
name: string;
|
|
8836
9213
|
enabled: boolean;
|
|
8837
9214
|
global: boolean;
|
|
9215
|
+
readOnly: boolean;
|
|
8838
9216
|
} | undefined | null;
|
|
8839
9217
|
};
|
|
8840
9218
|
};
|
|
@@ -8854,7 +9232,7 @@ export type RunConvertWorkflowMutation = {
|
|
|
8854
9232
|
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
8855
9233
|
} | {
|
|
8856
9234
|
__typename: "WorkflowUserError";
|
|
8857
|
-
|
|
9235
|
+
node?: string | undefined | null;
|
|
8858
9236
|
message: string;
|
|
8859
9237
|
reason: WorkflowErrorReason;
|
|
8860
9238
|
code: string;
|
|
@@ -8890,6 +9268,7 @@ export type RunActiveWorkflowMutation = {
|
|
|
8890
9268
|
name: string;
|
|
8891
9269
|
enabled: boolean;
|
|
8892
9270
|
global: boolean;
|
|
9271
|
+
readOnly: boolean;
|
|
8893
9272
|
};
|
|
8894
9273
|
} | undefined | null;
|
|
8895
9274
|
};
|
|
@@ -8902,13 +9281,16 @@ export type GlobalizeWorkflowMutation = {
|
|
|
8902
9281
|
error?: {
|
|
8903
9282
|
__typename: "OtherUserError";
|
|
8904
9283
|
code: string;
|
|
9284
|
+
} | {
|
|
9285
|
+
__typename: "ReadOnlyUserError";
|
|
9286
|
+
code: string;
|
|
8905
9287
|
} | {
|
|
8906
9288
|
__typename: "UnknownIdUserError";
|
|
8907
9289
|
id: string;
|
|
8908
9290
|
code: string;
|
|
8909
9291
|
} | {
|
|
8910
9292
|
__typename: "WorkflowUserError";
|
|
8911
|
-
|
|
9293
|
+
node?: string | undefined | null;
|
|
8912
9294
|
message: string;
|
|
8913
9295
|
reason: WorkflowErrorReason;
|
|
8914
9296
|
code: string;
|
|
@@ -8921,6 +9303,7 @@ export type GlobalizeWorkflowMutation = {
|
|
|
8921
9303
|
name: string;
|
|
8922
9304
|
enabled: boolean;
|
|
8923
9305
|
global: boolean;
|
|
9306
|
+
readOnly: boolean;
|
|
8924
9307
|
} | undefined | null;
|
|
8925
9308
|
};
|
|
8926
9309
|
};
|
|
@@ -8932,13 +9315,16 @@ export type LocalizeWorkflowMutation = {
|
|
|
8932
9315
|
error?: {
|
|
8933
9316
|
__typename: "OtherUserError";
|
|
8934
9317
|
code: string;
|
|
9318
|
+
} | {
|
|
9319
|
+
__typename: "ReadOnlyUserError";
|
|
9320
|
+
code: string;
|
|
8935
9321
|
} | {
|
|
8936
9322
|
__typename: "UnknownIdUserError";
|
|
8937
9323
|
id: string;
|
|
8938
9324
|
code: string;
|
|
8939
9325
|
} | {
|
|
8940
9326
|
__typename: "WorkflowUserError";
|
|
8941
|
-
|
|
9327
|
+
node?: string | undefined | null;
|
|
8942
9328
|
message: string;
|
|
8943
9329
|
reason: WorkflowErrorReason;
|
|
8944
9330
|
code: string;
|
|
@@ -8951,6 +9337,7 @@ export type LocalizeWorkflowMutation = {
|
|
|
8951
9337
|
name: string;
|
|
8952
9338
|
enabled: boolean;
|
|
8953
9339
|
global: boolean;
|
|
9340
|
+
readOnly: boolean;
|
|
8954
9341
|
} | undefined | null;
|
|
8955
9342
|
};
|
|
8956
9343
|
};
|
|
@@ -10358,27 +10745,6 @@ export type InterceptStatusQueryVariables = Exact<{
|
|
|
10358
10745
|
export type InterceptStatusQuery = {
|
|
10359
10746
|
interceptStatus: InterceptStatus;
|
|
10360
10747
|
};
|
|
10361
|
-
export type UpstreamProxiesQueryVariables = Exact<{
|
|
10362
|
-
[key: string]: never;
|
|
10363
|
-
}>;
|
|
10364
|
-
export type UpstreamProxiesQuery = {
|
|
10365
|
-
upstreamProxies: Array<{
|
|
10366
|
-
__typename: "UpstreamProxy";
|
|
10367
|
-
id: string;
|
|
10368
|
-
allowlist: Array<string>;
|
|
10369
|
-
denylist: Array<string>;
|
|
10370
|
-
enabled: boolean;
|
|
10371
|
-
host: string;
|
|
10372
|
-
kind: UpstreamProxyKind;
|
|
10373
|
-
port: number;
|
|
10374
|
-
rank: string;
|
|
10375
|
-
auth?: {
|
|
10376
|
-
__typename: "UpstreamProxyAuthBasic";
|
|
10377
|
-
username: string;
|
|
10378
|
-
password: string;
|
|
10379
|
-
} | undefined | null;
|
|
10380
|
-
}>;
|
|
10381
|
-
};
|
|
10382
10748
|
export type PluginPackagesQueryVariables = Exact<{
|
|
10383
10749
|
[key: string]: never;
|
|
10384
10750
|
}>;
|
|
@@ -10420,6 +10786,24 @@ export type PluginPackagesQuery = {
|
|
|
10420
10786
|
package: {
|
|
10421
10787
|
id: string;
|
|
10422
10788
|
};
|
|
10789
|
+
} | {
|
|
10790
|
+
__typename: "PluginWorkflow";
|
|
10791
|
+
name?: string | undefined | null;
|
|
10792
|
+
id: string;
|
|
10793
|
+
enabled: boolean;
|
|
10794
|
+
manifestId: string;
|
|
10795
|
+
workflow?: {
|
|
10796
|
+
__typename: "Workflow";
|
|
10797
|
+
id: string;
|
|
10798
|
+
kind: WorkflowKind;
|
|
10799
|
+
name: string;
|
|
10800
|
+
enabled: boolean;
|
|
10801
|
+
global: boolean;
|
|
10802
|
+
readOnly: boolean;
|
|
10803
|
+
} | undefined | null;
|
|
10804
|
+
package: {
|
|
10805
|
+
id: string;
|
|
10806
|
+
};
|
|
10423
10807
|
}>;
|
|
10424
10808
|
author?: {
|
|
10425
10809
|
name?: string | undefined | null;
|
|
@@ -11788,6 +12172,51 @@ export type GetTasksQuery = {
|
|
|
11788
12172
|
name: string;
|
|
11789
12173
|
enabled: boolean;
|
|
11790
12174
|
global: boolean;
|
|
12175
|
+
readOnly: boolean;
|
|
12176
|
+
};
|
|
12177
|
+
}>;
|
|
12178
|
+
};
|
|
12179
|
+
export type UpstreamProxiesQueryVariables = Exact<{
|
|
12180
|
+
[key: string]: never;
|
|
12181
|
+
}>;
|
|
12182
|
+
export type UpstreamProxiesQuery = {
|
|
12183
|
+
upstreamProxiesHttp: Array<{
|
|
12184
|
+
__typename: "UpstreamProxyHttp";
|
|
12185
|
+
id: string;
|
|
12186
|
+
allowlist: Array<string>;
|
|
12187
|
+
denylist: Array<string>;
|
|
12188
|
+
enabled: boolean;
|
|
12189
|
+
rank: string;
|
|
12190
|
+
auth?: {
|
|
12191
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
12192
|
+
username: string;
|
|
12193
|
+
password: string;
|
|
12194
|
+
} | undefined | null;
|
|
12195
|
+
connection: {
|
|
12196
|
+
__typename: "ConnectionInfo";
|
|
12197
|
+
host: string;
|
|
12198
|
+
port: number;
|
|
12199
|
+
isTls: boolean;
|
|
12200
|
+
};
|
|
12201
|
+
}>;
|
|
12202
|
+
upstreamProxiesSocks: Array<{
|
|
12203
|
+
__typename: "UpstreamProxySocks";
|
|
12204
|
+
id: string;
|
|
12205
|
+
allowlist: Array<string>;
|
|
12206
|
+
denylist: Array<string>;
|
|
12207
|
+
enabled: boolean;
|
|
12208
|
+
includeDns: boolean;
|
|
12209
|
+
rank: string;
|
|
12210
|
+
auth?: {
|
|
12211
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
12212
|
+
username: string;
|
|
12213
|
+
password: string;
|
|
12214
|
+
} | undefined | null;
|
|
12215
|
+
connection: {
|
|
12216
|
+
__typename: "ConnectionInfo";
|
|
12217
|
+
host: string;
|
|
12218
|
+
port: number;
|
|
12219
|
+
isTls: boolean;
|
|
11791
12220
|
};
|
|
11792
12221
|
}>;
|
|
11793
12222
|
};
|
|
@@ -11843,6 +12272,7 @@ export type WorkflowQuery = {
|
|
|
11843
12272
|
name: string;
|
|
11844
12273
|
enabled: boolean;
|
|
11845
12274
|
global: boolean;
|
|
12275
|
+
readOnly: boolean;
|
|
11846
12276
|
} | undefined | null;
|
|
11847
12277
|
};
|
|
11848
12278
|
export type WorkflowsQueryVariables = Exact<{
|
|
@@ -11857,6 +12287,7 @@ export type WorkflowsQuery = {
|
|
|
11857
12287
|
name: string;
|
|
11858
12288
|
enabled: boolean;
|
|
11859
12289
|
global: boolean;
|
|
12290
|
+
readOnly: boolean;
|
|
11860
12291
|
}>;
|
|
11861
12292
|
};
|
|
11862
12293
|
export type WorkflowNodeDefinitionsQueryVariables = Exact<{
|
|
@@ -12850,6 +13281,24 @@ export type CreatedPluginPackageSubscription = {
|
|
|
12850
13281
|
package: {
|
|
12851
13282
|
id: string;
|
|
12852
13283
|
};
|
|
13284
|
+
} | {
|
|
13285
|
+
__typename: "PluginWorkflow";
|
|
13286
|
+
name?: string | undefined | null;
|
|
13287
|
+
id: string;
|
|
13288
|
+
enabled: boolean;
|
|
13289
|
+
manifestId: string;
|
|
13290
|
+
workflow?: {
|
|
13291
|
+
__typename: "Workflow";
|
|
13292
|
+
id: string;
|
|
13293
|
+
kind: WorkflowKind;
|
|
13294
|
+
name: string;
|
|
13295
|
+
enabled: boolean;
|
|
13296
|
+
global: boolean;
|
|
13297
|
+
readOnly: boolean;
|
|
13298
|
+
} | undefined | null;
|
|
13299
|
+
package: {
|
|
13300
|
+
id: string;
|
|
13301
|
+
};
|
|
12853
13302
|
}>;
|
|
12854
13303
|
author?: {
|
|
12855
13304
|
name?: string | undefined | null;
|
|
@@ -12902,6 +13351,24 @@ export type UpdatedPluginSubscription = {
|
|
|
12902
13351
|
package: {
|
|
12903
13352
|
id: string;
|
|
12904
13353
|
};
|
|
13354
|
+
} | {
|
|
13355
|
+
__typename: "PluginWorkflow";
|
|
13356
|
+
name?: string | undefined | null;
|
|
13357
|
+
id: string;
|
|
13358
|
+
enabled: boolean;
|
|
13359
|
+
manifestId: string;
|
|
13360
|
+
workflow?: {
|
|
13361
|
+
__typename: "Workflow";
|
|
13362
|
+
id: string;
|
|
13363
|
+
kind: WorkflowKind;
|
|
13364
|
+
name: string;
|
|
13365
|
+
enabled: boolean;
|
|
13366
|
+
global: boolean;
|
|
13367
|
+
readOnly: boolean;
|
|
13368
|
+
} | undefined | null;
|
|
13369
|
+
package: {
|
|
13370
|
+
id: string;
|
|
13371
|
+
};
|
|
12905
13372
|
};
|
|
12906
13373
|
};
|
|
12907
13374
|
};
|
|
@@ -13461,6 +13928,7 @@ export type StartedTaskSubscription = {
|
|
|
13461
13928
|
name: string;
|
|
13462
13929
|
enabled: boolean;
|
|
13463
13930
|
global: boolean;
|
|
13931
|
+
readOnly: boolean;
|
|
13464
13932
|
};
|
|
13465
13933
|
};
|
|
13466
13934
|
};
|
|
@@ -13530,6 +13998,7 @@ export type FinishedTaskSubscription = {
|
|
|
13530
13998
|
name: string;
|
|
13531
13999
|
enabled: boolean;
|
|
13532
14000
|
global: boolean;
|
|
14001
|
+
readOnly: boolean;
|
|
13533
14002
|
};
|
|
13534
14003
|
};
|
|
13535
14004
|
error?: {
|
|
@@ -13572,9 +14041,133 @@ export type FinishedTaskSubscription = {
|
|
|
13572
14041
|
code: string;
|
|
13573
14042
|
} | {
|
|
13574
14043
|
code: string;
|
|
14044
|
+
} | {
|
|
14045
|
+
code: string;
|
|
13575
14046
|
} | undefined | null;
|
|
13576
14047
|
};
|
|
13577
14048
|
};
|
|
14049
|
+
export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
14050
|
+
[key: string]: never;
|
|
14051
|
+
}>;
|
|
14052
|
+
export type CreatedUpstreamProxyHttpSubscription = {
|
|
14053
|
+
createdUpstreamProxyHttp: {
|
|
14054
|
+
proxy: {
|
|
14055
|
+
__typename: "UpstreamProxyHttp";
|
|
14056
|
+
id: string;
|
|
14057
|
+
allowlist: Array<string>;
|
|
14058
|
+
denylist: Array<string>;
|
|
14059
|
+
enabled: boolean;
|
|
14060
|
+
rank: string;
|
|
14061
|
+
auth?: {
|
|
14062
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
14063
|
+
username: string;
|
|
14064
|
+
password: string;
|
|
14065
|
+
} | undefined | null;
|
|
14066
|
+
connection: {
|
|
14067
|
+
__typename: "ConnectionInfo";
|
|
14068
|
+
host: string;
|
|
14069
|
+
port: number;
|
|
14070
|
+
isTls: boolean;
|
|
14071
|
+
};
|
|
14072
|
+
};
|
|
14073
|
+
};
|
|
14074
|
+
};
|
|
14075
|
+
export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
14076
|
+
[key: string]: never;
|
|
14077
|
+
}>;
|
|
14078
|
+
export type UpdatedUpstreamProxyHttpSubscription = {
|
|
14079
|
+
updatedUpstreamProxyHttp: {
|
|
14080
|
+
proxy: {
|
|
14081
|
+
__typename: "UpstreamProxyHttp";
|
|
14082
|
+
id: string;
|
|
14083
|
+
allowlist: Array<string>;
|
|
14084
|
+
denylist: Array<string>;
|
|
14085
|
+
enabled: boolean;
|
|
14086
|
+
rank: string;
|
|
14087
|
+
auth?: {
|
|
14088
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
14089
|
+
username: string;
|
|
14090
|
+
password: string;
|
|
14091
|
+
} | undefined | null;
|
|
14092
|
+
connection: {
|
|
14093
|
+
__typename: "ConnectionInfo";
|
|
14094
|
+
host: string;
|
|
14095
|
+
port: number;
|
|
14096
|
+
isTls: boolean;
|
|
14097
|
+
};
|
|
14098
|
+
};
|
|
14099
|
+
};
|
|
14100
|
+
};
|
|
14101
|
+
export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
14102
|
+
[key: string]: never;
|
|
14103
|
+
}>;
|
|
14104
|
+
export type DeletedUpstreamProxyHttpSubscription = {
|
|
14105
|
+
deletedUpstreamProxyHttp: {
|
|
14106
|
+
deletedProxyId: string;
|
|
14107
|
+
};
|
|
14108
|
+
};
|
|
14109
|
+
export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
14110
|
+
[key: string]: never;
|
|
14111
|
+
}>;
|
|
14112
|
+
export type CreatedUpstreamProxySocksSubscription = {
|
|
14113
|
+
createdUpstreamProxySocks: {
|
|
14114
|
+
proxy: {
|
|
14115
|
+
__typename: "UpstreamProxySocks";
|
|
14116
|
+
id: string;
|
|
14117
|
+
allowlist: Array<string>;
|
|
14118
|
+
denylist: Array<string>;
|
|
14119
|
+
enabled: boolean;
|
|
14120
|
+
includeDns: boolean;
|
|
14121
|
+
rank: string;
|
|
14122
|
+
auth?: {
|
|
14123
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
14124
|
+
username: string;
|
|
14125
|
+
password: string;
|
|
14126
|
+
} | undefined | null;
|
|
14127
|
+
connection: {
|
|
14128
|
+
__typename: "ConnectionInfo";
|
|
14129
|
+
host: string;
|
|
14130
|
+
port: number;
|
|
14131
|
+
isTls: boolean;
|
|
14132
|
+
};
|
|
14133
|
+
};
|
|
14134
|
+
};
|
|
14135
|
+
};
|
|
14136
|
+
export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
14137
|
+
[key: string]: never;
|
|
14138
|
+
}>;
|
|
14139
|
+
export type UpdatedUpstreamProxySocksSubscription = {
|
|
14140
|
+
updatedUpstreamProxySocks: {
|
|
14141
|
+
proxy: {
|
|
14142
|
+
__typename: "UpstreamProxySocks";
|
|
14143
|
+
id: string;
|
|
14144
|
+
allowlist: Array<string>;
|
|
14145
|
+
denylist: Array<string>;
|
|
14146
|
+
enabled: boolean;
|
|
14147
|
+
includeDns: boolean;
|
|
14148
|
+
rank: string;
|
|
14149
|
+
auth?: {
|
|
14150
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
14151
|
+
username: string;
|
|
14152
|
+
password: string;
|
|
14153
|
+
} | undefined | null;
|
|
14154
|
+
connection: {
|
|
14155
|
+
__typename: "ConnectionInfo";
|
|
14156
|
+
host: string;
|
|
14157
|
+
port: number;
|
|
14158
|
+
isTls: boolean;
|
|
14159
|
+
};
|
|
14160
|
+
};
|
|
14161
|
+
};
|
|
14162
|
+
};
|
|
14163
|
+
export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
14164
|
+
[key: string]: never;
|
|
14165
|
+
}>;
|
|
14166
|
+
export type DeletedUpstreamProxySocksSubscription = {
|
|
14167
|
+
deletedUpstreamProxySocks: {
|
|
14168
|
+
deletedProxyId: string;
|
|
14169
|
+
};
|
|
14170
|
+
};
|
|
13578
14171
|
export type CreatedWorkflowSubscriptionVariables = Exact<{
|
|
13579
14172
|
[key: string]: never;
|
|
13580
14173
|
}>;
|
|
@@ -13590,6 +14183,7 @@ export type CreatedWorkflowSubscription = {
|
|
|
13590
14183
|
name: string;
|
|
13591
14184
|
enabled: boolean;
|
|
13592
14185
|
global: boolean;
|
|
14186
|
+
readOnly: boolean;
|
|
13593
14187
|
};
|
|
13594
14188
|
};
|
|
13595
14189
|
};
|
|
@@ -13617,6 +14211,7 @@ export type UpdatedWorkflowSubscription = {
|
|
|
13617
14211
|
name: string;
|
|
13618
14212
|
enabled: boolean;
|
|
13619
14213
|
global: boolean;
|
|
14214
|
+
readOnly: boolean;
|
|
13620
14215
|
};
|
|
13621
14216
|
};
|
|
13622
14217
|
};
|
|
@@ -13682,7 +14277,8 @@ export declare const TaskInProgressUserErrorFullFragmentDoc = "\n fragment ta
|
|
|
13682
14277
|
export declare const UnknownIdUserErrorFullFragmentDoc = "\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
13683
14278
|
export declare const UnsupportedPlatformUserErrorFullFragmentDoc = "\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n ";
|
|
13684
14279
|
export declare const PermissionDeniedUserErrorFullFragmentDoc = "\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
13685
|
-
export declare const
|
|
14280
|
+
export declare const ReadOnlyUserErrorFullFragmentDoc = "\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n ";
|
|
14281
|
+
export declare const WorkflowUserErrorFullFragmentDoc = "\n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n ";
|
|
13686
14282
|
export declare const InvalidGlobTermsUserErrorFullFragmentDoc = "\n fragment invalidGlobTermsUserErrorFull on InvalidGlobTermsUserError {\n ...userErrorFull\n terms\n}\n ";
|
|
13687
14283
|
export declare const InvalidHttpqlUserErrorFullFragmentDoc = "\n fragment invalidHTTPQLUserErrorFull on InvalidHTTPQLUserError {\n ...userErrorFull\n query\n}\n ";
|
|
13688
14284
|
export declare const PluginUserErrorFullFragmentDoc = "\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
@@ -13712,15 +14308,15 @@ export declare const InterceptRequestOptionsMetaFragmentDoc = "\n fragment in
|
|
|
13712
14308
|
export declare const InterceptResponseOptionsMetaFragmentDoc = "\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n ";
|
|
13713
14309
|
export declare const InterceptScopeOptionsMetaFragmentDoc = "\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
13714
14310
|
export declare const InterceptOptionsMetaFragmentDoc = "\n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n ";
|
|
13715
|
-
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
13716
|
-
export declare const UpstreamProxyFullFragmentDoc = "\n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n ";
|
|
13717
14311
|
export declare const PluginAuthorFullFragmentDoc = "\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n ";
|
|
13718
14312
|
export declare const PluginPackageMetaFragmentDoc = "\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n ";
|
|
13719
14313
|
export declare const PluginMetaFragmentDoc = "\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
13720
14314
|
export declare const PluginBackendMetaFragmentDoc = "\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n ";
|
|
13721
14315
|
export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n ";
|
|
13722
14316
|
export declare const PluginBackendFullFragmentDoc = "\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
|
|
13723
|
-
export declare const
|
|
14317
|
+
export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14318
|
+
export declare const PluginWorkflowFullFragmentDoc = "\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
14319
|
+
export declare const PluginPackageFullFragmentDoc = "\n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n ";
|
|
13724
14320
|
export declare const StorePluginPackageFullFragmentDoc = "\n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n license\n manifestId\n name\n repository\n version\n}\n ";
|
|
13725
14321
|
export declare const ReplayEntryMetaFragmentDoc = "\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
13726
14322
|
export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
@@ -13750,9 +14346,11 @@ export declare const StreamWsMessageFullFragmentDoc = "\n fragment streamWsMe
|
|
|
13750
14346
|
export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n ";
|
|
13751
14347
|
export declare const TamperRuleFullFragmentDoc = "\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n ";
|
|
13752
14348
|
export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
|
|
14349
|
+
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
14350
|
+
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 ";
|
|
14351
|
+
export declare const UpstreamProxySocksFullFragmentDoc = "\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
13753
14352
|
export declare const UserProfileFullFragmentDoc = "\n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
13754
14353
|
export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
13755
|
-
export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
13756
14354
|
export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
|
|
13757
14355
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
13758
14356
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
@@ -13802,15 +14400,10 @@ export declare const DropInterceptMesageDocument = "\n mutation dropIntercept
|
|
|
13802
14400
|
export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
13803
14401
|
export declare const PauseInterceptDocument = "\n mutation pauseIntercept {\n pauseIntercept {\n status\n }\n}\n ";
|
|
13804
14402
|
export declare const ResumeInterceptDocument = "\n mutation resumeIntercept {\n resumeIntercept {\n status\n }\n}\n ";
|
|
13805
|
-
export declare const
|
|
13806
|
-
export declare const UpdateUpstreamProxyDocument = "\n mutation updateUpstreamProxy($id: ID!, $input: UpdateUpstreamProxyInput!) {\n updateUpstreamProxy(id: $id, input: $input) {\n proxy {\n ...upstreamProxyFull\n }\n }\n}\n \n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
13807
|
-
export declare const DeleteUpstreamProxyDocument = "\n mutation deleteUpstreamProxy($id: ID!) {\n deleteUpstreamProxy(id: $id) {\n deletedId\n }\n}\n ";
|
|
13808
|
-
export declare const TestUpstreamProxyDocument = "\n mutation testUpstreamProxy($input: TestUpstreamProxyInput!) {\n testUpstreamProxy(input: $input) {\n success\n }\n}\n ";
|
|
13809
|
-
export declare const RankUpstreamProxyDocument = "\n mutation rankUpstreamProxy($id: ID!, $input: RankUpstreamProxyInput!) {\n rankUpstreamProxy(id: $id, input: $input) {\n proxy {\n ...upstreamProxyFull\n }\n }\n}\n \n fragment upstreamProxyFull on UpstreamProxy {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n host\n kind\n port\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
13810
|
-
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
|
|
14403
|
+
export declare const InstallPluginPackageDocument = "\n mutation installPluginPackage($input: InstallPluginPackageInput!) {\n installPluginPackage(input: $input) {\n package {\n ...pluginPackageFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n ... on StoreUserError {\n ...storeUserErrorFull\n }\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment storeUserErrorFull on StoreUserError {\n ...userErrorFull\n storeReason: reason\n}\n ";
|
|
13811
14404
|
export declare const UninstallPluginPackageDocument = "\n mutation uninstallPluginPackage($id: ID!) {\n uninstallPluginPackage(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
13812
|
-
export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
13813
|
-
export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
14405
|
+
export declare const TogglePluginDocument = "\n mutation togglePlugin($id: ID!, $enabled: Boolean!) {\n togglePlugin(id: $id, enabled: $enabled) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
14406
|
+
export declare const SetPluginDataDocument = "\n mutation setPluginData($id: ID!, $data: JSON!) {\n setPluginData(id: $id, data: $data) {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PluginUserError {\n ...pluginUserErrorFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment pluginUserErrorFull on PluginUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
13814
14407
|
export declare const CreateProjectDocument = "\n mutation createProject($input: CreateProjectInput!) {\n createProject(input: $input) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\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 ";
|
|
13815
14408
|
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
13816
14409
|
export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -13843,16 +14436,26 @@ export declare const DisableTamperRuleDocument = "\n mutation disableTamperRu
|
|
|
13843
14436
|
export declare const RankTamperRuleDocument = "\n mutation rankTamperRule($id: ID!, $input: RankTamperRuleInput!) {\n rankTamperRule(id: $id, input: $input) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n ";
|
|
13844
14437
|
export declare const MoveTamperRuleDocument = "\n mutation moveTamperRule($id: ID!, $collectionId: ID!) {\n moveTamperRule(id: $id, collectionId: $collectionId) {\n rule {\n ...tamperRuleFull\n }\n }\n}\n \n fragment tamperRuleFull on TamperRule {\n __typename\n id\n isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n ";
|
|
13845
14438
|
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 ";
|
|
14439
|
+
export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14440
|
+
export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14441
|
+
export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
|
|
14442
|
+
export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
|
|
14443
|
+
export declare const RankUpstreamProxyHttpDocument = "\n mutation rankUpstreamProxyHttp($id: ID!, $input: RankUpstreamProxyHttpInput!) {\n rankUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14444
|
+
export declare const CreateUpstreamProxySocksDocument = "\n mutation createUpstreamProxySocks($input: CreateUpstreamProxySocksInput!) {\n createUpstreamProxySocks(input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14445
|
+
export declare const UpdateUpstreamProxySocksDocument = "\n mutation updateUpstreamProxySocks($id: ID!, $input: UpdateUpstreamProxySocksInput!) {\n updateUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14446
|
+
export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
|
|
14447
|
+
export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
|
|
14448
|
+
export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankUpstreamProxySocksInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
13846
14449
|
export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
13847
|
-
export declare const CreateWorkflowDocument = "\n mutation createWorkflow($input: CreateWorkflowInput!) {\n createWorkflow(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n
|
|
13848
|
-
export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n }\n}\n ";
|
|
13849
|
-
export declare const ToggleWorkflowDocument = "\n mutation toggleWorkflow($id: ID!, $enabled: Boolean!) {\n toggleWorkflow(id: $id, enabled: $enabled) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
13850
|
-
export declare const RenameWorkflowDocument = "\n mutation renameWorkflow($id: ID!, $name: String!) {\n renameWorkflow(id: $id, name: $name) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
13851
|
-
export declare const UpdateWorkflowDocument = "\n mutation updateWorkflow($id: ID!, $input: UpdateWorkflowInput!) {\n updateWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n
|
|
13852
|
-
export declare const RunConvertWorkflowDocument = "\n mutation runConvertWorkflow($id: ID!, $input: Blob!) {\n runConvertWorkflow(id: $id, input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n output\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n
|
|
13853
|
-
export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
13854
|
-
export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n
|
|
13855
|
-
export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n
|
|
14450
|
+
export declare const CreateWorkflowDocument = "\n mutation createWorkflow($input: CreateWorkflowInput!) {\n createWorkflow(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14451
|
+
export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\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 readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
14452
|
+
export declare const ToggleWorkflowDocument = "\n mutation toggleWorkflow($id: ID!, $enabled: Boolean!) {\n toggleWorkflow(id: $id, enabled: $enabled) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14453
|
+
export declare const RenameWorkflowDocument = "\n mutation renameWorkflow($id: ID!, $name: String!) {\n renameWorkflow(id: $id, name: $name) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14454
|
+
export declare const UpdateWorkflowDocument = "\n mutation updateWorkflow($id: ID!, $input: UpdateWorkflowInput!) {\n updateWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14455
|
+
export declare const RunConvertWorkflowDocument = "\n mutation runConvertWorkflow($id: ID!, $input: Blob!) {\n runConvertWorkflow(id: $id, input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n output\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 ";
|
|
14456
|
+
export declare const RunActiveWorkflowDocument = "\n mutation runActiveWorkflow($id: ID!, $input: RunActiveWorkflowInput!) {\n runActiveWorkflow(id: $id, input: $input) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n task {\n ...workflowTaskMeta\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\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 ";
|
|
14457
|
+
export declare const GlobalizeWorkflowDocument = "\n mutation globalizeWorkflow($id: ID!) {\n globalizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14458
|
+
export declare const LocalizeWorkflowDocument = "\n mutation localizeWorkflow($id: ID!) {\n localizeWorkflow(id: $id) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
13856
14459
|
export declare const AssistantModelsDocument = "\n query assistantModels {\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
13857
14460
|
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 ";
|
|
13858
14461
|
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 ";
|
|
@@ -13889,8 +14492,7 @@ export declare const InterceptRequestMessagesDocument = "\n query interceptRe
|
|
|
13889
14492
|
export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
13890
14493
|
export declare const InterceptOptionsDocument = "\n query interceptOptions {\n interceptOptions {\n ...interceptOptionsMeta\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
13891
14494
|
export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
|
|
13892
|
-
export declare const
|
|
13893
|
-
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
|
|
14495
|
+
export declare const PluginPackagesDocument = "\n query pluginPackages {\n pluginPackages {\n ...pluginPackageFull\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
13894
14496
|
export declare const StorePluginPackagesDocument = "\n query storePluginPackages {\n store {\n pluginPackages {\n ...storePluginPackageFull\n }\n }\n}\n \n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n license\n manifestId\n name\n repository\n version\n}\n ";
|
|
13895
14497
|
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
13896
14498
|
export declare const ProjectsDocument = "\n query projects {\n projects {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
@@ -13920,11 +14522,12 @@ export declare const WebsocketMessagesByOffsetDocument = "\n query websocketM
|
|
|
13920
14522
|
export declare const WebsocketMessageCountDocument = "\n query websocketMessageCount($streamId: ID!) {\n streamWsMessages(first: 0, streamId: $streamId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
13921
14523
|
export declare const WebsocketMessageDocument = "\n query websocketMessage($id: ID!) {\n streamWsMessage(id: $id) {\n ...streamWsMessageFull\n }\n}\n \n fragment streamWsMessageFull on StreamWsMessage {\n ...streamWsMessageMeta\n raw\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n length\n createdAt\n direction\n edited\n alteration\n format\n streamId\n}\n ";
|
|
13922
14524
|
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n nodes {\n ...tamperRuleCollectionFull\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n isEnabled\n isRegex\n name\n matchTerm\n replaceTerm\n strategy\n rank\n condition\n collection {\n id\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
13923
|
-
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
14525
|
+
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14526
|
+
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
13924
14527
|
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n id\n profile {\n ...userProfileFull\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
13925
14528
|
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n id\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
13926
|
-
export declare const WorkflowDocument = "\n query workflow($id: ID!) {\n workflow(id: $id) {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
13927
|
-
export declare const WorkflowsDocument = "\n query workflows {\n workflows {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
14529
|
+
export declare const WorkflowDocument = "\n query workflow($id: ID!) {\n workflow(id: $id) {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
14530
|
+
export declare const WorkflowsDocument = "\n query workflows {\n workflows {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
13928
14531
|
export declare const WorkflowNodeDefinitionsDocument = "\n query workflowNodeDefinitions {\n workflowNodeDefinitions {\n ...workflowNodeDefinitionFull\n }\n}\n \n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
13929
14532
|
export declare const CreatedAssistantMessageDocument = "\n subscription createdAssistantMessage {\n createdAssistantMessage {\n messageEdge {\n cursor\n node {\n ...assistantMessageFull\n }\n }\n snapshot\n }\n}\n \n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
13930
14533
|
export declare const CreatedAssistantMessageTaskDocument = "\n subscription createdAssistantMessageTask {\n createdAssistantMessageTask {\n task {\n ...assistantMessageTaskFull\n }\n }\n}\n \n fragment assistantMessageTaskFull on AssistantMessageTask {\n __typename\n id\n message {\n ...assistantMessageFull\n }\n session {\n ...assistantSessionMeta\n }\n error {\n ... on AssistantUserError {\n ...assistantUserErrorFull\n }\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\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 assistantUserErrorFull on AssistantUserError {\n ...userErrorFull\n assistantReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
@@ -13963,9 +14566,9 @@ export declare const UpdatedDeleteInterceptEntriesTaskDocument = "\n subscrip
|
|
|
13963
14566
|
export declare const FinishedDeleteInterceptEntriesTaskDocument = "\n subscription finishedDeleteInterceptEntriesTask {\n finishedDeleteInterceptEntriesTask {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n error {\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
13964
14567
|
export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
13965
14568
|
export declare const UpdatedInterceptOptionsDocument = "\n subscription updatedInterceptOptions {\n updatedInterceptOptions {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
13966
|
-
export declare const CreatedPluginPackageDocument = "\n subscription createdPluginPackage {\n createdPluginPackage {\n package {\n ...pluginPackageFull\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
|
|
14569
|
+
export declare const CreatedPluginPackageDocument = "\n subscription createdPluginPackage {\n createdPluginPackage {\n package {\n ...pluginPackageFull\n }\n }\n}\n \n fragment pluginPackageFull on PluginPackage {\n ...pluginPackageMeta\n plugins {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n}\n \n\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n version\n installedAt\n manifestId\n}\n \n\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n \n\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
13967
14570
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
13968
|
-
export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n ";
|
|
14571
|
+
export declare const UpdatedPluginDocument = "\n subscription updatedPlugin {\n updatedPlugin {\n plugin {\n ... on PluginFrontend {\n ...pluginFrontendFull\n }\n ... on PluginBackend {\n ...pluginBackendFull\n }\n ... on PluginWorkflow {\n ...pluginWorkflowFull\n }\n }\n }\n}\n \n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n \n\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n \n\n fragment pluginBackendFull on PluginBackend {\n ...pluginMeta\n runtime\n state {\n error\n running\n }\n}\n \n\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
13969
14572
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
13970
14573
|
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
13971
14574
|
export declare const UpdatedProjectDocument = "\n subscription updatedProject {\n updatedProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
@@ -13980,11 +14583,17 @@ export declare const CreatedSitemapEntryDocument = "\n subscription createdSi
|
|
|
13980
14583
|
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
13981
14584
|
export declare const CreatedWsStreamDocument = "\n subscription createdWsStream($scopeId: ID, $order: StreamOrderInput!) {\n createdStream(protocol: WS, scopeId: $scopeId) {\n snapshot\n streamEdge(order: $order) {\n ...streamEdgeMeta\n }\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n ";
|
|
13982
14585
|
export declare const CreatedStreamWsMessageDocument = "\n subscription createdStreamWsMessage($order: StreamWsMessageOrderInput!) {\n createdStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n length\n createdAt\n direction\n edited\n alteration\n format\n streamId\n}\n ";
|
|
13983
|
-
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
13984
|
-
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
13985
|
-
export declare const
|
|
14586
|
+
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
14587
|
+
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
14588
|
+
export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14589
|
+
export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14590
|
+
export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
|
|
14591
|
+
export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14592
|
+
export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTls\n}\n ";
|
|
14593
|
+
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
14594
|
+
export declare const CreatedWorkflowDocument = "\n subscription createdWorkflow {\n createdWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
13986
14595
|
export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
|
|
13987
|
-
export declare const UpdatedWorkflowDocument = "\n subscription updatedWorkflow {\n updatedWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n}\n ";
|
|
14596
|
+
export declare const UpdatedWorkflowDocument = "\n subscription updatedWorkflow {\n updatedWorkflow {\n workflowEdge {\n cursor\n node {\n ...workflowFull\n }\n }\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
13988
14597
|
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
13989
14598
|
export declare function getSdk<C>(requester: Requester<C>): {
|
|
13990
14599
|
sendAssistantMessage(variables: SendAssistantMessageMutationVariables, options?: C): Promise<SendAssistantMessageMutation>;
|
|
@@ -14033,11 +14642,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14033
14642
|
setInterceptOptions(variables: SetInterceptOptionsMutationVariables, options?: C): Promise<SetInterceptOptionsMutation>;
|
|
14034
14643
|
pauseIntercept(variables?: PauseInterceptMutationVariables, options?: C): Promise<PauseInterceptMutation>;
|
|
14035
14644
|
resumeIntercept(variables?: ResumeInterceptMutationVariables, options?: C): Promise<ResumeInterceptMutation>;
|
|
14036
|
-
createUpstreamProxy(variables: CreateUpstreamProxyMutationVariables, options?: C): Promise<CreateUpstreamProxyMutation>;
|
|
14037
|
-
updateUpstreamProxy(variables: UpdateUpstreamProxyMutationVariables, options?: C): Promise<UpdateUpstreamProxyMutation>;
|
|
14038
|
-
deleteUpstreamProxy(variables: DeleteUpstreamProxyMutationVariables, options?: C): Promise<DeleteUpstreamProxyMutation>;
|
|
14039
|
-
testUpstreamProxy(variables: TestUpstreamProxyMutationVariables, options?: C): Promise<TestUpstreamProxyMutation>;
|
|
14040
|
-
rankUpstreamProxy(variables: RankUpstreamProxyMutationVariables, options?: C): Promise<RankUpstreamProxyMutation>;
|
|
14041
14645
|
installPluginPackage(variables: InstallPluginPackageMutationVariables, options?: C): Promise<InstallPluginPackageMutation>;
|
|
14042
14646
|
uninstallPluginPackage(variables: UninstallPluginPackageMutationVariables, options?: C): Promise<UninstallPluginPackageMutation>;
|
|
14043
14647
|
togglePlugin(variables: TogglePluginMutationVariables, options?: C): Promise<TogglePluginMutation>;
|
|
@@ -14074,6 +14678,16 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14074
14678
|
rankTamperRule(variables: RankTamperRuleMutationVariables, options?: C): Promise<RankTamperRuleMutation>;
|
|
14075
14679
|
moveTamperRule(variables: MoveTamperRuleMutationVariables, options?: C): Promise<MoveTamperRuleMutation>;
|
|
14076
14680
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
14681
|
+
createUpstreamProxyHttp(variables: CreateUpstreamProxyHttpMutationVariables, options?: C): Promise<CreateUpstreamProxyHttpMutation>;
|
|
14682
|
+
updateUpstreamProxyHttp(variables: UpdateUpstreamProxyHttpMutationVariables, options?: C): Promise<UpdateUpstreamProxyHttpMutation>;
|
|
14683
|
+
deleteUpstreamProxyHttp(variables: DeleteUpstreamProxyHttpMutationVariables, options?: C): Promise<DeleteUpstreamProxyHttpMutation>;
|
|
14684
|
+
testUpstreamProxyHttp(variables: TestUpstreamProxyHttpMutationVariables, options?: C): Promise<TestUpstreamProxyHttpMutation>;
|
|
14685
|
+
rankUpstreamProxyHttp(variables: RankUpstreamProxyHttpMutationVariables, options?: C): Promise<RankUpstreamProxyHttpMutation>;
|
|
14686
|
+
createUpstreamProxySocks(variables: CreateUpstreamProxySocksMutationVariables, options?: C): Promise<CreateUpstreamProxySocksMutation>;
|
|
14687
|
+
updateUpstreamProxySocks(variables: UpdateUpstreamProxySocksMutationVariables, options?: C): Promise<UpdateUpstreamProxySocksMutation>;
|
|
14688
|
+
deleteUpstreamProxySocks(variables: DeleteUpstreamProxySocksMutationVariables, options?: C): Promise<DeleteUpstreamProxySocksMutation>;
|
|
14689
|
+
testUpstreamProxySocks(variables: TestUpstreamProxySocksMutationVariables, options?: C): Promise<TestUpstreamProxySocksMutation>;
|
|
14690
|
+
rankUpstreamProxySocks(variables: RankUpstreamProxySocksMutationVariables, options?: C): Promise<RankUpstreamProxySocksMutation>;
|
|
14077
14691
|
updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
|
|
14078
14692
|
createWorkflow(variables: CreateWorkflowMutationVariables, options?: C): Promise<CreateWorkflowMutation>;
|
|
14079
14693
|
deleteWorkflow(variables: DeleteWorkflowMutationVariables, options?: C): Promise<DeleteWorkflowMutation>;
|
|
@@ -14120,7 +14734,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14120
14734
|
interceptResponseMessages(variables: InterceptResponseMessagesQueryVariables, options?: C): Promise<InterceptResponseMessagesQuery>;
|
|
14121
14735
|
interceptOptions(variables?: InterceptOptionsQueryVariables, options?: C): Promise<InterceptOptionsQuery>;
|
|
14122
14736
|
interceptStatus(variables?: InterceptStatusQueryVariables, options?: C): Promise<InterceptStatusQuery>;
|
|
14123
|
-
upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
|
|
14124
14737
|
pluginPackages(variables?: PluginPackagesQueryVariables, options?: C): Promise<PluginPackagesQuery>;
|
|
14125
14738
|
storePluginPackages(variables?: StorePluginPackagesQueryVariables, options?: C): Promise<StorePluginPackagesQuery>;
|
|
14126
14739
|
currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
|
|
@@ -14152,6 +14765,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14152
14765
|
websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
|
|
14153
14766
|
tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
|
|
14154
14767
|
getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
|
|
14768
|
+
upstreamProxies(variables?: UpstreamProxiesQueryVariables, options?: C): Promise<UpstreamProxiesQuery>;
|
|
14155
14769
|
userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
|
|
14156
14770
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|
|
14157
14771
|
workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
|
|
@@ -14213,6 +14827,12 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
14213
14827
|
createdStreamWsMessage(variables: CreatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedStreamWsMessageSubscription>;
|
|
14214
14828
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|
|
14215
14829
|
finishedTask(variables?: FinishedTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedTaskSubscription>;
|
|
14830
|
+
createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
|
|
14831
|
+
updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
|
|
14832
|
+
deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
|
|
14833
|
+
createdUpstreamProxySocks(variables?: CreatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxySocksSubscription>;
|
|
14834
|
+
updatedUpstreamProxySocks(variables?: UpdatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxySocksSubscription>;
|
|
14835
|
+
deletedUpstreamProxySocks(variables?: DeletedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxySocksSubscription>;
|
|
14216
14836
|
createdWorkflow(variables?: CreatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<CreatedWorkflowSubscription>;
|
|
14217
14837
|
deletedWorkflow(variables?: DeletedWorkflowSubscriptionVariables, options?: C): AsyncIterable<DeletedWorkflowSubscription>;
|
|
14218
14838
|
updatedWorkflow(variables?: UpdatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<UpdatedWorkflowSubscription>;
|