@caido/sdk-frontend 0.54.2-beta.7 → 0.54.2-beta.9
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
|
@@ -4822,6 +4822,14 @@ export type Workspace = {
|
|
|
4822
4822
|
id: Scalars["ID"]["output"];
|
|
4823
4823
|
name: Scalars["String"]["output"];
|
|
4824
4824
|
};
|
|
4825
|
+
export type TrackMutationVariables = Exact<{
|
|
4826
|
+
input: TrackInput;
|
|
4827
|
+
}>;
|
|
4828
|
+
export type TrackMutation = {
|
|
4829
|
+
track: {
|
|
4830
|
+
success: boolean;
|
|
4831
|
+
};
|
|
4832
|
+
};
|
|
4825
4833
|
export type AssistantMessageFullFragment = {
|
|
4826
4834
|
__typename: "AssistantMessage";
|
|
4827
4835
|
id: string;
|
|
@@ -22531,15 +22539,33 @@ export type UpstreamProxySocksFullFragment = {
|
|
|
22531
22539
|
SNI?: string | undefined | null;
|
|
22532
22540
|
};
|
|
22533
22541
|
};
|
|
22542
|
+
export type UpstreamPluginFullFragment = {
|
|
22543
|
+
__typename: "UpstreamPlugin";
|
|
22544
|
+
id: string;
|
|
22545
|
+
allowlist: Array<string>;
|
|
22546
|
+
denylist: Array<string>;
|
|
22547
|
+
enabled: boolean;
|
|
22548
|
+
rank: string;
|
|
22549
|
+
plugin: {
|
|
22550
|
+
__typename: "PluginBackend";
|
|
22551
|
+
id: string;
|
|
22552
|
+
name?: string | undefined | null;
|
|
22553
|
+
enabled: boolean;
|
|
22554
|
+
manifestId: string;
|
|
22555
|
+
package: {
|
|
22556
|
+
id: string;
|
|
22557
|
+
};
|
|
22558
|
+
};
|
|
22559
|
+
};
|
|
22534
22560
|
export type UpstreamProxyAuthBasicFullFragment = {
|
|
22535
22561
|
__typename: "UpstreamProxyAuthBasic";
|
|
22536
22562
|
username: string;
|
|
22537
22563
|
password: string;
|
|
22538
22564
|
};
|
|
22539
|
-
export type
|
|
22565
|
+
export type UpstreamsQueryVariables = Exact<{
|
|
22540
22566
|
[key: string]: never;
|
|
22541
22567
|
}>;
|
|
22542
|
-
export type
|
|
22568
|
+
export type UpstreamsQuery = {
|
|
22543
22569
|
upstreamProxiesHttp: Array<{
|
|
22544
22570
|
__typename: "UpstreamProxyHttp";
|
|
22545
22571
|
id: string;
|
|
@@ -22581,6 +22607,24 @@ export type UpstreamProxiesQuery = {
|
|
|
22581
22607
|
SNI?: string | undefined | null;
|
|
22582
22608
|
};
|
|
22583
22609
|
}>;
|
|
22610
|
+
upstreamPlugins: Array<{
|
|
22611
|
+
__typename: "UpstreamPlugin";
|
|
22612
|
+
id: string;
|
|
22613
|
+
allowlist: Array<string>;
|
|
22614
|
+
denylist: Array<string>;
|
|
22615
|
+
enabled: boolean;
|
|
22616
|
+
rank: string;
|
|
22617
|
+
plugin: {
|
|
22618
|
+
__typename: "PluginBackend";
|
|
22619
|
+
id: string;
|
|
22620
|
+
name?: string | undefined | null;
|
|
22621
|
+
enabled: boolean;
|
|
22622
|
+
manifestId: string;
|
|
22623
|
+
package: {
|
|
22624
|
+
id: string;
|
|
22625
|
+
};
|
|
22626
|
+
};
|
|
22627
|
+
}>;
|
|
22584
22628
|
};
|
|
22585
22629
|
export type CreateUpstreamProxyHttpMutationVariables = Exact<{
|
|
22586
22630
|
input: CreateUpstreamProxyHttpInput;
|
|
@@ -22681,6 +22725,68 @@ export type RankUpstreamProxyHttpMutation = {
|
|
|
22681
22725
|
} | undefined | null;
|
|
22682
22726
|
};
|
|
22683
22727
|
};
|
|
22728
|
+
export type CreatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22729
|
+
[key: string]: never;
|
|
22730
|
+
}>;
|
|
22731
|
+
export type CreatedUpstreamProxyHttpSubscription = {
|
|
22732
|
+
createdUpstreamProxyHttp: {
|
|
22733
|
+
proxy: {
|
|
22734
|
+
__typename: "UpstreamProxyHttp";
|
|
22735
|
+
id: string;
|
|
22736
|
+
allowlist: Array<string>;
|
|
22737
|
+
denylist: Array<string>;
|
|
22738
|
+
enabled: boolean;
|
|
22739
|
+
rank: string;
|
|
22740
|
+
auth?: {
|
|
22741
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22742
|
+
username: string;
|
|
22743
|
+
password: string;
|
|
22744
|
+
} | undefined | null;
|
|
22745
|
+
connection: {
|
|
22746
|
+
__typename: "ConnectionInfo";
|
|
22747
|
+
host: string;
|
|
22748
|
+
port: number;
|
|
22749
|
+
isTLS: boolean;
|
|
22750
|
+
SNI?: string | undefined | null;
|
|
22751
|
+
};
|
|
22752
|
+
};
|
|
22753
|
+
};
|
|
22754
|
+
};
|
|
22755
|
+
export type UpdatedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22756
|
+
[key: string]: never;
|
|
22757
|
+
}>;
|
|
22758
|
+
export type UpdatedUpstreamProxyHttpSubscription = {
|
|
22759
|
+
updatedUpstreamProxyHttp: {
|
|
22760
|
+
proxy: {
|
|
22761
|
+
__typename: "UpstreamProxyHttp";
|
|
22762
|
+
id: string;
|
|
22763
|
+
allowlist: Array<string>;
|
|
22764
|
+
denylist: Array<string>;
|
|
22765
|
+
enabled: boolean;
|
|
22766
|
+
rank: string;
|
|
22767
|
+
auth?: {
|
|
22768
|
+
__typename: "UpstreamProxyAuthBasic";
|
|
22769
|
+
username: string;
|
|
22770
|
+
password: string;
|
|
22771
|
+
} | undefined | null;
|
|
22772
|
+
connection: {
|
|
22773
|
+
__typename: "ConnectionInfo";
|
|
22774
|
+
host: string;
|
|
22775
|
+
port: number;
|
|
22776
|
+
isTLS: boolean;
|
|
22777
|
+
SNI?: string | undefined | null;
|
|
22778
|
+
};
|
|
22779
|
+
};
|
|
22780
|
+
};
|
|
22781
|
+
};
|
|
22782
|
+
export type DeletedUpstreamProxyHttpSubscriptionVariables = Exact<{
|
|
22783
|
+
[key: string]: never;
|
|
22784
|
+
}>;
|
|
22785
|
+
export type DeletedUpstreamProxyHttpSubscription = {
|
|
22786
|
+
deletedUpstreamProxyHttp: {
|
|
22787
|
+
deletedProxyId: string;
|
|
22788
|
+
};
|
|
22789
|
+
};
|
|
22684
22790
|
export type CreateUpstreamProxySocksMutationVariables = Exact<{
|
|
22685
22791
|
input: CreateUpstreamProxySocksInput;
|
|
22686
22792
|
}>;
|
|
@@ -22783,17 +22889,18 @@ export type RankUpstreamProxySocksMutation = {
|
|
|
22783
22889
|
} | undefined | null;
|
|
22784
22890
|
};
|
|
22785
22891
|
};
|
|
22786
|
-
export type
|
|
22892
|
+
export type CreatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22787
22893
|
[key: string]: never;
|
|
22788
22894
|
}>;
|
|
22789
|
-
export type
|
|
22790
|
-
|
|
22895
|
+
export type CreatedUpstreamProxySocksSubscription = {
|
|
22896
|
+
createdUpstreamProxySocks: {
|
|
22791
22897
|
proxy: {
|
|
22792
|
-
__typename: "
|
|
22898
|
+
__typename: "UpstreamProxySocks";
|
|
22793
22899
|
id: string;
|
|
22794
22900
|
allowlist: Array<string>;
|
|
22795
22901
|
denylist: Array<string>;
|
|
22796
22902
|
enabled: boolean;
|
|
22903
|
+
includeDns: boolean;
|
|
22797
22904
|
rank: string;
|
|
22798
22905
|
auth?: {
|
|
22799
22906
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22810,17 +22917,18 @@ export type CreatedUpstreamProxyHttpSubscription = {
|
|
|
22810
22917
|
};
|
|
22811
22918
|
};
|
|
22812
22919
|
};
|
|
22813
|
-
export type
|
|
22920
|
+
export type UpdatedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22814
22921
|
[key: string]: never;
|
|
22815
22922
|
}>;
|
|
22816
|
-
export type
|
|
22817
|
-
|
|
22923
|
+
export type UpdatedUpstreamProxySocksSubscription = {
|
|
22924
|
+
updatedUpstreamProxySocks: {
|
|
22818
22925
|
proxy: {
|
|
22819
|
-
__typename: "
|
|
22926
|
+
__typename: "UpstreamProxySocks";
|
|
22820
22927
|
id: string;
|
|
22821
22928
|
allowlist: Array<string>;
|
|
22822
22929
|
denylist: Array<string>;
|
|
22823
22930
|
enabled: boolean;
|
|
22931
|
+
includeDns: boolean;
|
|
22824
22932
|
rank: string;
|
|
22825
22933
|
auth?: {
|
|
22826
22934
|
__typename: "UpstreamProxyAuthBasic";
|
|
@@ -22837,76 +22945,155 @@ export type UpdatedUpstreamProxyHttpSubscription = {
|
|
|
22837
22945
|
};
|
|
22838
22946
|
};
|
|
22839
22947
|
};
|
|
22840
|
-
export type
|
|
22948
|
+
export type DeletedUpstreamProxySocksSubscriptionVariables = Exact<{
|
|
22841
22949
|
[key: string]: never;
|
|
22842
22950
|
}>;
|
|
22843
|
-
export type
|
|
22844
|
-
|
|
22951
|
+
export type DeletedUpstreamProxySocksSubscription = {
|
|
22952
|
+
deletedUpstreamProxySocks: {
|
|
22845
22953
|
deletedProxyId: string;
|
|
22846
22954
|
};
|
|
22847
22955
|
};
|
|
22848
|
-
export type
|
|
22956
|
+
export type CreateUpstreamPluginMutationVariables = Exact<{
|
|
22957
|
+
input: CreateUpstreamPluginInput;
|
|
22958
|
+
}>;
|
|
22959
|
+
export type CreateUpstreamPluginMutation = {
|
|
22960
|
+
createUpstreamPlugin: {
|
|
22961
|
+
upstream?: {
|
|
22962
|
+
__typename: "UpstreamPlugin";
|
|
22963
|
+
id: string;
|
|
22964
|
+
allowlist: Array<string>;
|
|
22965
|
+
denylist: Array<string>;
|
|
22966
|
+
enabled: boolean;
|
|
22967
|
+
rank: string;
|
|
22968
|
+
plugin: {
|
|
22969
|
+
__typename: "PluginBackend";
|
|
22970
|
+
id: string;
|
|
22971
|
+
name?: string | undefined | null;
|
|
22972
|
+
enabled: boolean;
|
|
22973
|
+
manifestId: string;
|
|
22974
|
+
package: {
|
|
22975
|
+
id: string;
|
|
22976
|
+
};
|
|
22977
|
+
};
|
|
22978
|
+
} | undefined | null;
|
|
22979
|
+
};
|
|
22980
|
+
};
|
|
22981
|
+
export type UpdateUpstreamPluginMutationVariables = Exact<{
|
|
22982
|
+
id: Scalars["ID"]["input"];
|
|
22983
|
+
input: UpdateUpstreamPluginInput;
|
|
22984
|
+
}>;
|
|
22985
|
+
export type UpdateUpstreamPluginMutation = {
|
|
22986
|
+
updateUpstreamPlugin: {
|
|
22987
|
+
upstream?: {
|
|
22988
|
+
__typename: "UpstreamPlugin";
|
|
22989
|
+
id: string;
|
|
22990
|
+
allowlist: Array<string>;
|
|
22991
|
+
denylist: Array<string>;
|
|
22992
|
+
enabled: boolean;
|
|
22993
|
+
rank: string;
|
|
22994
|
+
plugin: {
|
|
22995
|
+
__typename: "PluginBackend";
|
|
22996
|
+
id: string;
|
|
22997
|
+
name?: string | undefined | null;
|
|
22998
|
+
enabled: boolean;
|
|
22999
|
+
manifestId: string;
|
|
23000
|
+
package: {
|
|
23001
|
+
id: string;
|
|
23002
|
+
};
|
|
23003
|
+
};
|
|
23004
|
+
} | undefined | null;
|
|
23005
|
+
};
|
|
23006
|
+
};
|
|
23007
|
+
export type DeleteUpstreamPluginMutationVariables = Exact<{
|
|
23008
|
+
id: Scalars["ID"]["input"];
|
|
23009
|
+
}>;
|
|
23010
|
+
export type DeleteUpstreamPluginMutation = {
|
|
23011
|
+
deleteUpstreamPlugin: {
|
|
23012
|
+
deletedId?: string | undefined | null;
|
|
23013
|
+
};
|
|
23014
|
+
};
|
|
23015
|
+
export type RankUpstreamPluginMutationVariables = Exact<{
|
|
23016
|
+
id: Scalars["ID"]["input"];
|
|
23017
|
+
input: RankInput;
|
|
23018
|
+
}>;
|
|
23019
|
+
export type RankUpstreamPluginMutation = {
|
|
23020
|
+
rankUpstreamPlugin: {
|
|
23021
|
+
upstream?: {
|
|
23022
|
+
__typename: "UpstreamPlugin";
|
|
23023
|
+
id: string;
|
|
23024
|
+
allowlist: Array<string>;
|
|
23025
|
+
denylist: Array<string>;
|
|
23026
|
+
enabled: boolean;
|
|
23027
|
+
rank: string;
|
|
23028
|
+
plugin: {
|
|
23029
|
+
__typename: "PluginBackend";
|
|
23030
|
+
id: string;
|
|
23031
|
+
name?: string | undefined | null;
|
|
23032
|
+
enabled: boolean;
|
|
23033
|
+
manifestId: string;
|
|
23034
|
+
package: {
|
|
23035
|
+
id: string;
|
|
23036
|
+
};
|
|
23037
|
+
};
|
|
23038
|
+
} | undefined | null;
|
|
23039
|
+
};
|
|
23040
|
+
};
|
|
23041
|
+
export type CreatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22849
23042
|
[key: string]: never;
|
|
22850
23043
|
}>;
|
|
22851
|
-
export type
|
|
22852
|
-
|
|
22853
|
-
|
|
22854
|
-
__typename: "
|
|
23044
|
+
export type CreatedUpstreamPluginSubscription = {
|
|
23045
|
+
createdUpstreamPlugin: {
|
|
23046
|
+
upstream: {
|
|
23047
|
+
__typename: "UpstreamPlugin";
|
|
22855
23048
|
id: string;
|
|
22856
23049
|
allowlist: Array<string>;
|
|
22857
23050
|
denylist: Array<string>;
|
|
22858
23051
|
enabled: boolean;
|
|
22859
|
-
includeDns: boolean;
|
|
22860
23052
|
rank: string;
|
|
22861
|
-
|
|
22862
|
-
__typename: "
|
|
22863
|
-
|
|
22864
|
-
|
|
22865
|
-
|
|
22866
|
-
|
|
22867
|
-
|
|
22868
|
-
|
|
22869
|
-
|
|
22870
|
-
isTLS: boolean;
|
|
22871
|
-
SNI?: string | undefined | null;
|
|
23053
|
+
plugin: {
|
|
23054
|
+
__typename: "PluginBackend";
|
|
23055
|
+
id: string;
|
|
23056
|
+
name?: string | undefined | null;
|
|
23057
|
+
enabled: boolean;
|
|
23058
|
+
manifestId: string;
|
|
23059
|
+
package: {
|
|
23060
|
+
id: string;
|
|
23061
|
+
};
|
|
22872
23062
|
};
|
|
22873
23063
|
};
|
|
22874
23064
|
};
|
|
22875
23065
|
};
|
|
22876
|
-
export type
|
|
23066
|
+
export type UpdatedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22877
23067
|
[key: string]: never;
|
|
22878
23068
|
}>;
|
|
22879
|
-
export type
|
|
22880
|
-
|
|
22881
|
-
|
|
22882
|
-
__typename: "
|
|
23069
|
+
export type UpdatedUpstreamPluginSubscription = {
|
|
23070
|
+
updatedUpstreamPlugin: {
|
|
23071
|
+
upstream: {
|
|
23072
|
+
__typename: "UpstreamPlugin";
|
|
22883
23073
|
id: string;
|
|
22884
23074
|
allowlist: Array<string>;
|
|
22885
23075
|
denylist: Array<string>;
|
|
22886
23076
|
enabled: boolean;
|
|
22887
|
-
includeDns: boolean;
|
|
22888
23077
|
rank: string;
|
|
22889
|
-
|
|
22890
|
-
__typename: "
|
|
22891
|
-
|
|
22892
|
-
|
|
22893
|
-
|
|
22894
|
-
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
isTLS: boolean;
|
|
22899
|
-
SNI?: string | undefined | null;
|
|
23078
|
+
plugin: {
|
|
23079
|
+
__typename: "PluginBackend";
|
|
23080
|
+
id: string;
|
|
23081
|
+
name?: string | undefined | null;
|
|
23082
|
+
enabled: boolean;
|
|
23083
|
+
manifestId: string;
|
|
23084
|
+
package: {
|
|
23085
|
+
id: string;
|
|
23086
|
+
};
|
|
22900
23087
|
};
|
|
22901
23088
|
};
|
|
22902
23089
|
};
|
|
22903
23090
|
};
|
|
22904
|
-
export type
|
|
23091
|
+
export type DeletedUpstreamPluginSubscriptionVariables = Exact<{
|
|
22905
23092
|
[key: string]: never;
|
|
22906
23093
|
}>;
|
|
22907
|
-
export type
|
|
22908
|
-
|
|
22909
|
-
|
|
23094
|
+
export type DeletedUpstreamPluginSubscription = {
|
|
23095
|
+
deletedUpstreamPlugin: {
|
|
23096
|
+
deletedUpstreamId: string;
|
|
22910
23097
|
};
|
|
22911
23098
|
};
|
|
22912
23099
|
export type UserProfileFullFragment = {
|
|
@@ -23704,12 +23891,14 @@ export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment stream
|
|
|
23704
23891
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
23705
23892
|
export declare const UpstreamProxyHttpFullFragmentDoc = "\n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n ";
|
|
23706
23893
|
export declare const UpstreamProxySocksFullFragmentDoc = "\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
23894
|
+
export declare const UpstreamPluginFullFragmentDoc = "\n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n ";
|
|
23707
23895
|
export declare const UserProfileFullFragmentDoc = "\n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
23708
23896
|
export declare const UserSettingsFullFragmentDoc = "\n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
23709
23897
|
export declare const WorkflowFullFragmentDoc = "\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n ";
|
|
23710
23898
|
export declare const WorkflowEdgeFullFragmentDoc = "\n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n ";
|
|
23711
23899
|
export declare const WorkflowNodeDefinitionFullFragmentDoc = "\n fragment workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
23712
23900
|
export declare const WorkflowTaskMetaFragmentDoc = "\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
23901
|
+
export declare const TrackDocument = "\n mutation track($input: TrackInput!) {\n track(input: $input) {\n success\n }\n}\n ";
|
|
23713
23902
|
export declare const AssistantSessionsDocument = "\n query assistantSessions {\n assistantSessions {\n ...assistantSessionMeta\n }\n}\n \n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n ";
|
|
23714
23903
|
export declare const AssistantSessionDocument = "\n query assistantSession($id: ID!) {\n assistantSession(id: $id) {\n ...assistantSessionFull\n }\n}\n \n fragment assistantSessionFull on AssistantSession {\n ...assistantSessionMeta\n messages {\n ...assistantMessageFull\n }\n}\n \n\n fragment assistantSessionMeta on AssistantSession {\n __typename\n id\n modelId\n name\n updatedAt\n createdAt\n}\n \n\n fragment assistantMessageFull on AssistantMessage {\n __typename\n id\n content\n role\n session {\n id\n }\n}\n ";
|
|
23715
23904
|
export declare const AssistantCloudStateDocument = "\n query assistantCloudState {\n viewer {\n __typename\n ... on CloudUser {\n id\n assistantUsage {\n ...assistantUsageFull\n }\n }\n }\n assistantModels {\n ...assistantModelFull\n }\n}\n \n fragment assistantUsageFull on AssistantUsage {\n __typename\n balance\n}\n \n\n fragment assistantModelFull on AssistantModel {\n __typename\n id\n name\n tokenCredit\n}\n ";
|
|
@@ -23976,23 +24165,30 @@ export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n
|
|
|
23976
24165
|
export declare const CancelTaskDocument = "\n mutation cancelTask($id: ID!) {\n cancelTask(id: $id) {\n cancelledId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
23977
24166
|
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
23978
24167
|
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n createdAt\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
23979
|
-
export declare const
|
|
24168
|
+
export declare const UpstreamsDocument = "\n query upstreams {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n upstreamPlugins {\n ...upstreamPluginFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
23980
24169
|
export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23981
24170
|
export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23982
24171
|
export declare const DeleteUpstreamProxyHttpDocument = "\n mutation deleteUpstreamProxyHttp($id: ID!) {\n deleteUpstreamProxyHttp(id: $id) {\n deletedId\n }\n}\n ";
|
|
23983
24172
|
export declare const TestUpstreamProxyHttpDocument = "\n mutation testUpstreamProxyHttp($input: TestUpstreamProxyHttpInput!) {\n testUpstreamProxyHttp(input: $input) {\n success\n }\n}\n ";
|
|
23984
24173
|
export declare const RankUpstreamProxyHttpDocument = "\n mutation rankUpstreamProxyHttp($id: ID!, $input: RankInput!) {\n rankUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
24174
|
+
export declare const CreatedUpstreamProxyHttpDocument = "\n subscription createdUpstreamProxyHttp {\n createdUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
24175
|
+
export declare const UpdatedUpstreamProxyHttpDocument = "\n subscription updatedUpstreamProxyHttp {\n updatedUpstreamProxyHttp {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
24176
|
+
export declare const DeletedUpstreamProxyHttpDocument = "\n subscription deletedUpstreamProxyHttp {\n deletedUpstreamProxyHttp {\n deletedProxyId\n }\n}\n ";
|
|
23985
24177
|
export declare const CreateUpstreamProxySocksDocument = "\n mutation createUpstreamProxySocks($input: CreateUpstreamProxySocksInput!) {\n createUpstreamProxySocks(input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23986
24178
|
export declare const UpdateUpstreamProxySocksDocument = "\n mutation updateUpstreamProxySocks($id: ID!, $input: UpdateUpstreamProxySocksInput!) {\n updateUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23987
24179
|
export declare const DeleteUpstreamProxySocksDocument = "\n mutation deleteUpstreamProxySocks($id: ID!) {\n deleteUpstreamProxySocks(id: $id) {\n deletedId\n }\n}\n ";
|
|
23988
24180
|
export declare const TestUpstreamProxySocksDocument = "\n mutation testUpstreamProxySocks($input: TestUpstreamProxySocksInput!) {\n testUpstreamProxySocks(input: $input) {\n success\n }\n}\n ";
|
|
23989
24181
|
export declare const RankUpstreamProxySocksDocument = "\n mutation rankUpstreamProxySocks($id: ID!, $input: RankInput!) {\n rankUpstreamProxySocks(id: $id, input: $input) {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
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
24182
|
export declare const CreatedUpstreamProxySocksDocument = "\n subscription createdUpstreamProxySocks {\n createdUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23994
24183
|
export declare const UpdatedUpstreamProxySocksDocument = "\n subscription updatedUpstreamProxySocks {\n updatedUpstreamProxySocks {\n proxy {\n ...upstreamProxySocksFull\n }\n }\n}\n \n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
23995
24184
|
export declare const DeletedUpstreamProxySocksDocument = "\n subscription deletedUpstreamProxySocks {\n deletedUpstreamProxySocks {\n deletedProxyId\n }\n}\n ";
|
|
24185
|
+
export declare const CreateUpstreamPluginDocument = "\n mutation createUpstreamPlugin($input: CreateUpstreamPluginInput!) {\n createUpstreamPlugin(input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24186
|
+
export declare const UpdateUpstreamPluginDocument = "\n mutation updateUpstreamPlugin($id: ID!, $input: UpdateUpstreamPluginInput!) {\n updateUpstreamPlugin(id: $id, input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24187
|
+
export declare const DeleteUpstreamPluginDocument = "\n mutation deleteUpstreamPlugin($id: ID!) {\n deleteUpstreamPlugin(id: $id) {\n deletedId\n }\n}\n ";
|
|
24188
|
+
export declare const RankUpstreamPluginDocument = "\n mutation rankUpstreamPlugin($id: ID!, $input: RankInput!) {\n rankUpstreamPlugin(id: $id, input: $input) {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24189
|
+
export declare const CreatedUpstreamPluginDocument = "\n subscription createdUpstreamPlugin {\n createdUpstreamPlugin {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24190
|
+
export declare const UpdatedUpstreamPluginDocument = "\n subscription updatedUpstreamPlugin {\n updatedUpstreamPlugin {\n upstream {\n ...upstreamPluginFull\n }\n }\n}\n \n fragment upstreamPluginFull on UpstreamPlugin {\n __typename\n id\n allowlist\n denylist\n enabled\n rank\n plugin {\n ...pluginMeta\n }\n}\n \n\n fragment pluginMeta on Plugin {\n __typename\n id\n name\n enabled\n manifestId\n package {\n id\n }\n}\n ";
|
|
24191
|
+
export declare const DeletedUpstreamPluginDocument = "\n subscription deletedUpstreamPlugin {\n deletedUpstreamPlugin {\n deletedUpstreamId\n }\n}\n ";
|
|
23996
24192
|
export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
23997
24193
|
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n __typename\n ... on CloudUser {\n id\n profile {\n ...userProfileFull\n }\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
23998
24194
|
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n __typename\n ... on CloudUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n ... on GuestUser {\n id\n settings {\n ...userSettingsFull\n }\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
@@ -24018,6 +24214,7 @@ export declare const TestWorkflowActiveDocument = "\n mutation testWorkflowAc
|
|
|
24018
24214
|
export declare const TestWorkflowPassiveDocument = "\n mutation testWorkflowPassive($input: TestWorkflowPassiveInput!) {\n testWorkflowPassive(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n runState\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
24019
24215
|
export type Requester<C = {}> = <R, V>(doc: string, vars?: V, options?: C) => Promise<R> | AsyncIterable<R>;
|
|
24020
24216
|
export declare function getSdk<C>(requester: Requester<C>): {
|
|
24217
|
+
track(variables: TrackMutationVariables, options?: C): Promise<TrackMutation>;
|
|
24021
24218
|
assistantSessions(variables?: AssistantSessionsQueryVariables, options?: C): Promise<AssistantSessionsQuery>;
|
|
24022
24219
|
assistantSession(variables: AssistantSessionQueryVariables, options?: C): Promise<AssistantSessionQuery>;
|
|
24023
24220
|
assistantCloudState(variables?: AssistantCloudStateQueryVariables, options?: C): Promise<AssistantCloudStateQuery>;
|
|
@@ -24284,23 +24481,30 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
24284
24481
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
24285
24482
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|
|
24286
24483
|
finishedTask(variables?: FinishedTaskSubscriptionVariables, options?: C): AsyncIterable<FinishedTaskSubscription>;
|
|
24287
|
-
|
|
24484
|
+
upstreams(variables?: UpstreamsQueryVariables, options?: C): Promise<UpstreamsQuery>;
|
|
24288
24485
|
createUpstreamProxyHttp(variables: CreateUpstreamProxyHttpMutationVariables, options?: C): Promise<CreateUpstreamProxyHttpMutation>;
|
|
24289
24486
|
updateUpstreamProxyHttp(variables: UpdateUpstreamProxyHttpMutationVariables, options?: C): Promise<UpdateUpstreamProxyHttpMutation>;
|
|
24290
24487
|
deleteUpstreamProxyHttp(variables: DeleteUpstreamProxyHttpMutationVariables, options?: C): Promise<DeleteUpstreamProxyHttpMutation>;
|
|
24291
24488
|
testUpstreamProxyHttp(variables: TestUpstreamProxyHttpMutationVariables, options?: C): Promise<TestUpstreamProxyHttpMutation>;
|
|
24292
24489
|
rankUpstreamProxyHttp(variables: RankUpstreamProxyHttpMutationVariables, options?: C): Promise<RankUpstreamProxyHttpMutation>;
|
|
24490
|
+
createdUpstreamProxyHttp(variables?: CreatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxyHttpSubscription>;
|
|
24491
|
+
updatedUpstreamProxyHttp(variables?: UpdatedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxyHttpSubscription>;
|
|
24492
|
+
deletedUpstreamProxyHttp(variables?: DeletedUpstreamProxyHttpSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxyHttpSubscription>;
|
|
24293
24493
|
createUpstreamProxySocks(variables: CreateUpstreamProxySocksMutationVariables, options?: C): Promise<CreateUpstreamProxySocksMutation>;
|
|
24294
24494
|
updateUpstreamProxySocks(variables: UpdateUpstreamProxySocksMutationVariables, options?: C): Promise<UpdateUpstreamProxySocksMutation>;
|
|
24295
24495
|
deleteUpstreamProxySocks(variables: DeleteUpstreamProxySocksMutationVariables, options?: C): Promise<DeleteUpstreamProxySocksMutation>;
|
|
24296
24496
|
testUpstreamProxySocks(variables: TestUpstreamProxySocksMutationVariables, options?: C): Promise<TestUpstreamProxySocksMutation>;
|
|
24297
24497
|
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
24498
|
createdUpstreamProxySocks(variables?: CreatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamProxySocksSubscription>;
|
|
24302
24499
|
updatedUpstreamProxySocks(variables?: UpdatedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamProxySocksSubscription>;
|
|
24303
24500
|
deletedUpstreamProxySocks(variables?: DeletedUpstreamProxySocksSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamProxySocksSubscription>;
|
|
24501
|
+
createUpstreamPlugin(variables: CreateUpstreamPluginMutationVariables, options?: C): Promise<CreateUpstreamPluginMutation>;
|
|
24502
|
+
updateUpstreamPlugin(variables: UpdateUpstreamPluginMutationVariables, options?: C): Promise<UpdateUpstreamPluginMutation>;
|
|
24503
|
+
deleteUpstreamPlugin(variables: DeleteUpstreamPluginMutationVariables, options?: C): Promise<DeleteUpstreamPluginMutation>;
|
|
24504
|
+
rankUpstreamPlugin(variables: RankUpstreamPluginMutationVariables, options?: C): Promise<RankUpstreamPluginMutation>;
|
|
24505
|
+
createdUpstreamPlugin(variables?: CreatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<CreatedUpstreamPluginSubscription>;
|
|
24506
|
+
updatedUpstreamPlugin(variables?: UpdatedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<UpdatedUpstreamPluginSubscription>;
|
|
24507
|
+
deletedUpstreamPlugin(variables?: DeletedUpstreamPluginSubscriptionVariables, options?: C): AsyncIterable<DeletedUpstreamPluginSubscription>;
|
|
24304
24508
|
updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
|
|
24305
24509
|
userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
|
|
24306
24510
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|
package/src/types/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export { FooterSlot, type FooterSlotContent } from "./types/footer";
|
|
2
2
|
export type { DialogOptions } from "./types/window";
|
|
3
|
+
export type { _AnalyticsSDK } from "./private/analytics";
|
|
3
4
|
export type { CommandContext, CommandContextRequest, CommandContextRequestRow, CommandContextResponse, CommandContextBase, } from "./types/commands";
|
|
4
5
|
export type { MenuItem } from "./types/menu";
|
|
5
6
|
export { type ReplayTab, type ReplaySession, type ReplayEntry, type ReplayCollection, type SendRequestOptions, ReplaySlot, type ReplaySlotContent, type RequestSource, type CurrentReplaySessionChangeEvent, } from "./types/replay";
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @private
|
|
3
|
+
* Generic analytics event input for tracking.
|
|
4
|
+
*/
|
|
5
|
+
type AnalyticsEventInput = {
|
|
6
|
+
/**
|
|
7
|
+
* @private
|
|
8
|
+
* The name/kind of the analytics event.
|
|
9
|
+
*/
|
|
10
|
+
name: string;
|
|
11
|
+
/**
|
|
12
|
+
* @private
|
|
13
|
+
* The payload data for the analytics event.
|
|
14
|
+
*/
|
|
15
|
+
payload: Record<string, unknown>;
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @private
|
|
19
|
+
* Utilities to track analytics events.
|
|
20
|
+
*/
|
|
21
|
+
export type _AnalyticsSDK = {
|
|
22
|
+
/**
|
|
23
|
+
* @private
|
|
24
|
+
* Track an analytics event.
|
|
25
|
+
* @param event The analytics event to track.
|
|
26
|
+
*/
|
|
27
|
+
track: (event: AnalyticsEventInput) => Promise<void>;
|
|
28
|
+
};
|
|
29
|
+
export {};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { Sdk as GraphqlSDK } from "../__generated__/graphql-sdk";
|
|
2
|
+
import type { _AnalyticsSDK } from "../private/analytics";
|
|
2
3
|
import { type BackendEndpoints, type BackendEvents } from "../types/backend";
|
|
3
4
|
import type { AiSDK } from "./ai";
|
|
4
5
|
import type { AssetsSDK } from "./assets";
|
|
@@ -154,4 +155,9 @@ export type API<T extends BackendEndpoints = Record<string, never>, E extends Ba
|
|
|
154
155
|
* Utilities for logging messages to the console.
|
|
155
156
|
*/
|
|
156
157
|
log: LogSDK;
|
|
158
|
+
/**
|
|
159
|
+
* @private
|
|
160
|
+
* Utilities to track analytics events.
|
|
161
|
+
*/
|
|
162
|
+
_analytics: _AnalyticsSDK;
|
|
157
163
|
};
|