@caido/sdk-frontend 0.51.2-beta.0 → 0.51.2-beta.10
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 +2 -1
- package/src/types/__generated__/graphql-sdk.d.ts +219 -41
- package/src/types/index.d.ts +1 -0
- package/src/types/sdks/ai.d.ts +12 -0
- package/src/types/sdks/automate.d.ts +18 -0
- package/src/types/sdks/findings.d.ts +12 -0
- package/src/types/sdks/httpHistory.d.ts +5 -0
- package/src/types/sdks/index.d.ts +10 -0
- package/src/types/sdks/intercept.d.ts +6 -0
- package/src/types/sdks/search.d.ts +5 -0
- package/src/types/types/ai.d.ts +6 -0
- package/src/types/types/replay.d.ts +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@caido/sdk-frontend",
|
|
3
|
-
"version": "0.51.2-beta.
|
|
3
|
+
"version": "0.51.2-beta.10",
|
|
4
4
|
"description": "Typing for the Caido Frontend SDK",
|
|
5
5
|
"author": "Caido Labs Inc. <dev@caido.io>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
"src/*"
|
|
12
12
|
],
|
|
13
13
|
"peerDependencies": {
|
|
14
|
+
"@ai-sdk/provider": "^2.0.0",
|
|
14
15
|
"@codemirror/view": "^6.0.0",
|
|
15
16
|
"@codemirror/state": "^6.0.0",
|
|
16
17
|
"vue": "^3.0.0"
|
|
@@ -730,7 +730,7 @@ export type CreateAutomateSessionInput = {
|
|
|
730
730
|
export type CreateAutomateSessionPayload = {
|
|
731
731
|
session?: Maybe<AutomateSession>;
|
|
732
732
|
};
|
|
733
|
-
export type CreateBackupError =
|
|
733
|
+
export type CreateBackupError = OtherUserError | TaskInProgressUserError;
|
|
734
734
|
export type CreateBackupPayload = {
|
|
735
735
|
error?: Maybe<CreateBackupError>;
|
|
736
736
|
task?: Maybe<BackupTask>;
|
|
@@ -1015,6 +1015,8 @@ export type CreatedWorkflowPayload = {
|
|
|
1015
1015
|
export type CurrentProject = {
|
|
1016
1016
|
config: ProjectConfig;
|
|
1017
1017
|
project: Project;
|
|
1018
|
+
/** Defines if the selected project is read-only */
|
|
1019
|
+
readOnly: Scalars["Boolean"]["output"];
|
|
1018
1020
|
};
|
|
1019
1021
|
export type DnsIpResolver = {
|
|
1020
1022
|
ip: Scalars["String"]["output"];
|
|
@@ -2394,6 +2396,8 @@ export type Project = {
|
|
|
2394
2396
|
id: Scalars["ID"]["output"];
|
|
2395
2397
|
name: Scalars["String"]["output"];
|
|
2396
2398
|
path: Scalars["String"]["output"];
|
|
2399
|
+
/** Defines if the project would be read-only if selected by the caller */
|
|
2400
|
+
readOnly: Scalars["Boolean"]["output"];
|
|
2397
2401
|
size: Scalars["Int"]["output"];
|
|
2398
2402
|
status: ProjectStatus;
|
|
2399
2403
|
temporary: Scalars["Boolean"]["output"];
|
|
@@ -2859,6 +2863,7 @@ export type ReplayEntrySettings = {
|
|
|
2859
2863
|
placeholders: Array<ReplayPlaceholder>;
|
|
2860
2864
|
};
|
|
2861
2865
|
export type ReplayEntrySettingsInput = {
|
|
2866
|
+
connectionClose: Scalars["Boolean"]["input"];
|
|
2862
2867
|
placeholders: Array<ReplayPlaceholderInput>;
|
|
2863
2868
|
updateContentLength: Scalars["Boolean"]["input"];
|
|
2864
2869
|
};
|
|
@@ -6856,6 +6861,7 @@ export type RestoreBackupTaskMetaFragment = {
|
|
|
6856
6861
|
size: number;
|
|
6857
6862
|
createdAt: Date;
|
|
6858
6863
|
updatedAt: Date;
|
|
6864
|
+
readOnly: boolean;
|
|
6859
6865
|
backups: Array<{
|
|
6860
6866
|
id: string;
|
|
6861
6867
|
}>;
|
|
@@ -6930,6 +6936,7 @@ export type FinishedRestoreBackupTaskSuccessFullFragment = {
|
|
|
6930
6936
|
size: number;
|
|
6931
6937
|
createdAt: Date;
|
|
6932
6938
|
updatedAt: Date;
|
|
6939
|
+
readOnly: boolean;
|
|
6933
6940
|
backups: Array<{
|
|
6934
6941
|
id: string;
|
|
6935
6942
|
}>;
|
|
@@ -7035,6 +7042,7 @@ export type RestoreBackupTasksQuery = {
|
|
|
7035
7042
|
size: number;
|
|
7036
7043
|
createdAt: Date;
|
|
7037
7044
|
updatedAt: Date;
|
|
7045
|
+
readOnly: boolean;
|
|
7038
7046
|
backups: Array<{
|
|
7039
7047
|
id: string;
|
|
7040
7048
|
}>;
|
|
@@ -7064,16 +7072,8 @@ export type CreateBackupMutation = {
|
|
|
7064
7072
|
};
|
|
7065
7073
|
} | undefined | null;
|
|
7066
7074
|
error?: {
|
|
7067
|
-
__typename: "CloudUserError";
|
|
7068
|
-
code: string;
|
|
7069
|
-
cloudReason: CloudErrorReason;
|
|
7070
|
-
} | {
|
|
7071
7075
|
__typename: "OtherUserError";
|
|
7072
7076
|
code: string;
|
|
7073
|
-
} | {
|
|
7074
|
-
__typename: "PermissionDeniedUserError";
|
|
7075
|
-
code: string;
|
|
7076
|
-
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
7077
7077
|
} | {
|
|
7078
7078
|
__typename: "TaskInProgressUserError";
|
|
7079
7079
|
taskId: string;
|
|
@@ -7163,6 +7163,7 @@ export type RestoreBackupFromFileMutation = {
|
|
|
7163
7163
|
size: number;
|
|
7164
7164
|
createdAt: Date;
|
|
7165
7165
|
updatedAt: Date;
|
|
7166
|
+
readOnly: boolean;
|
|
7166
7167
|
backups: Array<{
|
|
7167
7168
|
id: string;
|
|
7168
7169
|
}>;
|
|
@@ -7215,6 +7216,7 @@ export type RestoreBackupMutation = {
|
|
|
7215
7216
|
size: number;
|
|
7216
7217
|
createdAt: Date;
|
|
7217
7218
|
updatedAt: Date;
|
|
7219
|
+
readOnly: boolean;
|
|
7218
7220
|
backups: Array<{
|
|
7219
7221
|
id: string;
|
|
7220
7222
|
}>;
|
|
@@ -7401,6 +7403,7 @@ export type StartedRestoreBackupTaskSubscription = {
|
|
|
7401
7403
|
size: number;
|
|
7402
7404
|
createdAt: Date;
|
|
7403
7405
|
updatedAt: Date;
|
|
7406
|
+
readOnly: boolean;
|
|
7404
7407
|
backups: Array<{
|
|
7405
7408
|
id: string;
|
|
7406
7409
|
}>;
|
|
@@ -7459,6 +7462,7 @@ export type FinishedRetoreBackupTaskSubscription = {
|
|
|
7459
7462
|
size: number;
|
|
7460
7463
|
createdAt: Date;
|
|
7461
7464
|
updatedAt: Date;
|
|
7465
|
+
readOnly: boolean;
|
|
7462
7466
|
backups: Array<{
|
|
7463
7467
|
id: string;
|
|
7464
7468
|
}>;
|
|
@@ -8822,7 +8826,6 @@ export type DeletedFilterPresetSubscription = {
|
|
|
8822
8826
|
export type FindingMetaFragment = {
|
|
8823
8827
|
id: string;
|
|
8824
8828
|
title: string;
|
|
8825
|
-
description?: string | undefined | null;
|
|
8826
8829
|
reporter: string;
|
|
8827
8830
|
host: string;
|
|
8828
8831
|
path: string;
|
|
@@ -8868,7 +8871,6 @@ export type FindingEdgeMetaFragment = {
|
|
|
8868
8871
|
node: {
|
|
8869
8872
|
id: string;
|
|
8870
8873
|
title: string;
|
|
8871
|
-
description?: string | undefined | null;
|
|
8872
8874
|
reporter: string;
|
|
8873
8875
|
host: string;
|
|
8874
8876
|
path: string;
|
|
@@ -8910,6 +8912,99 @@ export type FindingEdgeMetaFragment = {
|
|
|
8910
8912
|
};
|
|
8911
8913
|
};
|
|
8912
8914
|
};
|
|
8915
|
+
export type FindingFullFragment = {
|
|
8916
|
+
description?: string | undefined | null;
|
|
8917
|
+
id: string;
|
|
8918
|
+
title: string;
|
|
8919
|
+
reporter: string;
|
|
8920
|
+
host: string;
|
|
8921
|
+
path: string;
|
|
8922
|
+
createdAt: Date;
|
|
8923
|
+
request: {
|
|
8924
|
+
__typename: "Request";
|
|
8925
|
+
id: string;
|
|
8926
|
+
host: string;
|
|
8927
|
+
port: number;
|
|
8928
|
+
path: string;
|
|
8929
|
+
query: string;
|
|
8930
|
+
method: string;
|
|
8931
|
+
edited: boolean;
|
|
8932
|
+
isTls: boolean;
|
|
8933
|
+
sni?: string | undefined | null;
|
|
8934
|
+
length: number;
|
|
8935
|
+
alteration: Alteration;
|
|
8936
|
+
fileExtension?: string | undefined | null;
|
|
8937
|
+
source: Source;
|
|
8938
|
+
createdAt: Date;
|
|
8939
|
+
metadata: {
|
|
8940
|
+
__typename: "RequestMetadata";
|
|
8941
|
+
id: string;
|
|
8942
|
+
color?: string | undefined | null;
|
|
8943
|
+
};
|
|
8944
|
+
response?: {
|
|
8945
|
+
__typename: "Response";
|
|
8946
|
+
id: string;
|
|
8947
|
+
statusCode: number;
|
|
8948
|
+
roundtripTime: number;
|
|
8949
|
+
length: number;
|
|
8950
|
+
createdAt: Date;
|
|
8951
|
+
alteration: Alteration;
|
|
8952
|
+
edited: boolean;
|
|
8953
|
+
} | undefined | null;
|
|
8954
|
+
stream?: {
|
|
8955
|
+
id: string;
|
|
8956
|
+
} | undefined | null;
|
|
8957
|
+
};
|
|
8958
|
+
};
|
|
8959
|
+
export type GetFindingQueryVariables = Exact<{
|
|
8960
|
+
id: Scalars["ID"]["input"];
|
|
8961
|
+
}>;
|
|
8962
|
+
export type GetFindingQuery = {
|
|
8963
|
+
finding?: {
|
|
8964
|
+
description?: string | undefined | null;
|
|
8965
|
+
id: string;
|
|
8966
|
+
title: string;
|
|
8967
|
+
reporter: string;
|
|
8968
|
+
host: string;
|
|
8969
|
+
path: string;
|
|
8970
|
+
createdAt: Date;
|
|
8971
|
+
request: {
|
|
8972
|
+
__typename: "Request";
|
|
8973
|
+
id: string;
|
|
8974
|
+
host: string;
|
|
8975
|
+
port: number;
|
|
8976
|
+
path: string;
|
|
8977
|
+
query: string;
|
|
8978
|
+
method: string;
|
|
8979
|
+
edited: boolean;
|
|
8980
|
+
isTls: boolean;
|
|
8981
|
+
sni?: string | undefined | null;
|
|
8982
|
+
length: number;
|
|
8983
|
+
alteration: Alteration;
|
|
8984
|
+
fileExtension?: string | undefined | null;
|
|
8985
|
+
source: Source;
|
|
8986
|
+
createdAt: Date;
|
|
8987
|
+
metadata: {
|
|
8988
|
+
__typename: "RequestMetadata";
|
|
8989
|
+
id: string;
|
|
8990
|
+
color?: string | undefined | null;
|
|
8991
|
+
};
|
|
8992
|
+
response?: {
|
|
8993
|
+
__typename: "Response";
|
|
8994
|
+
id: string;
|
|
8995
|
+
statusCode: number;
|
|
8996
|
+
roundtripTime: number;
|
|
8997
|
+
length: number;
|
|
8998
|
+
createdAt: Date;
|
|
8999
|
+
alteration: Alteration;
|
|
9000
|
+
edited: boolean;
|
|
9001
|
+
} | undefined | null;
|
|
9002
|
+
stream?: {
|
|
9003
|
+
id: string;
|
|
9004
|
+
} | undefined | null;
|
|
9005
|
+
};
|
|
9006
|
+
} | undefined | null;
|
|
9007
|
+
};
|
|
8913
9008
|
export type GetFindingsBeforeQueryVariables = Exact<{
|
|
8914
9009
|
before: Scalars["String"]["input"];
|
|
8915
9010
|
last: Scalars["Int"]["input"];
|
|
@@ -8924,7 +9019,6 @@ export type GetFindingsBeforeQuery = {
|
|
|
8924
9019
|
node: {
|
|
8925
9020
|
id: string;
|
|
8926
9021
|
title: string;
|
|
8927
|
-
description?: string | undefined | null;
|
|
8928
9022
|
reporter: string;
|
|
8929
9023
|
host: string;
|
|
8930
9024
|
path: string;
|
|
@@ -8989,7 +9083,6 @@ export type GetFindingsAfterQuery = {
|
|
|
8989
9083
|
node: {
|
|
8990
9084
|
id: string;
|
|
8991
9085
|
title: string;
|
|
8992
|
-
description?: string | undefined | null;
|
|
8993
9086
|
reporter: string;
|
|
8994
9087
|
host: string;
|
|
8995
9088
|
path: string;
|
|
@@ -9054,7 +9147,6 @@ export type GetFindingsByOffsetQuery = {
|
|
|
9054
9147
|
node: {
|
|
9055
9148
|
id: string;
|
|
9056
9149
|
title: string;
|
|
9057
|
-
description?: string | undefined | null;
|
|
9058
9150
|
reporter: string;
|
|
9059
9151
|
host: string;
|
|
9060
9152
|
path: string;
|
|
@@ -9134,7 +9226,6 @@ export type CreatedFindingSubscription = {
|
|
|
9134
9226
|
node: {
|
|
9135
9227
|
id: string;
|
|
9136
9228
|
title: string;
|
|
9137
|
-
description?: string | undefined | null;
|
|
9138
9229
|
reporter: string;
|
|
9139
9230
|
host: string;
|
|
9140
9231
|
path: string;
|
|
@@ -9199,7 +9290,6 @@ export type UpdatedFindingsSubscription = {
|
|
|
9199
9290
|
node: {
|
|
9200
9291
|
id: string;
|
|
9201
9292
|
title: string;
|
|
9202
|
-
description?: string | undefined | null;
|
|
9203
9293
|
reporter: string;
|
|
9204
9294
|
host: string;
|
|
9205
9295
|
path: string;
|
|
@@ -9251,9 +9341,9 @@ export type CreateFindingMutationVariables = Exact<{
|
|
|
9251
9341
|
export type CreateFindingMutation = {
|
|
9252
9342
|
createFinding: {
|
|
9253
9343
|
finding?: {
|
|
9344
|
+
description?: string | undefined | null;
|
|
9254
9345
|
id: string;
|
|
9255
9346
|
title: string;
|
|
9256
|
-
description?: string | undefined | null;
|
|
9257
9347
|
reporter: string;
|
|
9258
9348
|
host: string;
|
|
9259
9349
|
path: string;
|
|
@@ -9321,7 +9411,6 @@ export type UpdateFindingMutation = {
|
|
|
9321
9411
|
finding?: {
|
|
9322
9412
|
id: string;
|
|
9323
9413
|
title: string;
|
|
9324
|
-
description?: string | undefined | null;
|
|
9325
9414
|
reporter: string;
|
|
9326
9415
|
host: string;
|
|
9327
9416
|
path: string;
|
|
@@ -10210,6 +10299,81 @@ export type InterceptRequestMessageMetaFragment = {
|
|
|
10210
10299
|
} | undefined | null;
|
|
10211
10300
|
};
|
|
10212
10301
|
};
|
|
10302
|
+
export type InterceptRequestMessageFullFragment = {
|
|
10303
|
+
__typename: "InterceptRequestMessage";
|
|
10304
|
+
id: string;
|
|
10305
|
+
request: {
|
|
10306
|
+
__typename: "Request";
|
|
10307
|
+
raw: string;
|
|
10308
|
+
id: string;
|
|
10309
|
+
host: string;
|
|
10310
|
+
port: number;
|
|
10311
|
+
path: string;
|
|
10312
|
+
query: string;
|
|
10313
|
+
method: string;
|
|
10314
|
+
edited: boolean;
|
|
10315
|
+
isTls: boolean;
|
|
10316
|
+
sni?: string | undefined | null;
|
|
10317
|
+
length: number;
|
|
10318
|
+
alteration: Alteration;
|
|
10319
|
+
fileExtension?: string | undefined | null;
|
|
10320
|
+
source: Source;
|
|
10321
|
+
createdAt: Date;
|
|
10322
|
+
edits: Array<{
|
|
10323
|
+
__typename: "Request";
|
|
10324
|
+
id: string;
|
|
10325
|
+
host: string;
|
|
10326
|
+
port: number;
|
|
10327
|
+
path: string;
|
|
10328
|
+
query: string;
|
|
10329
|
+
method: string;
|
|
10330
|
+
edited: boolean;
|
|
10331
|
+
isTls: boolean;
|
|
10332
|
+
sni?: string | undefined | null;
|
|
10333
|
+
length: number;
|
|
10334
|
+
alteration: Alteration;
|
|
10335
|
+
fileExtension?: string | undefined | null;
|
|
10336
|
+
source: Source;
|
|
10337
|
+
createdAt: Date;
|
|
10338
|
+
metadata: {
|
|
10339
|
+
__typename: "RequestMetadata";
|
|
10340
|
+
id: string;
|
|
10341
|
+
color?: string | undefined | null;
|
|
10342
|
+
};
|
|
10343
|
+
response?: {
|
|
10344
|
+
__typename: "Response";
|
|
10345
|
+
id: string;
|
|
10346
|
+
statusCode: number;
|
|
10347
|
+
roundtripTime: number;
|
|
10348
|
+
length: number;
|
|
10349
|
+
createdAt: Date;
|
|
10350
|
+
alteration: Alteration;
|
|
10351
|
+
edited: boolean;
|
|
10352
|
+
} | undefined | null;
|
|
10353
|
+
stream?: {
|
|
10354
|
+
id: string;
|
|
10355
|
+
} | undefined | null;
|
|
10356
|
+
}>;
|
|
10357
|
+
metadata: {
|
|
10358
|
+
__typename: "RequestMetadata";
|
|
10359
|
+
id: string;
|
|
10360
|
+
color?: string | undefined | null;
|
|
10361
|
+
};
|
|
10362
|
+
response?: {
|
|
10363
|
+
__typename: "Response";
|
|
10364
|
+
id: string;
|
|
10365
|
+
statusCode: number;
|
|
10366
|
+
roundtripTime: number;
|
|
10367
|
+
length: number;
|
|
10368
|
+
createdAt: Date;
|
|
10369
|
+
alteration: Alteration;
|
|
10370
|
+
edited: boolean;
|
|
10371
|
+
} | undefined | null;
|
|
10372
|
+
stream?: {
|
|
10373
|
+
id: string;
|
|
10374
|
+
} | undefined | null;
|
|
10375
|
+
};
|
|
10376
|
+
};
|
|
10213
10377
|
export type InterceptResponseMessageMetaFragment = {
|
|
10214
10378
|
__typename: "InterceptResponseMessage";
|
|
10215
10379
|
id: string;
|
|
@@ -15870,6 +16034,7 @@ export type ProjectFullFragment = {
|
|
|
15870
16034
|
size: number;
|
|
15871
16035
|
createdAt: Date;
|
|
15872
16036
|
updatedAt: Date;
|
|
16037
|
+
readOnly: boolean;
|
|
15873
16038
|
backups: Array<{
|
|
15874
16039
|
id: string;
|
|
15875
16040
|
}>;
|
|
@@ -15886,6 +16051,7 @@ export type CurrentProjectFullFragment = {
|
|
|
15886
16051
|
size: number;
|
|
15887
16052
|
createdAt: Date;
|
|
15888
16053
|
updatedAt: Date;
|
|
16054
|
+
readOnly: boolean;
|
|
15889
16055
|
backups: Array<{
|
|
15890
16056
|
id: string;
|
|
15891
16057
|
}>;
|
|
@@ -15912,6 +16078,7 @@ export type CreatedProjectSubscription = {
|
|
|
15912
16078
|
size: number;
|
|
15913
16079
|
createdAt: Date;
|
|
15914
16080
|
updatedAt: Date;
|
|
16081
|
+
readOnly: boolean;
|
|
15915
16082
|
backups: Array<{
|
|
15916
16083
|
id: string;
|
|
15917
16084
|
}>;
|
|
@@ -15934,6 +16101,7 @@ export type UpdatedProjectSubscription = {
|
|
|
15934
16101
|
size: number;
|
|
15935
16102
|
createdAt: Date;
|
|
15936
16103
|
updatedAt: Date;
|
|
16104
|
+
readOnly: boolean;
|
|
15937
16105
|
backups: Array<{
|
|
15938
16106
|
id: string;
|
|
15939
16107
|
}>;
|
|
@@ -15964,6 +16132,7 @@ export type CreateProjectMutation = {
|
|
|
15964
16132
|
size: number;
|
|
15965
16133
|
createdAt: Date;
|
|
15966
16134
|
updatedAt: Date;
|
|
16135
|
+
readOnly: boolean;
|
|
15967
16136
|
backups: Array<{
|
|
15968
16137
|
id: string;
|
|
15969
16138
|
}>;
|
|
@@ -16003,6 +16172,7 @@ export type SelectProjectMutation = {
|
|
|
16003
16172
|
size: number;
|
|
16004
16173
|
createdAt: Date;
|
|
16005
16174
|
updatedAt: Date;
|
|
16175
|
+
readOnly: boolean;
|
|
16006
16176
|
backups: Array<{
|
|
16007
16177
|
id: string;
|
|
16008
16178
|
}>;
|
|
@@ -16064,6 +16234,7 @@ export type RenameProjectMutation = {
|
|
|
16064
16234
|
size: number;
|
|
16065
16235
|
createdAt: Date;
|
|
16066
16236
|
updatedAt: Date;
|
|
16237
|
+
readOnly: boolean;
|
|
16067
16238
|
backups: Array<{
|
|
16068
16239
|
id: string;
|
|
16069
16240
|
}>;
|
|
@@ -16098,6 +16269,7 @@ export type PersistProjectMutation = {
|
|
|
16098
16269
|
size: number;
|
|
16099
16270
|
createdAt: Date;
|
|
16100
16271
|
updatedAt: Date;
|
|
16272
|
+
readOnly: boolean;
|
|
16101
16273
|
backups: Array<{
|
|
16102
16274
|
id: string;
|
|
16103
16275
|
}>;
|
|
@@ -16132,6 +16304,7 @@ export type CurrentProjectQuery = {
|
|
|
16132
16304
|
size: number;
|
|
16133
16305
|
createdAt: Date;
|
|
16134
16306
|
updatedAt: Date;
|
|
16307
|
+
readOnly: boolean;
|
|
16135
16308
|
backups: Array<{
|
|
16136
16309
|
id: string;
|
|
16137
16310
|
}>;
|
|
@@ -16158,6 +16331,7 @@ export type ProjectsQuery = {
|
|
|
16158
16331
|
size: number;
|
|
16159
16332
|
createdAt: Date;
|
|
16160
16333
|
updatedAt: Date;
|
|
16334
|
+
readOnly: boolean;
|
|
16161
16335
|
backups: Array<{
|
|
16162
16336
|
id: string;
|
|
16163
16337
|
}>;
|
|
@@ -22257,7 +22431,7 @@ export declare const FinishedBackupTaskCancelledFullFragmentDoc = "\n fragmen
|
|
|
22257
22431
|
export declare const InternalUserErrorFullFragmentDoc = "\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n ";
|
|
22258
22432
|
export declare const BackupUserErrorFullFragmentDoc = "\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22259
22433
|
export declare const FinishedBackupTaskErrorFullFragmentDoc = "\n fragment finishedBackupTaskErrorFull on FinishedBackupTaskError {\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 ";
|
|
22260
|
-
export declare const ProjectFullFragmentDoc = "\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22434
|
+
export declare const ProjectFullFragmentDoc = "\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22261
22435
|
export declare const RestoreBackupTaskMetaFragmentDoc = "\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n ";
|
|
22262
22436
|
export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n ";
|
|
22263
22437
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
@@ -22298,8 +22472,9 @@ export declare const DataExportTaskMetaFieldsFragmentDoc = "\n fragment dataE
|
|
|
22298
22472
|
export declare const DataExportTaskMetaFragmentDoc = "\n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n ";
|
|
22299
22473
|
export declare const FilterPresetFullFragmentDoc = "\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
22300
22474
|
export declare const FilterPresetEdgeFullFragmentDoc = "\n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n ";
|
|
22301
|
-
export declare const FindingMetaFragmentDoc = "\n fragment findingMeta on Finding {\n id\n title\n
|
|
22475
|
+
export declare const FindingMetaFragmentDoc = "\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n ";
|
|
22302
22476
|
export declare const FindingEdgeMetaFragmentDoc = "\n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n ";
|
|
22477
|
+
export declare const FindingFullFragmentDoc = "\n fragment findingFull on Finding {\n ...findingMeta\n description\n}\n ";
|
|
22303
22478
|
export declare const InterceptEntryMetaFragmentDoc = "\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
22304
22479
|
export declare const RequestFullFieldsFragmentDoc = "\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
22305
22480
|
export declare const RequestFullFragmentDoc = "\n fragment requestFull on Request {\n ...requestFullFields\n}\n ";
|
|
@@ -22309,6 +22484,7 @@ export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment
|
|
|
22309
22484
|
export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
|
|
22310
22485
|
export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
|
|
22311
22486
|
export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
|
|
22487
|
+
export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
|
|
22312
22488
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
22313
22489
|
export declare const InterceptResponseMessageMetaFragmentDoc = "\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
22314
22490
|
export declare const StreamWsMessageEditRefFragmentDoc = "\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n ";
|
|
@@ -22448,12 +22624,12 @@ export declare const DeletedAutomateSessionDocument = "\n subscription delete
|
|
|
22448
22624
|
export declare const BackupsDocument = "\n query backups {\n backups {\n ...backupMeta\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
22449
22625
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
22450
22626
|
export declare const BackupTasksDocument = "\n query backupTasks {\n backupTasks {\n ...backupTaskMeta\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
22451
|
-
export declare const RestoreBackupTasksDocument = "\n query restoreBackupTasks {\n restoreBackupTasks {\n ...restoreBackupTaskMeta\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22452
|
-
export declare const CreateBackupDocument = "\n mutation createBackup($id: ID!) {\n createBackup(projectId: $id) {\n task {\n ...backupTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n
|
|
22627
|
+
export declare const RestoreBackupTasksDocument = "\n query restoreBackupTasks {\n restoreBackupTasks {\n ...restoreBackupTaskMeta\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22628
|
+
export declare const CreateBackupDocument = "\n mutation createBackup($id: ID!) {\n createBackup(projectId: $id) {\n task {\n ...backupTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n }\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n ";
|
|
22453
22629
|
export declare const DeleteBackupDocument = "\n mutation deleteBackup($id: ID!) {\n deleteBackup(id: $id) {\n deletedId\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n ";
|
|
22454
22630
|
export declare const RenameBackupDocument = "\n mutation renameBackup($id: ID!, $name: String!) {\n renameBackup(id: $id, name: $name) {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
22455
|
-
export declare const RestoreBackupFromFileDocument = "\n mutation restoreBackupFromFile($name: String!, $file: Upload!) {\n restoreBackup(input: {name: $name, source: {file: $file}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\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 \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22456
|
-
export declare const RestoreBackupDocument = "\n mutation restoreBackup($name: String!, $id: ID!) {\n restoreBackup(input: {name: $name, source: {backupId: $id}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\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 \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22631
|
+
export declare const RestoreBackupFromFileDocument = "\n mutation restoreBackupFromFile($name: String!, $file: Upload!) {\n restoreBackup(input: {name: $name, source: {file: $file}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\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 \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22632
|
+
export declare const RestoreBackupDocument = "\n mutation restoreBackup($name: String!, $id: ID!) {\n restoreBackup(input: {name: $name, source: {backupId: $id}}) {\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n task {\n ...restoreBackupTaskMeta\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 \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22457
22633
|
export declare const CancelBackupTaskDocument = "\n mutation cancelBackupTask($id: ID!) {\n cancelBackupTask(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 ";
|
|
22458
22634
|
export declare const CancelRestoreBackupTaskDocument = "\n mutation cancelRestoreBackupTask($id: ID!) {\n cancelRestoreBackupTask(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 ";
|
|
22459
22635
|
export declare const CreatedBackupDocument = "\n subscription createdBackup {\n createdBackup {\n backup {\n ...backupMeta\n }\n }\n}\n \n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
@@ -22461,8 +22637,8 @@ export declare const UpdatedBackupDocument = "\n subscription updatedBackup {
|
|
|
22461
22637
|
export declare const DeletedBackupDocument = "\n subscription deletedBackup {\n deletedBackup {\n deletedBackupId\n }\n}\n ";
|
|
22462
22638
|
export declare const StartedBackupTaskDocument = "\n subscription startedBackupTask {\n startedBackupTask {\n task {\n ...backupTaskMeta\n }\n }\n}\n \n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n ";
|
|
22463
22639
|
export declare const FinishedBackupTaskDocument = "\n subscription finishedBackupTask {\n finishedBackupTask {\n ... on FinishedBackupTaskSuccess {\n ...finishedBackupTaskSuccessFull\n }\n ... on FinishedBackupTaskCancelled {\n ...finishedBackupTaskCancelledFull\n }\n ... on FinishedBackupTaskError {\n ...finishedBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedBackupTaskSuccessFull on FinishedBackupTaskSuccess {\n __typename\n task {\n ...backupTaskMeta\n }\n}\n \n\n fragment backupTaskMeta on BackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment finishedBackupTaskCancelledFull on FinishedBackupTaskCancelled {\n __typename\n taskId\n}\n \n\n fragment finishedBackupTaskErrorFull on FinishedBackupTaskError {\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 \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 internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22464
|
-
export declare const StartedRestoreBackupTaskDocument = "\n subscription startedRestoreBackupTask {\n startedRestoreBackupTask {\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22465
|
-
export declare const FinishedRetoreBackupTaskDocument = "\n subscription finishedRetoreBackupTask {\n finishedRestoreBackupTask {\n ... on FinishedRestoreBackupTaskSuccess {\n ...finishedRestoreBackupTaskSuccessFull\n }\n ... on FinishedRestoreBackupTaskCancelled {\n ...finishedRestoreBackupTaskCancelledFull\n }\n ... on FinishedRestoreBackupTaskError {\n ...finishedRestoreBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n \n\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 \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 internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22640
|
+
export declare const StartedRestoreBackupTaskDocument = "\n subscription startedRestoreBackupTask {\n startedRestoreBackupTask {\n task {\n ...restoreBackupTaskMeta\n }\n }\n}\n \n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22641
|
+
export declare const FinishedRetoreBackupTaskDocument = "\n subscription finishedRetoreBackupTask {\n finishedRestoreBackupTask {\n ... on FinishedRestoreBackupTaskSuccess {\n ...finishedRestoreBackupTaskSuccessFull\n }\n ... on FinishedRestoreBackupTaskCancelled {\n ...finishedRestoreBackupTaskCancelledFull\n }\n ... on FinishedRestoreBackupTaskError {\n ...finishedRestoreBackupTaskErrorFull\n }\n }\n}\n \n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n \n\n fragment restoreBackupTaskMeta on RestoreBackupTask {\n __typename\n id\n backup {\n ...backupMeta\n }\n project {\n ...projectFull\n }\n}\n \n\n fragment backupMeta on Backup {\n __typename\n id\n name\n path\n size\n status\n createdAt\n updatedAt\n project {\n id\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n \n\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n \n\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 \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 internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22466
22642
|
export declare const BrowserDocument = "\n query browser {\n browser {\n ...browserFull\n }\n}\n \n fragment browserFull on Browser {\n __typename\n id\n installedAt\n latest\n path\n size\n version\n}\n ";
|
|
22467
22643
|
export declare const DeleteBrowserDocument = "\n mutation deleteBrowser {\n deleteBrowser {\n deletedId\n }\n}\n ";
|
|
22468
22644
|
export declare const InstallBrowserDocument = "\n mutation installBrowser {\n installBrowser {\n browser {\n ...browserFull\n }\n error {\n ... on UnsupportedPlatformUserError {\n ...unsupportedPlatformUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\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 \n\n fragment unsupportedPlatformUserErrorFull on UnsupportedPlatformUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
@@ -22515,17 +22691,18 @@ export declare const FilterPresetDocument = "\n query filterPreset($id: ID!)
|
|
|
22515
22691
|
export declare const CreatedFilterPresetDocument = "\n subscription createdFilterPreset {\n createdFilterPreset {\n filterEdge {\n ...filterPresetEdgeFull\n }\n }\n}\n \n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n \n\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
22516
22692
|
export declare const UpdatedFilterPresetDocument = "\n subscription updatedFilterPreset {\n updatedFilterPreset {\n filterEdge {\n ...filterPresetEdgeFull\n }\n }\n}\n \n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n \n\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
22517
22693
|
export declare const DeletedFilterPresetDocument = "\n subscription deletedFilterPreset {\n deletedFilterPreset {\n deletedFilterId\n }\n}\n ";
|
|
22518
|
-
export declare const
|
|
22519
|
-
export declare const
|
|
22520
|
-
export declare const
|
|
22694
|
+
export declare const GetFindingDocument = "\n query getFinding($id: ID!) {\n finding(id: $id) {\n ...findingFull\n }\n}\n \n fragment findingFull on Finding {\n ...findingMeta\n description\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 ";
|
|
22695
|
+
export declare const GetFindingsBeforeDocument = "\n query getFindingsBefore($before: String!, $last: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(before: $before, last: $last, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
22696
|
+
export declare const GetFindingsAfterDocument = "\n query getFindingsAfter($after: String!, $first: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(after: $after, first: $first, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
22697
|
+
export declare const GetFindingsByOffsetDocument = "\n query getFindingsByOffset($offset: Int!, $limit: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findingsByOffset(offset: $offset, limit: $limit, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
22521
22698
|
export declare const GetFindingsCountDocument = "\n query getFindingsCount($filter: FilterClauseFindingInput!) {\n findings(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
22522
22699
|
export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
|
|
22523
|
-
export declare const CreatedFindingDocument = "\n subscription createdFinding($order: FindingOrderInput) {\n createdFinding {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n
|
|
22700
|
+
export declare const CreatedFindingDocument = "\n subscription createdFinding($order: FindingOrderInput) {\n createdFinding {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 ";
|
|
22524
22701
|
export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
|
|
22525
|
-
export declare const UpdatedFindingsDocument = "\n subscription updatedFindings($order: FindingOrderInput) {\n updatedFindings {\n findings {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n
|
|
22526
|
-
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, input: $input) {\n finding {\n ...
|
|
22702
|
+
export declare const UpdatedFindingsDocument = "\n subscription updatedFindings($order: FindingOrderInput) {\n updatedFindings {\n findings {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 ";
|
|
22703
|
+
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, input: $input) {\n finding {\n ...findingFull\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingFull on Finding {\n ...findingMeta\n description\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 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 ";
|
|
22527
22704
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput!) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
|
|
22528
|
-
export declare const UpdateFindingDocument = "\n mutation updateFinding($id: ID!, $input: UpdateFindingInput!) {\n updateFinding(id: $id, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n
|
|
22705
|
+
export declare const UpdateFindingDocument = "\n mutation updateFinding($id: ID!, $input: UpdateFindingInput!) {\n updateFinding(id: $id, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 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 ";
|
|
22529
22706
|
export declare const ExportFindingsDocument = "\n mutation exportFindings($input: ExportFindingsInput!) {\n exportFindings(input: $input) {\n export {\n ...dataExportOnDemandMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 ";
|
|
22530
22707
|
export declare const InterceptEntriesDocument = "\n query interceptEntries($after: String, $first: Int, $before: String, $last: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntries(\n after: $after\n first: $first\n before: $before\n last: $last\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
22531
22708
|
export declare const InterceptEntriesByOffsetDocument = "\n query interceptEntriesByOffset($limit: Int, $offset: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntriesByOffset(\n limit: $limit\n offset: $offset\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n 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 pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
@@ -22585,16 +22762,16 @@ export declare const CreatedPluginPackageDocument = "\n subscription createdP
|
|
|
22585
22762
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
22586
22763
|
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 ";
|
|
22587
22764
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
22588
|
-
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22589
|
-
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 temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22765
|
+
export declare const CreatedProjectDocument = "\n subscription createdProject {\n createdProject {\n project {\n ...projectFull\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22766
|
+
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 temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22590
22767
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
22591
|
-
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 temporary\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 ";
|
|
22592
|
-
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 temporary\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 ";
|
|
22768
|
+
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 temporary\n size\n createdAt\n updatedAt\n readOnly\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 ";
|
|
22769
|
+
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 temporary\n size\n createdAt\n updatedAt\n readOnly\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 ";
|
|
22593
22770
|
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 ";
|
|
22594
|
-
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 UnknownIdUserError {\n ...unknownIdUserErrorFull\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 temporary\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 unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22595
|
-
export declare const PersistProjectDocument = "\n mutation persistProject($id: ID!) {\n persistProject(id: $id) {\n project {\n ...projectFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22596
|
-
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 temporary\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 ";
|
|
22597
|
-
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 temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
22771
|
+
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 UnknownIdUserError {\n ...unknownIdUserErrorFull\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 temporary\n size\n createdAt\n updatedAt\n readOnly\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 unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22772
|
+
export declare const PersistProjectDocument = "\n mutation persistProject($id: ID!) {\n persistProject(id: $id) {\n project {\n ...projectFull\n }\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22773
|
+
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 temporary\n size\n createdAt\n updatedAt\n readOnly\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 ";
|
|
22774
|
+
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 temporary\n size\n createdAt\n updatedAt\n readOnly\n backups {\n id\n }\n}\n ";
|
|
22598
22775
|
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 ";
|
|
22599
22776
|
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 request {\n ...requestFull\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 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 ";
|
|
22600
22777
|
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 }\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 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 ";
|
|
@@ -22823,6 +23000,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22823
23000
|
createdFilterPreset(variables?: CreatedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<CreatedFilterPresetSubscription>;
|
|
22824
23001
|
updatedFilterPreset(variables?: UpdatedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<UpdatedFilterPresetSubscription>;
|
|
22825
23002
|
deletedFilterPreset(variables?: DeletedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<DeletedFilterPresetSubscription>;
|
|
23003
|
+
getFinding(variables: GetFindingQueryVariables, options?: C): Promise<GetFindingQuery>;
|
|
22826
23004
|
getFindingsBefore(variables: GetFindingsBeforeQueryVariables, options?: C): Promise<GetFindingsBeforeQuery>;
|
|
22827
23005
|
getFindingsAfter(variables: GetFindingsAfterQueryVariables, options?: C): Promise<GetFindingsAfterQuery>;
|
|
22828
23006
|
getFindingsByOffset(variables: GetFindingsByOffsetQueryVariables, options?: C): Promise<GetFindingsByOffsetQuery>;
|
package/src/types/index.d.ts
CHANGED
|
@@ -14,4 +14,5 @@ export type { Scope } from "./types/scopes";
|
|
|
14
14
|
export type { EnvironmentVariable } from "./types/environment";
|
|
15
15
|
export type { Workflow, WorkflowKind, OnCreatedWorkflowCallback, OnUpdatedWorkflowCallback, OnDeletedWorkflowCallback, } from "./types/workflows";
|
|
16
16
|
export type { ListenerHandle } from "./types/utils";
|
|
17
|
+
export type { AIProvider } from "./types/ai";
|
|
17
18
|
export type { API } from "./sdks";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { AIProvider } from "../types/ai";
|
|
2
|
+
/**
|
|
3
|
+
* Utilities to interact with AI.
|
|
4
|
+
* @category AI
|
|
5
|
+
*/
|
|
6
|
+
export type AiSDK = {
|
|
7
|
+
/**
|
|
8
|
+
* Creates a new AI provider instance that can be used with the [ai](https://ai-sdk.dev/) library.
|
|
9
|
+
* @returns A provider instance compatible with the [ai](https://ai-sdk.dev/) library.
|
|
10
|
+
*/
|
|
11
|
+
createProvider: () => AIProvider;
|
|
12
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import type { Extension } from "@codemirror/state";
|
|
2
|
+
import type { RequestViewModeOptions } from "../types/request";
|
|
3
|
+
/**
|
|
4
|
+
* Utilities to interact with the Automate page.
|
|
5
|
+
* @category Automate
|
|
6
|
+
*/
|
|
7
|
+
export type AutomateSDK = {
|
|
8
|
+
/**
|
|
9
|
+
* Add an extension to the request editor.
|
|
10
|
+
* @param extension The extension to add.
|
|
11
|
+
*/
|
|
12
|
+
addRequestEditorExtension: (extension: Extension) => void;
|
|
13
|
+
/**
|
|
14
|
+
* Add a custom request view mode.
|
|
15
|
+
* @param options The view mode options.
|
|
16
|
+
*/
|
|
17
|
+
addRequestViewMode: (options: RequestViewModeOptions) => void;
|
|
18
|
+
};
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import type { Extension } from "@codemirror/state";
|
|
1
2
|
import { type Finding } from "../types/findings";
|
|
3
|
+
import type { RequestViewModeOptions } from "../types/request";
|
|
2
4
|
import type { ID } from "../types/utils";
|
|
3
5
|
/**
|
|
4
6
|
* Utilities to interact with findings
|
|
@@ -21,4 +23,14 @@ export type FindingsSDK = {
|
|
|
21
23
|
reporter: string;
|
|
22
24
|
dedupeKey?: string;
|
|
23
25
|
}) => Promise<Finding | undefined>;
|
|
26
|
+
/**
|
|
27
|
+
* Add an extension to the request editor.
|
|
28
|
+
* @param extension The extension to add.
|
|
29
|
+
*/
|
|
30
|
+
addRequestEditorExtension: (extension: Extension) => void;
|
|
31
|
+
/**
|
|
32
|
+
* Add a custom request view mode.
|
|
33
|
+
* @param options The view mode options.
|
|
34
|
+
*/
|
|
35
|
+
addRequestViewMode: (options: RequestViewModeOptions) => void;
|
|
24
36
|
};
|
|
@@ -41,4 +41,9 @@ export type HTTPHistorySDK = {
|
|
|
41
41
|
* @param options The view mode options.
|
|
42
42
|
*/
|
|
43
43
|
addRequestViewMode: (options: RequestViewModeOptions) => void;
|
|
44
|
+
/**
|
|
45
|
+
* Scrolls the HTTP History table to a specific entry.
|
|
46
|
+
* @param id The ID of the entry to scroll to.
|
|
47
|
+
*/
|
|
48
|
+
scrollTo: (id: ID) => void;
|
|
44
49
|
};
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import type { Sdk as GraphqlSDK } from "../__generated__/graphql-sdk";
|
|
2
2
|
import { type BackendEndpoints, type BackendEvents } from "../types/backend";
|
|
3
|
+
import type { AiSDK } from "./ai";
|
|
3
4
|
import type { AssetsSDK } from "./assets";
|
|
5
|
+
import type { AutomateSDK } from "./automate";
|
|
4
6
|
import type { BackendSDK } from "./backend";
|
|
5
7
|
import type { CommandPaletteSDK } from "./commandPalette";
|
|
6
8
|
import type { CommandsSDK } from "./commands";
|
|
@@ -42,6 +44,10 @@ export type API<T extends BackendEndpoints = Record<string, never>, E extends Ba
|
|
|
42
44
|
* Utilities to create UI components.
|
|
43
45
|
*/
|
|
44
46
|
ui: UISDK;
|
|
47
|
+
/**
|
|
48
|
+
* Utilities to interact with AI.
|
|
49
|
+
*/
|
|
50
|
+
ai: AiSDK;
|
|
45
51
|
/**
|
|
46
52
|
* Utilities to interact with scopes
|
|
47
53
|
*/
|
|
@@ -98,6 +104,10 @@ export type API<T extends BackendEndpoints = Record<string, never>, E extends Ba
|
|
|
98
104
|
* Utilities to interact with the HTTP History page.
|
|
99
105
|
*/
|
|
100
106
|
httpHistory: HTTPHistorySDK;
|
|
107
|
+
/**
|
|
108
|
+
* Utilities to interact with the Automate page.
|
|
109
|
+
*/
|
|
110
|
+
automate: AutomateSDK;
|
|
101
111
|
/**
|
|
102
112
|
* Utilities to interact with the Files page.
|
|
103
113
|
*/
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { RequestViewModeOptions } from "../types/request";
|
|
1
2
|
import type { ID } from "../types/utils";
|
|
2
3
|
/**
|
|
3
4
|
* Utilities to interact with the Intercept page.
|
|
@@ -14,4 +15,9 @@ export type InterceptSDK = {
|
|
|
14
15
|
* @param scopeId The ID of the scope to set.
|
|
15
16
|
*/
|
|
16
17
|
setScope: (id: ID | undefined) => void;
|
|
18
|
+
/**
|
|
19
|
+
* Add a custom request view mode.
|
|
20
|
+
* @param options The view mode options.
|
|
21
|
+
*/
|
|
22
|
+
addRequestViewMode: (options: RequestViewModeOptions) => void;
|
|
17
23
|
};
|
|
@@ -36,4 +36,9 @@ export type SearchSDK = {
|
|
|
36
36
|
* @param options The view mode options.
|
|
37
37
|
*/
|
|
38
38
|
addRequestViewMode: (options: RequestViewModeOptions) => void;
|
|
39
|
+
/**
|
|
40
|
+
* Scrolls the Search table to a specific request.
|
|
41
|
+
* @param id The ID of the request to scroll to.
|
|
42
|
+
*/
|
|
43
|
+
scrollTo: (id: ID) => void;
|
|
39
44
|
};
|
|
@@ -117,6 +117,11 @@ export type SendRequestOptions = {
|
|
|
117
117
|
* Defaults to true.
|
|
118
118
|
*/
|
|
119
119
|
updateContentLength?: boolean;
|
|
120
|
+
/**
|
|
121
|
+
* Whether to force close the connection by setting Connection: close header.
|
|
122
|
+
* Defaults to true.
|
|
123
|
+
*/
|
|
124
|
+
connectionClose?: boolean;
|
|
120
125
|
/**
|
|
121
126
|
* Whether to overwrite the editor's draft content.
|
|
122
127
|
* If true, draft content will be overwritten with the new request.
|