@caido/sdk-frontend 0.54.2-beta.7 → 0.54.2-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -22531,15 +22531,33 @@ export type UpstreamProxySocksFullFragment = {
|
|
|
22531
22531
|
SNI?: string | undefined | null;
|
|
22532
22532
|
};
|
|
22533
22533
|
};
|
|
22534
|
+
export type UpstreamPluginFullFragment = {
|
|
22535
|
+
__typename: "UpstreamPlugin";
|
|
22536
|
+
id: string;
|
|
22537
|
+
allowlist: Array<string>;
|
|
22538
|
+
denylist: Array<string>;
|
|
22539
|
+
enabled: boolean;
|
|
22540
|
+
rank: string;
|
|
22541
|
+
plugin: {
|
|
22542
|
+
__typename: "PluginBackend";
|
|
22543
|
+
id: string;
|
|
22544
|
+
name?: string | undefined | null;
|
|
22545
|
+
enabled: boolean;
|
|
22546
|
+
manifestId: string;
|
|
22547
|
+
package: {
|
|
22548
|
+
id: string;
|
|
22549
|
+
};
|
|
22550
|
+
};
|
|
22551
|
+
};
|
|
22534
22552
|
export type UpstreamProxyAuthBasicFullFragment = {
|
|
22535
22553
|
__typename: "UpstreamProxyAuthBasic";
|
|
22536
22554
|
username: string;
|
|
22537
22555
|
password: string;
|
|
22538
22556
|
};
|
|
22539
|
-
export type
|
|
22557
|
+
export type UpstreamsQueryVariables = Exact<{
|
|
22540
22558
|
[key: string]: never;
|
|
22541
22559
|
}>;
|
|
22542
|
-
export type
|
|
22560
|
+
export type UpstreamsQuery = {
|
|
22543
22561
|
upstreamProxiesHttp: Array<{
|
|
22544
22562
|
__typename: "UpstreamProxyHttp";
|
|
22545
22563
|
id: string;
|
|
@@ -22581,6 +22599,24 @@ export type UpstreamProxiesQuery = {
|
|
|
22581
22599
|
SNI?: string | undefined | null;
|
|
22582
22600
|
};
|
|
22583
22601
|
}>;
|
|
22602
|
+
upstreamPlugins: Array<{
|
|
22603
|
+
__typename: "UpstreamPlugin";
|
|
22604
|
+
id: string;
|
|
22605
|
+
allowlist: Array<string>;
|
|
22606
|
+
denylist: Array<string>;
|
|
22607
|
+
enabled: boolean;
|
|
22608
|
+
rank: string;
|
|
22609
|
+
plugin: {
|
|
22610
|
+
__typename: "PluginBackend";
|
|
22611
|
+
id: string;
|
|
22612
|
+
name?: string | undefined | null;
|
|
22613
|
+
enabled: boolean;
|
|
22614
|
+
manifestId: string;
|
|
22615
|
+
package: {
|
|
22616
|
+
id: string;
|
|
22617
|
+
};
|
|
22618
|
+
};
|
|
22619
|
+
}>;
|
|
22584
22620
|
};
|
|
22585
22621
|
export type CreateUpstreamProxyHttpMutationVariables = Exact<{
|
|
22586
22622
|
input: CreateUpstreamProxyHttpInput;
|
|
@@ -22681,6 +22717,68 @@ export type RankUpstreamProxyHttpMutation = {
|
|
|
22681
22717
|
} | undefined | null;
|
|
22682
22718
|
};
|
|
22683
22719
|
};
|
|
22720
|
+
export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22721
|
+
[key: string]: never;
|
|
22722
|
+
}>;
|
|
22723
|
+
export type CreatedUpstreamProxyHttpSubscription = {
|
|
22724
|
+
createdUpstreamProxyHttp: {
|
|
22725
|
+
proxy: {
|
|
22726
|
+
__typename: "UpstreamProxyHttp";
|
|
22727
|
+
id: string;
|
|
22728
|
+
allowlist: Array<string>;
|
|
22729
|
+
denylist: Array<string>;
|
|
22730
|
+
enabled: boolean;
|
|
22731
|
+
rank: string;
|
|
22732
|
+
auth?: {
|
|
22733
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22734
|
+
username: string;
|
|
22735
|
+
password: string;
|
|
22736
|
+
} | undefined | null;
|
|
22737
|
+
connection: {
|
|
22738
|
+
__typename: "ConnectionInfo";
|
|
22739
|
+
host: string;
|
|
22740
|
+
port: number;
|
|
22741
|
+
isTLS: boolean;
|
|
22742
|
+
SNI?: string | undefined | null;
|
|
22743
|
+
};
|
|
22744
|
+
};
|
|
22745
|
+
};
|
|
22746
|
+
};
|
|
22747
|
+
export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22748
|
+
[key: string]: never;
|
|
22749
|
+
}>;
|
|
22750
|
+
export type UpdatedUpstreamProxyHttpSubscription = {
|
|
22751
|
+
updatedUpstreamProxyHttp: {
|
|
22752
|
+
proxy: {
|
|
22753
|
+
__typename: "UpstreamProxyHttp";
|
|
22754
|
+
id: string;
|
|
22755
|
+
allowlist: Array<string>;
|
|
22756
|
+
denylist: Array<string>;
|
|
22757
|
+
enabled: boolean;
|
|
22758
|
+
rank: string;
|
|
22759
|
+
auth?: {
|
|
22760
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22761
|
+
username: string;
|
|
22762
|
+
password: string;
|
|
22763
|
+
} | undefined | null;
|
|
22764
|
+
connection: {
|
|
22765
|
+
__typename: "ConnectionInfo";
|
|
22766
|
+
host: string;
|
|
22767
|
+
port: number;
|
|
22768
|
+
isTLS: boolean;
|
|
22769
|
+
SNI?: string | undefined | null;
|
|
22770
|
+
};
|
|
22771
|
+
};
|
|
22772
|
+
};
|
|
22773
|
+
};
|
|
22774
|
+
export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22775
|
+
[key: string]: never;
|
|
22776
|
+
}>;
|
|
22777
|
+
export type DeletedUpstreamProxyHttpSubscription = {
|
|
22778
|
+
deletedUpstreamProxyHttp: {
|
|
22779
|
+
deletedProxyId: string;
|
|
22780
|
+
};
|
|
22781
|
+
};
|
|
22684
22782
|
export type CreateUpstreamProxySocksMutationVariables = Exact<{
|
|
22685
22783
|
input: CreateUpstreamProxySocksInput;
|
|
22686
22784
|
}>;
|
|
@@ -22783,17 +22881,18 @@ export type RankUpstreamProxySocksMutation = {
|
|
|
22783
22881
|
} | undefined | null;
|
|
22784
22882
|
};
|
|
22785
22883
|
};
|
|
22786
|
-
export type
|
|
22884
|
+
export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22787
22885
|
[key: string]: never;
|
|
22788
22886
|
}>;
|
|
22789
|
-
export type
|
|
22790
|
-
|
|
22887
|
+
export type CreatedUpstreamProxySocksSubscription = {
|
|
22888
|
+
createdUpstreamProxySocks: {
|
|
22791
22889
|
proxy: {
|
|
22792
|
-
__typename: "
|
|
22890
|
+
__typename: "UpstreamProxySocks";
|
|
22793
22891
|
id: string;
|
|
22794
22892
|
allowlist: Array<string>;
|
|
22795
22893
|
denylist: Array<string>;
|
|
22796
22894
|
enabled: boolean;
|
|
22895
|
+
includeDns: boolean;
|
|
22797
22896
|
rank: string;
|
|
22798
22897
|
auth?: {
|
|
22799
22898
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22810,17 +22909,18 @@ export type CreatedUpstreamProxyHttpSubscription = {
|
|
|
22810
22909
|
};
|
|
22811
22910
|
};
|
|
22812
22911
|
};
|
|
22813
|
-
export type
|
|
22912
|
+
export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22814
22913
|
[key: string]: never;
|
|
22815
22914
|
}>;
|
|
22816
|
-
export type
|
|
22817
|
-
|
|
22915
|
+
export type UpdatedUpstreamProxySocksSubscription = {
|
|
22916
|
+
updatedUpstreamProxySocks: {
|
|
22818
22917
|
proxy: {
|
|
22819
|
-
__typename: "
|
|
22918
|
+
__typename: "UpstreamProxySocks";
|
|
22820
22919
|
id: string;
|
|
22821
22920
|
allowlist: Array<string>;
|
|
22822
22921
|
denylist: Array<string>;
|
|
22823
22922
|
enabled: boolean;
|
|
22923
|
+
includeDns: boolean;
|
|
22824
22924
|
rank: string;
|
|
22825
22925
|
auth?: {
|
|
22826
22926
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22837,76 +22937,155 @@ export type UpdatedUpstreamProxyHttpSubscription = {
|
|
|
22837
22937
|
};
|
|
22838
22938
|
};
|
|
22839
22939
|
};
|
|
22840
|
-
export type
|
|
22940
|
+
export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22841
22941
|
[key: string]: never;
|
|
22842
22942
|
}>;
|
|
22843
|
-
export type
|
|
22844
|
-
|
|
22943
|
+
export type DeletedUpstreamProxySocksSubscription = {
|
|
22944
|
+
deletedUpstreamProxySocks: {
|
|
22845
22945
|
deletedProxyId: string;
|
|
22846
22946
|
};
|
|
22847
22947
|
};
|
|
22848
|
-
export type
|
|
22948
|
+
export type CreateUpstreamPluginMutationVariables = Exact<{
|
|
22949
|
+
input: CreateUpstreamPluginInput;
|
|
22950
|
+
}>;
|
|
22951
|
+
export type CreateUpstreamPluginMutation = {
|
|
22952
|
+
createUpstreamPlugin: {
|
|
22953
|
+
upstream?: {
|
|
22954
|
+
__typename: "UpstreamPlugin";
|
|
22955
|
+
id: string;
|
|
22956
|
+
allowlist: Array<string>;
|
|
22957
|
+
denylist: Array<string>;
|
|
22958
|
+
enabled: boolean;
|
|
22959
|
+
rank: string;
|
|
22960
|
+
plugin: {
|
|
22961
|
+
__typename: "PluginBackend";
|
|
22962
|
+
id: string;
|
|
22963
|
+
name?: string | undefined | null;
|
|
22964
|
+
enabled: boolean;
|
|
22965
|
+
manifestId: string;
|
|
22966
|
+
package: {
|
|
22967
|
+
id: string;
|
|
22968
|
+
};
|
|
22969
|
+
};
|
|
22970
|
+
} | undefined | null;
|
|
22971
|
+
};
|
|
22972
|
+
};
|
|
22973
|
+
export type UpdateUpstreamPluginMutationVariables = Exact<{
|
|
22974
|
+
id: Scalars["ID"]["input"];
|
|
22975
|
+
input: UpdateUpstreamPluginInput;
|
|
22976
|
+
}>;
|
|
22977
|
+
export type UpdateUpstreamPluginMutation = {
|
|
22978
|
+
updateUpstreamPlugin: {
|
|
22979
|
+
upstream?: {
|
|
22980
|
+
__typename: "UpstreamPlugin";
|
|
22981
|
+
id: string;
|
|
22982
|
+
allowlist: Array<string>;
|
|
22983
|
+
denylist: Array<string>;
|
|
22984
|
+
enabled: boolean;
|
|
22985
|
+
rank: string;
|
|
22986
|
+
plugin: {
|
|
22987
|
+
__typename: "PluginBackend";
|
|
22988
|
+
id: string;
|
|
22989
|
+
name?: string | undefined | null;
|
|
22990
|
+
enabled: boolean;
|
|
22991
|
+
manifestId: string;
|
|
22992
|
+
package: {
|
|
22993
|
+
id: string;
|
|
22994
|
+
};
|
|
22995
|
+
};
|
|
22996
|
+
} | undefined | null;
|
|
22997
|
+
};
|
|
22998
|
+
};
|
|
22999
|
+
export type DeleteUpstreamPluginMutationVariables = Exact<{
|
|
23000
|
+
id: Scalars["ID"]["input"];
|
|
23001
|
+
}>;
|
|
23002
|
+
export type DeleteUpstreamPluginMutation = {
|
|
23003
|
+
deleteUpstreamPlugin: {
|
|
23004
|
+
deletedId?: string | undefined | null;
|
|
23005
|
+
};
|
|
23006
|
+
};
|
|
23007
|
+
export type RankUpstreamPluginMutationVariables = Exact<{
|
|
23008
|
+
id: Scalars["ID"]["input"];
|
|
23009
|
+
input: RankInput;
|
|
23010
|
+
}>;
|
|
23011
|
+
export type RankUpstreamPluginMutation = {
|
|
23012
|
+
rankUpstreamPlugin: {
|
|
23013
|
+
upstream?: {
|
|
23014
|
+
__typename: "UpstreamPlugin";
|
|
23015
|
+
id: string;
|
|
23016
|
+
allowlist: Array<string>;
|
|
23017
|
+
denylist: Array<string>;
|
|
23018
|
+
enabled: boolean;
|
|
23019
|
+
rank: string;
|
|
23020
|
+
plugin: {
|
|
23021
|
+
__typename: "PluginBackend";
|
|
23022
|
+
id: string;
|
|
23023
|
+
name?: string | undefined | null;
|
|
23024
|
+
enabled: boolean;
|
|
23025
|
+
manifestId: string;
|
|
23026
|
+
package: {
|
|
23027
|
+
id: string;
|
|
23028
|
+
};
|
|
23029
|
+
};
|
|
23030
|
+
} | undefined | null;
|
|
23031
|
+
};
|
|
23032
|
+
};
|
|
23033
|
+
export type CreatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22849
23034
|
[key: string]: never;
|
|
22850
23035
|
}>;
|
|
22851
|
-
export type
|
|
22852
|
-
|
|
22853
|
-
|
|
22854
|
-
__typename: "
|
|
23036
|
+
export type CreatedUpstreamPluginSubscription = {
|
|
23037
|
+
createdUpstreamPlugin: {
|
|
23038
|
+
upstream: {
|
|
23039
|
+
__typename: "UpstreamPlugin";
|
|
22855
23040
|
id: string;
|
|
22856
23041
|
allowlist: Array<string>;
|
|
22857
23042
|
denylist: Array<string>;
|
|
22858
23043
|
enabled: boolean;
|
|
22859
|
-
includeDns: boolean;
|
|
22860
23044
|
rank: string;
|
|
22861
|
-
|
|
22862
|
-
__typename: "
|
|
22863
|
-
|
|
22864
|
-
|
|
22865
|
-
|
|
22866
|
-
|
|
22867
|
-
|
|
22868
|
-
|
|
22869
|
-
|
|
22870
|
-
isTLS: boolean;
|
|
22871
|
-
SNI?: string | undefined | null;
|
|
23045
|
+
plugin: {
|
|
23046
|
+
__typename: "PluginBackend";
|
|
23047
|
+
id: string;
|
|
23048
|
+
name?: string | undefined | null;
|
|
23049
|
+
enabled: boolean;
|
|
23050
|
+
manifestId: string;
|
|
23051
|
+
package: {
|
|
23052
|
+
id: string;
|
|
23053
|
+
};
|
|
22872
23054
|
};
|
|
22873
23055
|
};
|
|
22874
23056
|
};
|
|
22875
23057
|
};
|
|
22876
|
-
export type
|
|
23058
|
+
export type UpdatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22877
23059
|
[key: string]: never;
|
|
22878
23060
|
}>;
|
|
22879
|
-
export type
|
|
22880
|
-
|
|
22881
|
-
|
|
22882
|
-
__typename: "
|
|
23061
|
+
export type UpdatedUpstreamPluginSubscription = {
|
|
23062
|
+
updatedUpstreamPlugin: {
|
|
23063
|
+
upstream: {
|
|
23064
|
+
__typename: "UpstreamPlugin";
|
|
22883
23065
|
id: string;
|
|
22884
23066
|
allowlist: Array<string>;
|
|
22885
23067
|
denylist: Array<string>;
|
|
22886
23068
|
enabled: boolean;
|
|
22887
|
-
includeDns: boolean;
|
|
22888
23069
|
rank: string;
|
|
22889
|
-
|
|
22890
|
-
__typename: "
|
|
22891
|
-
|
|
22892
|
-
|
|
22893
|
-
|
|
22894
|
-
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
isTLS: boolean;
|
|
22899
|
-
SNI?: string | undefined | null;
|
|
23070
|
+
plugin: {
|
|
23071
|
+
__typename: "PluginBackend";
|
|
23072
|
+
id: string;
|
|
23073
|
+
name?: string | undefined | null;
|
|
23074
|
+
enabled: boolean;
|
|
23075
|
+
manifestId: string;
|
|
23076
|
+
package: {
|
|
23077
|
+
id: string;
|
|
23078
|
+
};
|
|
22900
23079
|
};
|
|
22901
23080
|
};
|
|
22902
23081
|
};
|
|
22903
23082
|
};
|
|
22904
|
-
export type
|
|
23083
|
+
export type DeletedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22905
23084
|
[key: string]: never;
|
|
22906
23085
|
}>;
|
|
22907
|
-
export type
|
|
22908
|
-
|
|
22909
|
-
|
|
23086
|
+
export type DeletedUpstreamPluginSubscription = {
|
|
23087
|
+
deletedUpstreamPlugin: {
|
|
23088
|
+
deletedUpstreamId: string;
|
|
22910
23089
|
};
|
|
22911
23090
|
};
|
|
22912
23091
|
export type UserProfileFullFragment = {
|
|
@@ -23704,6 +23883,7 @@ export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment stream
|
|
|
23704
23883
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
23705
23884
|
export declare const UpstreamProxyHttpFullFragmentDoc = "\n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n ";
|
|
23706
23885
|
export declare const UpstreamProxySocksFullFragmentDoc = "\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
23886
|
+
export declare const UpstreamPluginFullFragmentDoc = "\n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n ";
|
|
23707
23887
|
export declare const UserProfileFullFragmentDoc = "\n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
23708
23888
|
export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
23709
23889
|
export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
|
|
@@ -23976,23 +24156,30 @@ export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n
|
|
|
23976
24156
|
export declare const CancelTaskDocument = "\n mutation cancelTask($id: ID!) {\n cancelTask(id: $id) {\n cancelledId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
23977
24157
|
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
23978
24158
|
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
23979
|
-
export declare const
|
|
24159
|
+
export declare const UpstreamsDocument = "\n query upstreams {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n upstreamPlugins {\n ...upstreamPluginFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
23980
24160
|
export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23981
24161
|
export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23982
24162
|
export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
|
|
23983
24163
|
export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
|
|
23984
24164
|
export declare const RankUpstreamProxyHttpDocument = "\n mutation rankUpstreamProxyHttp($id: ID!, $input: RankInput!) {\n rankUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
24165
|
+
export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
24166
|
+
export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
24167
|
+
export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
|
|
23985
24168
|
export declare const CreateUpstreamProxySocksDocument = "\n mutation createUpstreamProxySocks($input: CreateUpstreamProxySocksInput!) {\n createUpstreamProxySocks(input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23986
24169
|
export declare const UpdateUpstreamProxySocksDocument = "\n mutation updateUpstreamProxySocks($id: ID!, $input: UpdateUpstreamProxySocksInput!) {\n updateUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23987
24170
|
export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
|
|
23988
24171
|
export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
|
|
23989
24172
|
export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23990
|
-
export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23991
|
-
export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23992
|
-
export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
|
|
23993
24173
|
export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23994
24174
|
export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23995
24175
|
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
24176
|
+
export declare const CreateUpstreamPluginDocument = "\n mutation createUpstreamPlugin($input: CreateUpstreamPluginInput!) {\n createUpstreamPlugin(input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24177
|
+
export declare const UpdateUpstreamPluginDocument = "\n mutation updateUpstreamPlugin($id: ID!, $input: UpdateUpstreamPluginInput!) {\n updateUpstreamPlugin(id: $id, input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24178
|
+
export declare const DeleteUpstreamPluginDocument = "\n mutation deleteUpstreamPlugin($id: ID!) {\n deleteUpstreamPlugin(id: $id) {\n deletedId\n }\n}\n ";
|
|
24179
|
+
export declare const RankUpstreamPluginDocument = "\n mutation rankUpstreamPlugin($id: ID!, $input: RankInput!) {\n rankUpstreamPlugin(id: $id, input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24180
|
+
export declare const CreatedUpstreamPluginDocument = "\n subscription createdUpstreamPlugin {\n createdUpstreamPlugin {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24181
|
+
export declare const UpdatedUpstreamPluginDocument = "\n subscription updatedUpstreamPlugin {\n updatedUpstreamPlugin {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24182
|
+
export declare const DeletedUpstreamPluginDocument = "\n subscription deletedUpstreamPlugin {\n deletedUpstreamPlugin {\n deletedUpstreamId\n }\n}\n ";
|
|
23996
24183
|
export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
23997
24184
|
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n __typename\n ... on CloudUser {\n id\n profile {\n ...userProfileFull\n }\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
23998
24185
|
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n __typename\n ... on CloudUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n ... on GuestUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
@@ -24284,23 +24471,30 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24284
24471
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
24285
24472
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|
|
24286
24473
|
finishedTask(variables?: FinishedTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedTaskSubscription>;
|
|
24287
|
-
|
|
24474
|
+
upstreams(variables?: UpstreamsQueryVariables, options?: C): Promise<UpstreamsQuery>;
|
|
24288
24475
|
createUpstreamProxyHttp(variables: CreateUpstreamProxyHttpMutationVariables, options?: C): Promise<CreateUpstreamProxyHttpMutation>;
|
|
24289
24476
|
updateUpstreamProxyHttp(variables: UpdateUpstreamProxyHttpMutationVariables, options?: C): Promise<UpdateUpstreamProxyHttpMutation>;
|
|
24290
24477
|
deleteUpstreamProxyHttp(variables: DeleteUpstreamProxyHttpMutationVariables, options?: C): Promise<DeleteUpstreamProxyHttpMutation>;
|
|
24291
24478
|
testUpstreamProxyHttp(variables: TestUpstreamProxyHttpMutationVariables, options?: C): Promise<TestUpstreamProxyHttpMutation>;
|
|
24292
24479
|
rankUpstreamProxyHttp(variables: RankUpstreamProxyHttpMutationVariables, options?: C): Promise<RankUpstreamProxyHttpMutation>;
|
|
24480
|
+
createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
|
|
24481
|
+
updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
|
|
24482
|
+
deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
|
|
24293
24483
|
createUpstreamProxySocks(variables: CreateUpstreamProxySocksMutationVariables, options?: C): Promise<CreateUpstreamProxySocksMutation>;
|
|
24294
24484
|
updateUpstreamProxySocks(variables: UpdateUpstreamProxySocksMutationVariables, options?: C): Promise<UpdateUpstreamProxySocksMutation>;
|
|
24295
24485
|
deleteUpstreamProxySocks(variables: DeleteUpstreamProxySocksMutationVariables, options?: C): Promise<DeleteUpstreamProxySocksMutation>;
|
|
24296
24486
|
testUpstreamProxySocks(variables: TestUpstreamProxySocksMutationVariables, options?: C): Promise<TestUpstreamProxySocksMutation>;
|
|
24297
24487
|
rankUpstreamProxySocks(variables: RankUpstreamProxySocksMutationVariables, options?: C): Promise<RankUpstreamProxySocksMutation>;
|
|
24298
|
-
createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
|
|
24299
|
-
updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
|
|
24300
|
-
deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
|
|
24301
24488
|
createdUpstreamProxySocks(variables?: CreatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxySocksSubscription>;
|
|
24302
24489
|
updatedUpstreamProxySocks(variables?: UpdatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxySocksSubscription>;
|
|
24303
24490
|
deletedUpstreamProxySocks(variables?: DeletedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxySocksSubscription>;
|
|
24491
|
+
createUpstreamPlugin(variables: CreateUpstreamPluginMutationVariables, options?: C): Promise<CreateUpstreamPluginMutation>;
|
|
24492
|
+
updateUpstreamPlugin(variables: UpdateUpstreamPluginMutationVariables, options?: C): Promise<UpdateUpstreamPluginMutation>;
|
|
24493
|
+
deleteUpstreamPlugin(variables: DeleteUpstreamPluginMutationVariables, options?: C): Promise<DeleteUpstreamPluginMutation>;
|
|
24494
|
+
rankUpstreamPlugin(variables: RankUpstreamPluginMutationVariables, options?: C): Promise<RankUpstreamPluginMutation>;
|
|
24495
|
+
createdUpstreamPlugin(variables?: CreatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamPluginSubscription>;
|
|
24496
|
+
updatedUpstreamPlugin(variables?: UpdatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamPluginSubscription>;
|
|
24497
|
+
deletedUpstreamPlugin(variables?: DeletedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamPluginSubscription>;
|
|
24304
24498
|
updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
|
|
24305
24499
|
userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
|
|
24306
24500
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|