@caido/sdk-frontend 0.45.2-beta.0 → 0.45.2-beta.2
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
|
@@ -69,6 +69,10 @@ export type Scalars = {
|
|
|
69
69
|
input: Date;
|
|
70
70
|
output: Date;
|
|
71
71
|
};
|
|
72
|
+
Duration: {
|
|
73
|
+
input: number;
|
|
74
|
+
output: number;
|
|
75
|
+
};
|
|
72
76
|
HTTPQL: {
|
|
73
77
|
input: string;
|
|
74
78
|
output: string;
|
|
@@ -581,6 +585,10 @@ export type Browser = {
|
|
|
581
585
|
size: Scalars["Int"]["output"];
|
|
582
586
|
version: Scalars["String"]["output"];
|
|
583
587
|
};
|
|
588
|
+
export type BrowserRequest = {
|
|
589
|
+
replay: Scalars["String"]["output"];
|
|
590
|
+
showResponse: Scalars["String"]["output"];
|
|
591
|
+
};
|
|
584
592
|
export type CancelAutomateTaskError = OtherUserError | UnknownIdUserError;
|
|
585
593
|
export type CancelAutomateTaskPayload = {
|
|
586
594
|
cancelledId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -861,6 +869,9 @@ export type CreatedInterceptMessagePayload = {
|
|
|
861
869
|
messageEdge: InterceptMessageEdge;
|
|
862
870
|
snapshot: Scalars["Snapshot"]["output"];
|
|
863
871
|
};
|
|
872
|
+
export type CreatedLogLinesPayload = {
|
|
873
|
+
lines: Array<LogLine>;
|
|
874
|
+
};
|
|
864
875
|
export type CreatedPluginEventPayload = {
|
|
865
876
|
eventArgs: Array<Scalars["JsonRaw"]["output"]>;
|
|
866
877
|
eventName: Scalars["String"]["output"];
|
|
@@ -931,6 +942,10 @@ export type CreatedUpstreamProxySocksPayload = {
|
|
|
931
942
|
export type CreatedWorkflowPayload = {
|
|
932
943
|
workflowEdge: WorkflowEdge;
|
|
933
944
|
};
|
|
945
|
+
export type CurrentProject = {
|
|
946
|
+
config: ProjectConfig;
|
|
947
|
+
project: Project;
|
|
948
|
+
};
|
|
934
949
|
export type DataExport = {
|
|
935
950
|
createdAt: Scalars["DateTime"]["output"];
|
|
936
951
|
downloadUri?: Maybe<Scalars["Uri"]["output"]>;
|
|
@@ -1292,6 +1307,11 @@ export type ForwardInterceptResponseMessageInput = {
|
|
|
1292
1307
|
export type GlobalConfig = {
|
|
1293
1308
|
address: Scalars["String"]["output"];
|
|
1294
1309
|
onboarding: OnboardingState;
|
|
1310
|
+
project: GlobalConfigProject;
|
|
1311
|
+
};
|
|
1312
|
+
export type GlobalConfigProject = {
|
|
1313
|
+
selectOnStart: ProjectSelectOnStart;
|
|
1314
|
+
selectProjectId?: Maybe<Scalars["ID"]["output"]>;
|
|
1295
1315
|
};
|
|
1296
1316
|
export type GlobalizeWorkflowError = OtherUserError | ReadOnlyUserError | UnknownIdUserError | WorkflowUserError;
|
|
1297
1317
|
export type GlobalizeWorkflowPayload = {
|
|
@@ -1456,6 +1476,20 @@ export type LocalizeWorkflowPayload = {
|
|
|
1456
1476
|
error?: Maybe<LocalizeWorkflowError>;
|
|
1457
1477
|
workflow?: Maybe<Workflow>;
|
|
1458
1478
|
};
|
|
1479
|
+
export declare const LogLevel: {
|
|
1480
|
+
readonly Debug: "DEBUG";
|
|
1481
|
+
readonly Error: "ERROR";
|
|
1482
|
+
readonly Info: "INFO";
|
|
1483
|
+
readonly Trace: "TRACE";
|
|
1484
|
+
readonly Warn: "WARN";
|
|
1485
|
+
};
|
|
1486
|
+
export type LogLevel = (typeof LogLevel)[keyof typeof LogLevel];
|
|
1487
|
+
export type LogLine = {
|
|
1488
|
+
level: LogLevel;
|
|
1489
|
+
message: Scalars["String"]["output"];
|
|
1490
|
+
target: Scalars["String"]["output"];
|
|
1491
|
+
timestamp: Scalars["Timestamp"]["output"];
|
|
1492
|
+
};
|
|
1459
1493
|
export type LogoutError = CloudUserError | OtherUserError;
|
|
1460
1494
|
export type LogoutPayload = {
|
|
1461
1495
|
error?: Maybe<LogoutError>;
|
|
@@ -1556,8 +1590,10 @@ export type MutationRoot = {
|
|
|
1556
1590
|
setActiveReplaySessionEntry: SetActiveReplaySessionEntryPayload;
|
|
1557
1591
|
setGlobalConfigOnboarding: SetConfigOnboardingPayload;
|
|
1558
1592
|
setGlobalConfigPort: SetConfigPortPayload;
|
|
1593
|
+
setGlobalConfigProject: SetConfigProjectPayload;
|
|
1559
1594
|
setInterceptOptions: SetInterceptOptionsPayload;
|
|
1560
1595
|
setPluginData: SetPluginDataPayload;
|
|
1596
|
+
setProjectConfigStream: SetProjectConfigStreamPayload;
|
|
1561
1597
|
startAuthenticationFlow: StartAuthenticationFlowPayload;
|
|
1562
1598
|
startAutomateTask: StartAutomateTaskPayload;
|
|
1563
1599
|
startExportRequestsTask: StartExportRequestsTaskPayload;
|
|
@@ -1852,6 +1888,9 @@ export type MutationRootSetGlobalConfigOnboardingArgs = {
|
|
|
1852
1888
|
export type MutationRootSetGlobalConfigPortArgs = {
|
|
1853
1889
|
input: Scalars["Int"]["input"];
|
|
1854
1890
|
};
|
|
1891
|
+
export type MutationRootSetGlobalConfigProjectArgs = {
|
|
1892
|
+
input: SetConfigProjectInput;
|
|
1893
|
+
};
|
|
1855
1894
|
export type MutationRootSetInterceptOptionsArgs = {
|
|
1856
1895
|
input: InterceptOptionsInput;
|
|
1857
1896
|
};
|
|
@@ -1859,6 +1898,9 @@ export type MutationRootSetPluginDataArgs = {
|
|
|
1859
1898
|
data: Scalars["JSON"]["input"];
|
|
1860
1899
|
id: Scalars["ID"]["input"];
|
|
1861
1900
|
};
|
|
1901
|
+
export type MutationRootSetProjectConfigStreamArgs = {
|
|
1902
|
+
input: ProjectConfigStreamInput;
|
|
1903
|
+
};
|
|
1862
1904
|
export type MutationRootStartAutomateTaskArgs = {
|
|
1863
1905
|
automateSessionId: Scalars["ID"]["input"];
|
|
1864
1906
|
};
|
|
@@ -1997,7 +2039,7 @@ export type Plugin = {
|
|
|
1997
2039
|
export type PluginAuthor = {
|
|
1998
2040
|
email?: Maybe<Scalars["String"]["output"]>;
|
|
1999
2041
|
name?: Maybe<Scalars["String"]["output"]>;
|
|
2000
|
-
url?: Maybe<Scalars["
|
|
2042
|
+
url?: Maybe<Scalars["Url"]["output"]>;
|
|
2001
2043
|
};
|
|
2002
2044
|
export type PluginBackend = Plugin & {
|
|
2003
2045
|
enabled: Scalars["Boolean"]["output"];
|
|
@@ -2017,6 +2059,7 @@ export declare const PluginErrorReason: {
|
|
|
2017
2059
|
};
|
|
2018
2060
|
export type PluginErrorReason = (typeof PluginErrorReason)[keyof typeof PluginErrorReason];
|
|
2019
2061
|
export type PluginFrontend = Plugin & {
|
|
2062
|
+
assets?: Maybe<Scalars["String"]["output"]>;
|
|
2020
2063
|
backend?: Maybe<PluginBackend>;
|
|
2021
2064
|
data?: Maybe<Scalars["JSON"]["output"]>;
|
|
2022
2065
|
enabled: Scalars["Boolean"]["output"];
|
|
@@ -2027,11 +2070,15 @@ export type PluginFrontend = Plugin & {
|
|
|
2027
2070
|
package: PluginPackage;
|
|
2028
2071
|
style?: Maybe<Scalars["String"]["output"]>;
|
|
2029
2072
|
};
|
|
2073
|
+
export type PluginLinks = {
|
|
2074
|
+
sponsor?: Maybe<Scalars["Url"]["output"]>;
|
|
2075
|
+
};
|
|
2030
2076
|
export type PluginPackage = {
|
|
2031
2077
|
author?: Maybe<PluginAuthor>;
|
|
2032
2078
|
description?: Maybe<Scalars["String"]["output"]>;
|
|
2033
2079
|
id: Scalars["ID"]["output"];
|
|
2034
2080
|
installedAt: Scalars["DateTime"]["output"];
|
|
2081
|
+
links?: Maybe<PluginLinks>;
|
|
2035
2082
|
manifestId: Scalars["ID"]["output"];
|
|
2036
2083
|
name?: Maybe<Scalars["String"]["output"]>;
|
|
2037
2084
|
plugins: Array<Plugin>;
|
|
@@ -2075,6 +2122,15 @@ export type Project = {
|
|
|
2075
2122
|
updatedAt: Scalars["DateTime"]["output"];
|
|
2076
2123
|
version: Scalars["String"]["output"];
|
|
2077
2124
|
};
|
|
2125
|
+
export type ProjectConfig = {
|
|
2126
|
+
stream: ProjectConfigStream;
|
|
2127
|
+
};
|
|
2128
|
+
export type ProjectConfigStream = {
|
|
2129
|
+
stripExtension: Scalars["Boolean"]["output"];
|
|
2130
|
+
};
|
|
2131
|
+
export type ProjectConfigStreamInput = {
|
|
2132
|
+
stripExtension: Scalars["Boolean"]["input"];
|
|
2133
|
+
};
|
|
2078
2134
|
export declare const ProjectErrorReason: {
|
|
2079
2135
|
readonly Deleting: "DELETING";
|
|
2080
2136
|
readonly Exporting: "EXPORTING";
|
|
@@ -2083,6 +2139,12 @@ export declare const ProjectErrorReason: {
|
|
|
2083
2139
|
readonly TooRecent: "TOO_RECENT";
|
|
2084
2140
|
};
|
|
2085
2141
|
export type ProjectErrorReason = (typeof ProjectErrorReason)[keyof typeof ProjectErrorReason];
|
|
2142
|
+
export declare const ProjectSelectOnStart: {
|
|
2143
|
+
readonly LastUsed: "LAST_USED";
|
|
2144
|
+
readonly Nothing: "NOTHING";
|
|
2145
|
+
readonly Selected: "SELECTED";
|
|
2146
|
+
};
|
|
2147
|
+
export type ProjectSelectOnStart = (typeof ProjectSelectOnStart)[keyof typeof ProjectSelectOnStart];
|
|
2086
2148
|
export declare const ProjectStatus: {
|
|
2087
2149
|
readonly Error: "ERROR";
|
|
2088
2150
|
readonly Ready: "READY";
|
|
@@ -2105,7 +2167,7 @@ export type QueryRoot = {
|
|
|
2105
2167
|
backupTasks: Array<BackupTask>;
|
|
2106
2168
|
backups: Array<Backup>;
|
|
2107
2169
|
browser?: Maybe<Browser>;
|
|
2108
|
-
currentProject?: Maybe<
|
|
2170
|
+
currentProject?: Maybe<CurrentProject>;
|
|
2109
2171
|
dataExport?: Maybe<DataExport>;
|
|
2110
2172
|
dataExportTasks: Array<DataExportTask>;
|
|
2111
2173
|
dataExports: Array<DataExport>;
|
|
@@ -2636,6 +2698,7 @@ export type ReplayWorkflowPreprocessorInput = {
|
|
|
2636
2698
|
};
|
|
2637
2699
|
export type Request = {
|
|
2638
2700
|
alteration: Alteration;
|
|
2701
|
+
browser: BrowserRequest;
|
|
2639
2702
|
createdAt: Scalars["Timestamp"]["output"];
|
|
2640
2703
|
edited: Scalars["Boolean"]["output"];
|
|
2641
2704
|
edits: Array<Request>;
|
|
@@ -2779,8 +2842,8 @@ export type SelectEnvironmentPayload = {
|
|
|
2779
2842
|
error?: Maybe<SelectEnvironmentError>;
|
|
2780
2843
|
};
|
|
2781
2844
|
export type SelectProjectPayload = {
|
|
2845
|
+
currentProject?: Maybe<CurrentProject>;
|
|
2782
2846
|
error?: Maybe<SelectProjectPayloadError>;
|
|
2783
|
-
project?: Maybe<Project>;
|
|
2784
2847
|
};
|
|
2785
2848
|
export type SelectProjectPayloadError = OtherUserError | ProjectUserError | UnknownIdUserError;
|
|
2786
2849
|
export type SendAssistantMessageError = CloudUserError | OtherUserError | PermissionDeniedUserError | TaskInProgressUserError;
|
|
@@ -2802,6 +2865,13 @@ export type SetConfigOnboardingPayload = {
|
|
|
2802
2865
|
export type SetConfigPortPayload = {
|
|
2803
2866
|
config: GlobalConfig;
|
|
2804
2867
|
};
|
|
2868
|
+
export type SetConfigProjectInput = {
|
|
2869
|
+
selectOnStart: ProjectSelectOnStart;
|
|
2870
|
+
selectProjectId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2871
|
+
};
|
|
2872
|
+
export type SetConfigProjectPayload = {
|
|
2873
|
+
config: GlobalConfig;
|
|
2874
|
+
};
|
|
2805
2875
|
export type SetInterceptOptionsPayload = {
|
|
2806
2876
|
options: InterceptOptions;
|
|
2807
2877
|
};
|
|
@@ -2810,6 +2880,9 @@ export type SetPluginDataPayload = {
|
|
|
2810
2880
|
error?: Maybe<SetPluginDataError>;
|
|
2811
2881
|
plugin?: Maybe<Plugin>;
|
|
2812
2882
|
};
|
|
2883
|
+
export type SetProjectConfigStreamPayload = {
|
|
2884
|
+
config: ProjectConfigStream;
|
|
2885
|
+
};
|
|
2813
2886
|
export declare const SitemapDescendantsDepth: {
|
|
2814
2887
|
readonly All: "ALL";
|
|
2815
2888
|
readonly Direct: "DIRECT";
|
|
@@ -3050,6 +3123,7 @@ export type SubscriptionRoot = {
|
|
|
3050
3123
|
createdFinding: CreatedFindingPayload;
|
|
3051
3124
|
createdInterceptEntry: CreatedInterceptEntryPayload;
|
|
3052
3125
|
createdInterceptMessage: CreatedInterceptMessagePayload;
|
|
3126
|
+
createdLogLines: CreatedLogLinesPayload;
|
|
3053
3127
|
createdPluginEvent: CreatedPluginEventPayload;
|
|
3054
3128
|
createdPluginPackage: CreatedPluginPackagePayload;
|
|
3055
3129
|
createdProject: CreatedProjectPayload;
|
|
@@ -3142,6 +3216,9 @@ export type SubscriptionRootCreatedInterceptEntryArgs = {
|
|
|
3142
3216
|
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
3143
3217
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
3144
3218
|
};
|
|
3219
|
+
export type SubscriptionRootCreatedLogLinesArgs = {
|
|
3220
|
+
duration: Scalars["Duration"]["input"];
|
|
3221
|
+
};
|
|
3145
3222
|
export type SubscriptionRootCreatedRequestArgs = {
|
|
3146
3223
|
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
3147
3224
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -6585,6 +6662,11 @@ export type OnboardingFullFragment = {
|
|
|
6585
6662
|
license: boolean;
|
|
6586
6663
|
project: boolean;
|
|
6587
6664
|
};
|
|
6665
|
+
export type GlobalConfigProjectFullFragment = {
|
|
6666
|
+
__typename: "GlobalConfigProject";
|
|
6667
|
+
selectOnStart: ProjectSelectOnStart;
|
|
6668
|
+
selectProjectId?: string | undefined | null;
|
|
6669
|
+
};
|
|
6588
6670
|
export type UpdateOnboardingMutationVariables = Exact<{
|
|
6589
6671
|
input: SetConfigOnboardingInput;
|
|
6590
6672
|
}>;
|
|
@@ -6600,6 +6682,20 @@ export type UpdateOnboardingMutation = {
|
|
|
6600
6682
|
};
|
|
6601
6683
|
};
|
|
6602
6684
|
};
|
|
6685
|
+
export type UpdateGlobalConfigProjectMutationVariables = Exact<{
|
|
6686
|
+
input: SetConfigProjectInput;
|
|
6687
|
+
}>;
|
|
6688
|
+
export type UpdateGlobalConfigProjectMutation = {
|
|
6689
|
+
setGlobalConfigProject: {
|
|
6690
|
+
config: {
|
|
6691
|
+
project: {
|
|
6692
|
+
__typename: "GlobalConfigProject";
|
|
6693
|
+
selectOnStart: ProjectSelectOnStart;
|
|
6694
|
+
selectProjectId?: string | undefined | null;
|
|
6695
|
+
};
|
|
6696
|
+
};
|
|
6697
|
+
};
|
|
6698
|
+
};
|
|
6603
6699
|
export type GlobalConfigQueryVariables = Exact<{
|
|
6604
6700
|
[key: string]: never;
|
|
6605
6701
|
}>;
|
|
@@ -6612,6 +6708,23 @@ export type GlobalConfigQuery = {
|
|
|
6612
6708
|
license: boolean;
|
|
6613
6709
|
project: boolean;
|
|
6614
6710
|
};
|
|
6711
|
+
project: {
|
|
6712
|
+
__typename: "GlobalConfigProject";
|
|
6713
|
+
selectOnStart: ProjectSelectOnStart;
|
|
6714
|
+
selectProjectId?: string | undefined | null;
|
|
6715
|
+
};
|
|
6716
|
+
};
|
|
6717
|
+
};
|
|
6718
|
+
export type GlobalConfigProjectQueryVariables = Exact<{
|
|
6719
|
+
[key: string]: never;
|
|
6720
|
+
}>;
|
|
6721
|
+
export type GlobalConfigProjectQuery = {
|
|
6722
|
+
globalConfig: {
|
|
6723
|
+
project: {
|
|
6724
|
+
__typename: "GlobalConfigProject";
|
|
6725
|
+
selectOnStart: ProjectSelectOnStart;
|
|
6726
|
+
selectProjectId?: string | undefined | null;
|
|
6727
|
+
};
|
|
6615
6728
|
};
|
|
6616
6729
|
};
|
|
6617
6730
|
export type ConnectionInfoFullFragment = {
|
|
@@ -9601,6 +9714,9 @@ export type PluginAuthorFullFragment = {
|
|
|
9601
9714
|
email?: string | undefined | null;
|
|
9602
9715
|
url?: string | undefined | null;
|
|
9603
9716
|
};
|
|
9717
|
+
export type PluginLinksFullFragment = {
|
|
9718
|
+
sponsor?: string | undefined | null;
|
|
9719
|
+
};
|
|
9604
9720
|
export type PluginPackageMetaFragment = {
|
|
9605
9721
|
id: string;
|
|
9606
9722
|
name?: string | undefined | null;
|
|
@@ -9613,6 +9729,9 @@ export type PluginPackageMetaFragment = {
|
|
|
9613
9729
|
email?: string | undefined | null;
|
|
9614
9730
|
url?: string | undefined | null;
|
|
9615
9731
|
} | undefined | null;
|
|
9732
|
+
links?: {
|
|
9733
|
+
sponsor?: string | undefined | null;
|
|
9734
|
+
} | undefined | null;
|
|
9616
9735
|
};
|
|
9617
9736
|
export type PluginPackageFullFragment = {
|
|
9618
9737
|
id: string;
|
|
@@ -9675,6 +9794,9 @@ export type PluginPackageFullFragment = {
|
|
|
9675
9794
|
email?: string | undefined | null;
|
|
9676
9795
|
url?: string | undefined | null;
|
|
9677
9796
|
} | undefined | null;
|
|
9797
|
+
links?: {
|
|
9798
|
+
sponsor?: string | undefined | null;
|
|
9799
|
+
} | undefined | null;
|
|
9678
9800
|
};
|
|
9679
9801
|
export type StorePluginPackageFullFragment = {
|
|
9680
9802
|
description?: string | undefined | null;
|
|
@@ -9755,6 +9877,9 @@ export type PluginPackagesQuery = {
|
|
|
9755
9877
|
email?: string | undefined | null;
|
|
9756
9878
|
url?: string | undefined | null;
|
|
9757
9879
|
} | undefined | null;
|
|
9880
|
+
links?: {
|
|
9881
|
+
sponsor?: string | undefined | null;
|
|
9882
|
+
} | undefined | null;
|
|
9758
9883
|
}>;
|
|
9759
9884
|
};
|
|
9760
9885
|
export type StorePluginPackagesQueryVariables = Exact<{
|
|
@@ -9844,6 +9969,9 @@ export type InstallPluginPackageMutation = {
|
|
|
9844
9969
|
email?: string | undefined | null;
|
|
9845
9970
|
url?: string | undefined | null;
|
|
9846
9971
|
} | undefined | null;
|
|
9972
|
+
links?: {
|
|
9973
|
+
sponsor?: string | undefined | null;
|
|
9974
|
+
} | undefined | null;
|
|
9847
9975
|
} | undefined | null;
|
|
9848
9976
|
error?: {
|
|
9849
9977
|
__typename: "CloudUserError";
|
|
@@ -10083,6 +10211,9 @@ export type CreatedPluginPackageSubscription = {
|
|
|
10083
10211
|
email?: string | undefined | null;
|
|
10084
10212
|
url?: string | undefined | null;
|
|
10085
10213
|
} | undefined | null;
|
|
10214
|
+
links?: {
|
|
10215
|
+
sponsor?: string | undefined | null;
|
|
10216
|
+
} | undefined | null;
|
|
10086
10217
|
};
|
|
10087
10218
|
};
|
|
10088
10219
|
};
|
|
@@ -10174,6 +10305,27 @@ export type ProjectFullFragment = {
|
|
|
10174
10305
|
id: string;
|
|
10175
10306
|
}>;
|
|
10176
10307
|
};
|
|
10308
|
+
export type CurrentProjectFullFragment = {
|
|
10309
|
+
project: {
|
|
10310
|
+
__typename: "Project";
|
|
10311
|
+
id: string;
|
|
10312
|
+
name: string;
|
|
10313
|
+
path: string;
|
|
10314
|
+
version: string;
|
|
10315
|
+
status: ProjectStatus;
|
|
10316
|
+
size: number;
|
|
10317
|
+
createdAt: Date;
|
|
10318
|
+
updatedAt: Date;
|
|
10319
|
+
backups: Array<{
|
|
10320
|
+
id: string;
|
|
10321
|
+
}>;
|
|
10322
|
+
};
|
|
10323
|
+
config: {
|
|
10324
|
+
stream: {
|
|
10325
|
+
stripExtension: boolean;
|
|
10326
|
+
};
|
|
10327
|
+
};
|
|
10328
|
+
};
|
|
10177
10329
|
export type CreatedProjectSubscriptionVariables = Exact<{
|
|
10178
10330
|
[key: string]: never;
|
|
10179
10331
|
}>;
|
|
@@ -10266,19 +10418,26 @@ export type SelectProjectMutationVariables = Exact<{
|
|
|
10266
10418
|
}>;
|
|
10267
10419
|
export type SelectProjectMutation = {
|
|
10268
10420
|
selectProject: {
|
|
10269
|
-
|
|
10270
|
-
|
|
10271
|
-
|
|
10272
|
-
name: string;
|
|
10273
|
-
path: string;
|
|
10274
|
-
version: string;
|
|
10275
|
-
status: ProjectStatus;
|
|
10276
|
-
size: number;
|
|
10277
|
-
createdAt: Date;
|
|
10278
|
-
updatedAt: Date;
|
|
10279
|
-
backups: Array<{
|
|
10421
|
+
currentProject?: {
|
|
10422
|
+
project: {
|
|
10423
|
+
__typename: "Project";
|
|
10280
10424
|
id: string;
|
|
10281
|
-
|
|
10425
|
+
name: string;
|
|
10426
|
+
path: string;
|
|
10427
|
+
version: string;
|
|
10428
|
+
status: ProjectStatus;
|
|
10429
|
+
size: number;
|
|
10430
|
+
createdAt: Date;
|
|
10431
|
+
updatedAt: Date;
|
|
10432
|
+
backups: Array<{
|
|
10433
|
+
id: string;
|
|
10434
|
+
}>;
|
|
10435
|
+
};
|
|
10436
|
+
config: {
|
|
10437
|
+
stream: {
|
|
10438
|
+
stripExtension: boolean;
|
|
10439
|
+
};
|
|
10440
|
+
};
|
|
10282
10441
|
} | undefined | null;
|
|
10283
10442
|
error?: {
|
|
10284
10443
|
__typename: "OtherUserError";
|
|
@@ -10349,18 +10508,25 @@ export type CurrentProjectQueryVariables = Exact<{
|
|
|
10349
10508
|
}>;
|
|
10350
10509
|
export type CurrentProjectQuery = {
|
|
10351
10510
|
currentProject?: {
|
|
10352
|
-
|
|
10353
|
-
|
|
10354
|
-
name: string;
|
|
10355
|
-
path: string;
|
|
10356
|
-
version: string;
|
|
10357
|
-
status: ProjectStatus;
|
|
10358
|
-
size: number;
|
|
10359
|
-
createdAt: Date;
|
|
10360
|
-
updatedAt: Date;
|
|
10361
|
-
backups: Array<{
|
|
10511
|
+
project: {
|
|
10512
|
+
__typename: "Project";
|
|
10362
10513
|
id: string;
|
|
10363
|
-
|
|
10514
|
+
name: string;
|
|
10515
|
+
path: string;
|
|
10516
|
+
version: string;
|
|
10517
|
+
status: ProjectStatus;
|
|
10518
|
+
size: number;
|
|
10519
|
+
createdAt: Date;
|
|
10520
|
+
updatedAt: Date;
|
|
10521
|
+
backups: Array<{
|
|
10522
|
+
id: string;
|
|
10523
|
+
}>;
|
|
10524
|
+
};
|
|
10525
|
+
config: {
|
|
10526
|
+
stream: {
|
|
10527
|
+
stripExtension: boolean;
|
|
10528
|
+
};
|
|
10529
|
+
};
|
|
10364
10530
|
} | undefined | null;
|
|
10365
10531
|
};
|
|
10366
10532
|
export type ProjectsQueryVariables = Exact<{
|
|
@@ -10382,6 +10548,24 @@ export type ProjectsQuery = {
|
|
|
10382
10548
|
}>;
|
|
10383
10549
|
}>;
|
|
10384
10550
|
};
|
|
10551
|
+
export type ProjectConfigFullFragment = {
|
|
10552
|
+
stream: {
|
|
10553
|
+
stripExtension: boolean;
|
|
10554
|
+
};
|
|
10555
|
+
};
|
|
10556
|
+
export type ProjectConfigStreamFullFragment = {
|
|
10557
|
+
stripExtension: boolean;
|
|
10558
|
+
};
|
|
10559
|
+
export type SetProjectConfigStreamMutationVariables = Exact<{
|
|
10560
|
+
input: ProjectConfigStreamInput;
|
|
10561
|
+
}>;
|
|
10562
|
+
export type SetProjectConfigStreamMutation = {
|
|
10563
|
+
setProjectConfigStream: {
|
|
10564
|
+
config: {
|
|
10565
|
+
stripExtension: boolean;
|
|
10566
|
+
};
|
|
10567
|
+
};
|
|
10568
|
+
};
|
|
10385
10569
|
export type RangeFullFragment = {
|
|
10386
10570
|
start: number;
|
|
10387
10571
|
end: number;
|
|
@@ -13334,6 +13518,17 @@ export type RequestQuery = {
|
|
|
13334
13518
|
} | undefined | null;
|
|
13335
13519
|
} | undefined | null;
|
|
13336
13520
|
};
|
|
13521
|
+
export type RequestBrowserUrlQueryVariables = Exact<{
|
|
13522
|
+
id: Scalars["ID"]["input"];
|
|
13523
|
+
}>;
|
|
13524
|
+
export type RequestBrowserUrlQuery = {
|
|
13525
|
+
request?: {
|
|
13526
|
+
browser: {
|
|
13527
|
+
replay: string;
|
|
13528
|
+
showResponse: string;
|
|
13529
|
+
};
|
|
13530
|
+
} | undefined | null;
|
|
13531
|
+
};
|
|
13337
13532
|
export type RequestsByOffsetQueryVariables = Exact<{
|
|
13338
13533
|
limit?: InputMaybe<Scalars["Int"]["input"]>;
|
|
13339
13534
|
offset?: InputMaybe<Scalars["Int"]["input"]>;
|
|
@@ -15648,6 +15843,7 @@ export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n
|
|
|
15648
15843
|
export declare const FinishedRestoreBackupTaskErrorFullFragmentDoc = "\n fragment finishedRestoreBackupTaskErrorFull on FinishedRestoreBackupTaskError {\n __typename\n taskId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on BackupUserError {\n ...backupUserErrorFull\n }\n }\n}\n ";
|
|
15649
15844
|
export declare const BrowserFullFragmentDoc = "\n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
15650
15845
|
export declare const OnboardingFullFragmentDoc = "\n fragment onboardingFull on OnboardingState {\n __typename\n caCertificate\n license\n project\n}\n ";
|
|
15846
|
+
export declare const GlobalConfigProjectFullFragmentDoc = "\n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
|
|
15651
15847
|
export declare const EnvironmentMetaFragmentDoc = "\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
15652
15848
|
export declare const EnvironmentVariableFullFragmentDoc = "\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15653
15849
|
export declare const EnvironmentFullFragmentDoc = "\n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n ";
|
|
@@ -15697,7 +15893,8 @@ export declare const InterceptOptionsMetaFragmentDoc = "\n fragment intercept
|
|
|
15697
15893
|
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 ";
|
|
15698
15894
|
export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
|
|
15699
15895
|
export declare const PluginAuthorFullFragmentDoc = "\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n ";
|
|
15700
|
-
export declare const
|
|
15896
|
+
export declare const PluginLinksFullFragmentDoc = "\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n ";
|
|
15897
|
+
export declare const PluginPackageMetaFragmentDoc = "\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n ";
|
|
15701
15898
|
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 ";
|
|
15702
15899
|
export declare const PluginBackendMetaFragmentDoc = "\n fragment pluginBackendMeta on PluginBackend {\n __typename\n id\n}\n ";
|
|
15703
15900
|
export declare const PluginFrontendFullFragmentDoc = "\n fragment pluginFrontendFull on PluginFrontend {\n ...pluginMeta\n entrypoint\n style\n data\n backend {\n ...pluginBackendMeta\n }\n}\n ";
|
|
@@ -15706,6 +15903,9 @@ export declare const WorkflowMetaFragmentDoc = "\n fragment workflowMeta on W
|
|
|
15706
15903
|
export declare const PluginWorkflowFullFragmentDoc = "\n fragment pluginWorkflowFull on PluginWorkflow {\n ...pluginMeta\n name\n workflow {\n ...workflowMeta\n }\n}\n ";
|
|
15707
15904
|
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 ";
|
|
15708
15905
|
export declare const StorePluginPackageFullFragmentDoc = "\n fragment storePluginPackageFull on StorePluginPackage {\n author {\n email\n name\n url\n }\n description\n downloads\n license\n manifestId\n name\n repository\n version\n}\n ";
|
|
15906
|
+
export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
15907
|
+
export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
|
|
15908
|
+
export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
|
|
15709
15909
|
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 ";
|
|
15710
15910
|
export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
15711
15911
|
export declare const ReplaySuffixPreprocessorFullFragmentDoc = "\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
@@ -15809,7 +16009,9 @@ export declare const DeletedBrowserDocument = "\n subscription deletedBrowser
|
|
|
15809
16009
|
export declare const InstalledBrowserDocument = "\n subscription installedBrowser {\n installedBrowser {\n browser {\n ...browserFull\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
15810
16010
|
export declare const UpdatedBrowserDocument = "\n subscription updatedBrowser {\n updatedBrowser {\n browser {\n ...browserFull\n }\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
15811
16011
|
export declare const UpdateOnboardingDocument = "\n mutation updateOnboarding($input: SetConfigOnboardingInput!) {\n setGlobalConfigOnboarding(input: $input) {\n config {\n onboarding {\n ...onboardingFull\n }\n }\n }\n}\n \n fragment onboardingFull on OnboardingState {\n __typename\n caCertificate\n license\n project\n}\n ";
|
|
15812
|
-
export declare const
|
|
16012
|
+
export declare const UpdateGlobalConfigProjectDocument = "\n mutation updateGlobalConfigProject($input: SetConfigProjectInput!) {\n setGlobalConfigProject(input: $input) {\n config {\n project {\n ...globalConfigProjectFull\n }\n }\n }\n}\n \n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
|
|
16013
|
+
export declare const GlobalConfigDocument = "\n query globalConfig {\n globalConfig {\n address\n onboarding {\n ...onboardingFull\n }\n project {\n ...globalConfigProjectFull\n }\n }\n}\n \n fragment onboardingFull on OnboardingState {\n __typename\n caCertificate\n license\n project\n}\n \n\n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
|
|
16014
|
+
export declare const GlobalConfigProjectDocument = "\n query globalConfigProject {\n globalConfig {\n project {\n ...globalConfigProjectFull\n }\n }\n}\n \n fragment globalConfigProjectFull on GlobalConfigProject {\n __typename\n selectOnStart\n selectProjectId\n}\n ";
|
|
15813
16015
|
export declare const EnvironmentDocument = "\n query environment($id: ID!) {\n environment(id: $id) {\n ...environmentFull\n }\n}\n \n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
15814
16016
|
export declare const EnvironmentsDocument = "\n query environments {\n environments {\n ...environmentMeta\n }\n}\n \n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
15815
16017
|
export declare const EnvironmentContextDocument = "\n query environmentContext {\n environmentContext {\n ...environmentContextFull\n }\n}\n \n fragment environmentContextFull on EnvironmentContext {\n global {\n ...environmentFull\n }\n selected {\n ...environmentFull\n }\n}\n \n\n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
@@ -15890,13 +16092,13 @@ export declare const EnableTamperRuleDocument = "\n mutation enableTamperRule
|
|
|
15890
16092
|
export declare const DisableTamperRuleDocument = "\n mutation disableTamperRule($id: ID!) {\n disableTamperRule(id: $id) {\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 ";
|
|
15891
16093
|
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 ";
|
|
15892
16094
|
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 ";
|
|
15893
|
-
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 ";
|
|
16095
|
+
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 links {\n ...pluginLinksFull\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 pluginLinksFull on PluginLinks {\n sponsor\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 ";
|
|
15894
16096
|
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 downloads\n license\n manifestId\n name\n repository\n version\n}\n ";
|
|
15895
|
-
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 ... on CloudUserError {\n ...cloudUserErrorFull\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 \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
16097
|
+
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 ... on CloudUserError {\n ...cloudUserErrorFull\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 links {\n ...pluginLinksFull\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 pluginLinksFull on PluginLinks {\n sponsor\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 \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15896
16098
|
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 ";
|
|
15897
16099
|
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 ";
|
|
15898
16100
|
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 ";
|
|
15899
|
-
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 ";
|
|
16101
|
+
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 links {\n ...pluginLinksFull\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 pluginLinksFull on PluginLinks {\n sponsor\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 ";
|
|
15900
16102
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
15901
16103
|
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 ";
|
|
15902
16104
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
@@ -15904,11 +16106,12 @@ export declare const CreatedProjectDocument = "\n subscription createdProject
|
|
|
15904
16106
|
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 ";
|
|
15905
16107
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
15906
16108
|
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 ... on CloudUserError {\n ...cloudUserErrorFull\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 \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
15907
|
-
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n
|
|
16109
|
+
export declare const SelectProjectDocument = "\n mutation selectProject($id: ID!) {\n selectProject(id: $id) {\n currentProject {\n ...currentProjectFull\n }\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\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 projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n \n\n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15908
16110
|
export declare const DeleteProjectDocument = "\n mutation deleteProject($id: ID!) {\n deleteProject(id: $id) {\n deletedId\n error {\n ... on ProjectUserError {\n ...projectUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectUserErrorFull on ProjectUserError {\n ...userErrorFull\n projectReason: reason\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15909
16111
|
export declare const RenameProjectDocument = "\n mutation renameProject($id: ID!, $name: String!) {\n renameProject(id: $id, name: $name) {\n project {\n ...projectFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
15910
|
-
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 ";
|
|
16112
|
+
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...currentProjectFull\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\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 projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
15911
16113
|
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 ";
|
|
16114
|
+
export declare const SetProjectConfigStreamDocument = "\n mutation setProjectConfigStream($input: ProjectConfigStreamInput!) {\n setProjectConfigStream(input: $input) {\n config {\n ...projectConfigStreamFull\n }\n }\n}\n \n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
15912
16115
|
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\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 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}\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 ";
|
|
15913
16116
|
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\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 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}\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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15914
16117
|
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\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 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}\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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
@@ -15932,6 +16135,7 @@ export declare const DeletedReplaySessionCollectionDocument = "\n subscriptio
|
|
|
15932
16135
|
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\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 sni\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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
15933
16136
|
export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter: HTTPQL) {\n requests(first: 0, scopeId: $scopeId, filter: $filter) {\n count {\n ...countFull\n }\n snapshot\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
15934
16137
|
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\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 \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}\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 ";
|
|
16138
|
+
export declare const RequestBrowserUrlDocument = "\n query requestBrowserUrl($id: ID!) {\n request(id: $id) {\n browser {\n replay\n showResponse\n }\n }\n}\n ";
|
|
15935
16139
|
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\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 sni\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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
15936
16140
|
export declare const UpdateRequestMetadataDocument = "\n mutation updateRequestMetadata($id: ID!, $input: UpdateRequestMetadataInput!) {\n updateRequestMetadata(id: $id, input: $input) {\n snapshot\n metadata {\n ...requestMetadataFull\n }\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
15937
16141
|
export declare const StartExportRequestsTaskDocument = "\n mutation startExportRequestsTask($input: StartExportRequestsTaskInput!) {\n startExportRequestsTask(input: $input) {\n task {\n ...dataExportTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\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 export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
@@ -16078,7 +16282,9 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
16078
16282
|
installedBrowser(variables?: InstalledBrowserSubscriptionVariables, options?: C): AsyncIterable<InstalledBrowserSubscription>;
|
|
16079
16283
|
updatedBrowser(variables?: UpdatedBrowserSubscriptionVariables, options?: C): AsyncIterable<UpdatedBrowserSubscription>;
|
|
16080
16284
|
updateOnboarding(variables: UpdateOnboardingMutationVariables, options?: C): Promise<UpdateOnboardingMutation>;
|
|
16285
|
+
updateGlobalConfigProject(variables: UpdateGlobalConfigProjectMutationVariables, options?: C): Promise<UpdateGlobalConfigProjectMutation>;
|
|
16081
16286
|
globalConfig(variables?: GlobalConfigQueryVariables, options?: C): Promise<GlobalConfigQuery>;
|
|
16287
|
+
globalConfigProject(variables?: GlobalConfigProjectQueryVariables, options?: C): Promise<GlobalConfigProjectQuery>;
|
|
16082
16288
|
environment(variables: EnvironmentQueryVariables, options?: C): Promise<EnvironmentQuery>;
|
|
16083
16289
|
environments(variables?: EnvironmentsQueryVariables, options?: C): Promise<EnvironmentsQuery>;
|
|
16084
16290
|
environmentContext(variables?: EnvironmentContextQueryVariables, options?: C): Promise<EnvironmentContextQuery>;
|
|
@@ -16178,6 +16384,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
16178
16384
|
renameProject(variables: RenameProjectMutationVariables, options?: C): Promise<RenameProjectMutation>;
|
|
16179
16385
|
currentProject(variables?: CurrentProjectQueryVariables, options?: C): Promise<CurrentProjectQuery>;
|
|
16180
16386
|
projects(variables?: ProjectsQueryVariables, options?: C): Promise<ProjectsQuery>;
|
|
16387
|
+
setProjectConfigStream(variables: SetProjectConfigStreamMutationVariables, options?: C): Promise<SetProjectConfigStreamMutation>;
|
|
16181
16388
|
replayEntry(variables: ReplayEntryQueryVariables, options?: C): Promise<ReplayEntryQuery>;
|
|
16182
16389
|
activeReplayEntryBySession(variables: ActiveReplayEntryBySessionQueryVariables, options?: C): Promise<ActiveReplayEntryBySessionQuery>;
|
|
16183
16390
|
replayEntriesBySession(variables: ReplayEntriesBySessionQueryVariables, options?: C): Promise<ReplayEntriesBySessionQuery>;
|
|
@@ -16201,6 +16408,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
16201
16408
|
requests(variables?: RequestsQueryVariables, options?: C): Promise<RequestsQuery>;
|
|
16202
16409
|
requestCount(variables?: RequestCountQueryVariables, options?: C): Promise<RequestCountQuery>;
|
|
16203
16410
|
request(variables: RequestQueryVariables, options?: C): Promise<RequestQuery>;
|
|
16411
|
+
requestBrowserUrl(variables: RequestBrowserUrlQueryVariables, options?: C): Promise<RequestBrowserUrlQuery>;
|
|
16204
16412
|
requestsByOffset(variables?: RequestsByOffsetQueryVariables, options?: C): Promise<RequestsByOffsetQuery>;
|
|
16205
16413
|
updateRequestMetadata(variables: UpdateRequestMetadataMutationVariables, options?: C): Promise<UpdateRequestMetadataMutation>;
|
|
16206
16414
|
startExportRequestsTask(variables: StartExportRequestsTaskMutationVariables, options?: C): Promise<StartExportRequestsTaskMutation>;
|