@caido/sdk-frontend 0.51.2-beta.2 → 0.51.2-beta.4
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
|
@@ -2394,6 +2394,7 @@ export type Project = {
|
|
|
2394
2394
|
id: Scalars["ID"]["output"];
|
|
2395
2395
|
name: Scalars["String"]["output"];
|
|
2396
2396
|
path: Scalars["String"]["output"];
|
|
2397
|
+
readOnly: Scalars["Boolean"]["output"];
|
|
2397
2398
|
size: Scalars["Int"]["output"];
|
|
2398
2399
|
status: ProjectStatus;
|
|
2399
2400
|
temporary: Scalars["Boolean"]["output"];
|
|
@@ -6857,6 +6858,7 @@ export type RestoreBackupTaskMetaFragment = {
|
|
|
6857
6858
|
size: number;
|
|
6858
6859
|
createdAt: Date;
|
|
6859
6860
|
updatedAt: Date;
|
|
6861
|
+
readOnly: boolean;
|
|
6860
6862
|
backups: Array<{
|
|
6861
6863
|
id: string;
|
|
6862
6864
|
}>;
|
|
@@ -6931,6 +6933,7 @@ export type FinishedRestoreBackupTaskSuccessFullFragment = {
|
|
|
6931
6933
|
size: number;
|
|
6932
6934
|
createdAt: Date;
|
|
6933
6935
|
updatedAt: Date;
|
|
6936
|
+
readOnly: boolean;
|
|
6934
6937
|
backups: Array<{
|
|
6935
6938
|
id: string;
|
|
6936
6939
|
}>;
|
|
@@ -7036,6 +7039,7 @@ export type RestoreBackupTasksQuery = {
|
|
|
7036
7039
|
size: number;
|
|
7037
7040
|
createdAt: Date;
|
|
7038
7041
|
updatedAt: Date;
|
|
7042
|
+
readOnly: boolean;
|
|
7039
7043
|
backups: Array<{
|
|
7040
7044
|
id: string;
|
|
7041
7045
|
}>;
|
|
@@ -7164,6 +7168,7 @@ export type RestoreBackupFromFileMutation = {
|
|
|
7164
7168
|
size: number;
|
|
7165
7169
|
createdAt: Date;
|
|
7166
7170
|
updatedAt: Date;
|
|
7171
|
+
readOnly: boolean;
|
|
7167
7172
|
backups: Array<{
|
|
7168
7173
|
id: string;
|
|
7169
7174
|
}>;
|
|
@@ -7216,6 +7221,7 @@ export type RestoreBackupMutation = {
|
|
|
7216
7221
|
size: number;
|
|
7217
7222
|
createdAt: Date;
|
|
7218
7223
|
updatedAt: Date;
|
|
7224
|
+
readOnly: boolean;
|
|
7219
7225
|
backups: Array<{
|
|
7220
7226
|
id: string;
|
|
7221
7227
|
}>;
|
|
@@ -7402,6 +7408,7 @@ export type StartedRestoreBackupTaskSubscription = {
|
|
|
7402
7408
|
size: number;
|
|
7403
7409
|
createdAt: Date;
|
|
7404
7410
|
updatedAt: Date;
|
|
7411
|
+
readOnly: boolean;
|
|
7405
7412
|
backups: Array<{
|
|
7406
7413
|
id: string;
|
|
7407
7414
|
}>;
|
|
@@ -7460,6 +7467,7 @@ export type FinishedRetoreBackupTaskSubscription = {
|
|
|
7460
7467
|
size: number;
|
|
7461
7468
|
createdAt: Date;
|
|
7462
7469
|
updatedAt: Date;
|
|
7470
|
+
readOnly: boolean;
|
|
7463
7471
|
backups: Array<{
|
|
7464
7472
|
id: string;
|
|
7465
7473
|
}>;
|
|
@@ -8823,7 +8831,6 @@ export type DeletedFilterPresetSubscription = {
|
|
|
8823
8831
|
export type FindingMetaFragment = {
|
|
8824
8832
|
id: string;
|
|
8825
8833
|
title: string;
|
|
8826
|
-
description?: string | undefined | null;
|
|
8827
8834
|
reporter: string;
|
|
8828
8835
|
host: string;
|
|
8829
8836
|
path: string;
|
|
@@ -8869,7 +8876,6 @@ export type FindingEdgeMetaFragment = {
|
|
|
8869
8876
|
node: {
|
|
8870
8877
|
id: string;
|
|
8871
8878
|
title: string;
|
|
8872
|
-
description?: string | undefined | null;
|
|
8873
8879
|
reporter: string;
|
|
8874
8880
|
host: string;
|
|
8875
8881
|
path: string;
|
|
@@ -8911,6 +8917,99 @@ export type FindingEdgeMetaFragment = {
|
|
|
8911
8917
|
};
|
|
8912
8918
|
};
|
|
8913
8919
|
};
|
|
8920
|
+
export type FindingFullFragment = {
|
|
8921
|
+
description?: string | undefined | null;
|
|
8922
|
+
id: string;
|
|
8923
|
+
title: string;
|
|
8924
|
+
reporter: string;
|
|
8925
|
+
host: string;
|
|
8926
|
+
path: string;
|
|
8927
|
+
createdAt: Date;
|
|
8928
|
+
request: {
|
|
8929
|
+
__typename: "Request";
|
|
8930
|
+
id: string;
|
|
8931
|
+
host: string;
|
|
8932
|
+
port: number;
|
|
8933
|
+
path: string;
|
|
8934
|
+
query: string;
|
|
8935
|
+
method: string;
|
|
8936
|
+
edited: boolean;
|
|
8937
|
+
isTls: boolean;
|
|
8938
|
+
sni?: string | undefined | null;
|
|
8939
|
+
length: number;
|
|
8940
|
+
alteration: Alteration;
|
|
8941
|
+
fileExtension?: string | undefined | null;
|
|
8942
|
+
source: Source;
|
|
8943
|
+
createdAt: Date;
|
|
8944
|
+
metadata: {
|
|
8945
|
+
__typename: "RequestMetadata";
|
|
8946
|
+
id: string;
|
|
8947
|
+
color?: string | undefined | null;
|
|
8948
|
+
};
|
|
8949
|
+
response?: {
|
|
8950
|
+
__typename: "Response";
|
|
8951
|
+
id: string;
|
|
8952
|
+
statusCode: number;
|
|
8953
|
+
roundtripTime: number;
|
|
8954
|
+
length: number;
|
|
8955
|
+
createdAt: Date;
|
|
8956
|
+
alteration: Alteration;
|
|
8957
|
+
edited: boolean;
|
|
8958
|
+
} | undefined | null;
|
|
8959
|
+
stream?: {
|
|
8960
|
+
id: string;
|
|
8961
|
+
} | undefined | null;
|
|
8962
|
+
};
|
|
8963
|
+
};
|
|
8964
|
+
export type GetFindingQueryVariables = Exact<{
|
|
8965
|
+
id: Scalars["ID"]["input"];
|
|
8966
|
+
}>;
|
|
8967
|
+
export type GetFindingQuery = {
|
|
8968
|
+
finding?: {
|
|
8969
|
+
description?: string | undefined | null;
|
|
8970
|
+
id: string;
|
|
8971
|
+
title: string;
|
|
8972
|
+
reporter: string;
|
|
8973
|
+
host: string;
|
|
8974
|
+
path: string;
|
|
8975
|
+
createdAt: Date;
|
|
8976
|
+
request: {
|
|
8977
|
+
__typename: "Request";
|
|
8978
|
+
id: string;
|
|
8979
|
+
host: string;
|
|
8980
|
+
port: number;
|
|
8981
|
+
path: string;
|
|
8982
|
+
query: string;
|
|
8983
|
+
method: string;
|
|
8984
|
+
edited: boolean;
|
|
8985
|
+
isTls: boolean;
|
|
8986
|
+
sni?: string | undefined | null;
|
|
8987
|
+
length: number;
|
|
8988
|
+
alteration: Alteration;
|
|
8989
|
+
fileExtension?: string | undefined | null;
|
|
8990
|
+
source: Source;
|
|
8991
|
+
createdAt: Date;
|
|
8992
|
+
metadata: {
|
|
8993
|
+
__typename: "RequestMetadata";
|
|
8994
|
+
id: string;
|
|
8995
|
+
color?: string | undefined | null;
|
|
8996
|
+
};
|
|
8997
|
+
response?: {
|
|
8998
|
+
__typename: "Response";
|
|
8999
|
+
id: string;
|
|
9000
|
+
statusCode: number;
|
|
9001
|
+
roundtripTime: number;
|
|
9002
|
+
length: number;
|
|
9003
|
+
createdAt: Date;
|
|
9004
|
+
alteration: Alteration;
|
|
9005
|
+
edited: boolean;
|
|
9006
|
+
} | undefined | null;
|
|
9007
|
+
stream?: {
|
|
9008
|
+
id: string;
|
|
9009
|
+
} | undefined | null;
|
|
9010
|
+
};
|
|
9011
|
+
} | undefined | null;
|
|
9012
|
+
};
|
|
8914
9013
|
export type GetFindingsBeforeQueryVariables = Exact<{
|
|
8915
9014
|
before: Scalars["String"]["input"];
|
|
8916
9015
|
last: Scalars["Int"]["input"];
|
|
@@ -8925,7 +9024,6 @@ export type GetFindingsBeforeQuery = {
|
|
|
8925
9024
|
node: {
|
|
8926
9025
|
id: string;
|
|
8927
9026
|
title: string;
|
|
8928
|
-
description?: string | undefined | null;
|
|
8929
9027
|
reporter: string;
|
|
8930
9028
|
host: string;
|
|
8931
9029
|
path: string;
|
|
@@ -8990,7 +9088,6 @@ export type GetFindingsAfterQuery = {
|
|
|
8990
9088
|
node: {
|
|
8991
9089
|
id: string;
|
|
8992
9090
|
title: string;
|
|
8993
|
-
description?: string | undefined | null;
|
|
8994
9091
|
reporter: string;
|
|
8995
9092
|
host: string;
|
|
8996
9093
|
path: string;
|
|
@@ -9055,7 +9152,6 @@ export type GetFindingsByOffsetQuery = {
|
|
|
9055
9152
|
node: {
|
|
9056
9153
|
id: string;
|
|
9057
9154
|
title: string;
|
|
9058
|
-
description?: string | undefined | null;
|
|
9059
9155
|
reporter: string;
|
|
9060
9156
|
host: string;
|
|
9061
9157
|
path: string;
|
|
@@ -9135,7 +9231,6 @@ export type CreatedFindingSubscription = {
|
|
|
9135
9231
|
node: {
|
|
9136
9232
|
id: string;
|
|
9137
9233
|
title: string;
|
|
9138
|
-
description?: string | undefined | null;
|
|
9139
9234
|
reporter: string;
|
|
9140
9235
|
host: string;
|
|
9141
9236
|
path: string;
|
|
@@ -9200,7 +9295,6 @@ export type UpdatedFindingsSubscription = {
|
|
|
9200
9295
|
node: {
|
|
9201
9296
|
id: string;
|
|
9202
9297
|
title: string;
|
|
9203
|
-
description?: string | undefined | null;
|
|
9204
9298
|
reporter: string;
|
|
9205
9299
|
host: string;
|
|
9206
9300
|
path: string;
|
|
@@ -9252,9 +9346,9 @@ export type CreateFindingMutationVariables = Exact<{
|
|
|
9252
9346
|
export type CreateFindingMutation = {
|
|
9253
9347
|
createFinding: {
|
|
9254
9348
|
finding?: {
|
|
9349
|
+
description?: string | undefined | null;
|
|
9255
9350
|
id: string;
|
|
9256
9351
|
title: string;
|
|
9257
|
-
description?: string | undefined | null;
|
|
9258
9352
|
reporter: string;
|
|
9259
9353
|
host: string;
|
|
9260
9354
|
path: string;
|
|
@@ -9322,7 +9416,6 @@ export type UpdateFindingMutation = {
|
|
|
9322
9416
|
finding?: {
|
|
9323
9417
|
id: string;
|
|
9324
9418
|
title: string;
|
|
9325
|
-
description?: string | undefined | null;
|
|
9326
9419
|
reporter: string;
|
|
9327
9420
|
host: string;
|
|
9328
9421
|
path: string;
|
|
@@ -15871,6 +15964,7 @@ export type ProjectFullFragment = {
|
|
|
15871
15964
|
size: number;
|
|
15872
15965
|
createdAt: Date;
|
|
15873
15966
|
updatedAt: Date;
|
|
15967
|
+
readOnly: boolean;
|
|
15874
15968
|
backups: Array<{
|
|
15875
15969
|
id: string;
|
|
15876
15970
|
}>;
|
|
@@ -15887,6 +15981,7 @@ export type CurrentProjectFullFragment = {
|
|
|
15887
15981
|
size: number;
|
|
15888
15982
|
createdAt: Date;
|
|
15889
15983
|
updatedAt: Date;
|
|
15984
|
+
readOnly: boolean;
|
|
15890
15985
|
backups: Array<{
|
|
15891
15986
|
id: string;
|
|
15892
15987
|
}>;
|
|
@@ -15913,6 +16008,7 @@ export type CreatedProjectSubscription = {
|
|
|
15913
16008
|
size: number;
|
|
15914
16009
|
createdAt: Date;
|
|
15915
16010
|
updatedAt: Date;
|
|
16011
|
+
readOnly: boolean;
|
|
15916
16012
|
backups: Array<{
|
|
15917
16013
|
id: string;
|
|
15918
16014
|
}>;
|
|
@@ -15935,6 +16031,7 @@ export type UpdatedProjectSubscription = {
|
|
|
15935
16031
|
size: number;
|
|
15936
16032
|
createdAt: Date;
|
|
15937
16033
|
updatedAt: Date;
|
|
16034
|
+
readOnly: boolean;
|
|
15938
16035
|
backups: Array<{
|
|
15939
16036
|
id: string;
|
|
15940
16037
|
}>;
|
|
@@ -15965,6 +16062,7 @@ export type CreateProjectMutation = {
|
|
|
15965
16062
|
size: number;
|
|
15966
16063
|
createdAt: Date;
|
|
15967
16064
|
updatedAt: Date;
|
|
16065
|
+
readOnly: boolean;
|
|
15968
16066
|
backups: Array<{
|
|
15969
16067
|
id: string;
|
|
15970
16068
|
}>;
|
|
@@ -16004,6 +16102,7 @@ export type SelectProjectMutation = {
|
|
|
16004
16102
|
size: number;
|
|
16005
16103
|
createdAt: Date;
|
|
16006
16104
|
updatedAt: Date;
|
|
16105
|
+
readOnly: boolean;
|
|
16007
16106
|
backups: Array<{
|
|
16008
16107
|
id: string;
|
|
16009
16108
|
}>;
|
|
@@ -16065,6 +16164,7 @@ export type RenameProjectMutation = {
|
|
|
16065
16164
|
size: number;
|
|
16066
16165
|
createdAt: Date;
|
|
16067
16166
|
updatedAt: Date;
|
|
16167
|
+
readOnly: boolean;
|
|
16068
16168
|
backups: Array<{
|
|
16069
16169
|
id: string;
|
|
16070
16170
|
}>;
|
|
@@ -16099,6 +16199,7 @@ export type PersistProjectMutation = {
|
|
|
16099
16199
|
size: number;
|
|
16100
16200
|
createdAt: Date;
|
|
16101
16201
|
updatedAt: Date;
|
|
16202
|
+
readOnly: boolean;
|
|
16102
16203
|
backups: Array<{
|
|
16103
16204
|
id: string;
|
|
16104
16205
|
}>;
|
|
@@ -16133,6 +16234,7 @@ export type CurrentProjectQuery = {
|
|
|
16133
16234
|
size: number;
|
|
16134
16235
|
createdAt: Date;
|
|
16135
16236
|
updatedAt: Date;
|
|
16237
|
+
readOnly: boolean;
|
|
16136
16238
|
backups: Array<{
|
|
16137
16239
|
id: string;
|
|
16138
16240
|
}>;
|
|
@@ -16159,6 +16261,7 @@ export type ProjectsQuery = {
|
|
|
16159
16261
|
size: number;
|
|
16160
16262
|
createdAt: Date;
|
|
16161
16263
|
updatedAt: Date;
|
|
16264
|
+
readOnly: boolean;
|
|
16162
16265
|
backups: Array<{
|
|
16163
16266
|
id: string;
|
|
16164
16267
|
}>;
|
|
@@ -22258,7 +22361,7 @@ export declare const FinishedBackupTaskCancelledFullFragmentDoc = "\n fragmen
|
|
|
22258
22361
|
export declare const InternalUserErrorFullFragmentDoc = "\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n ";
|
|
22259
22362
|
export declare const BackupUserErrorFullFragmentDoc = "\n fragment backupUserErrorFull on BackupUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22260
22363
|
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 ";
|
|
22261
|
-
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 ";
|
|
22364
|
+
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 ";
|
|
22262
22365
|
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 ";
|
|
22263
22366
|
export declare const FinishedRestoreBackupTaskSuccessFullFragmentDoc = "\n fragment finishedRestoreBackupTaskSuccessFull on FinishedRestoreBackupTaskSuccess {\n __typename\n task {\n ...restoreBackupTaskMeta\n }\n}\n ";
|
|
22264
22367
|
export declare const FinishedRestoreBackupTaskCancelledFullFragmentDoc = "\n fragment finishedRestoreBackupTaskCancelledFull on FinishedRestoreBackupTaskCancelled {\n __typename\n taskId\n}\n ";
|
|
@@ -22299,8 +22402,9 @@ export declare const DataExportTaskMetaFieldsFragmentDoc = "\n fragment dataE
|
|
|
22299
22402
|
export declare const DataExportTaskMetaFragmentDoc = "\n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n ";
|
|
22300
22403
|
export declare const FilterPresetFullFragmentDoc = "\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
22301
22404
|
export declare const FilterPresetEdgeFullFragmentDoc = "\n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n ";
|
|
22302
|
-
export declare const FindingMetaFragmentDoc = "\n fragment findingMeta on Finding {\n id\n title\n
|
|
22405
|
+
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 ";
|
|
22303
22406
|
export declare const FindingEdgeMetaFragmentDoc = "\n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n ";
|
|
22407
|
+
export declare const FindingFullFragmentDoc = "\n fragment findingFull on Finding {\n ...findingMeta\n description\n}\n ";
|
|
22304
22408
|
export declare const InterceptEntryMetaFragmentDoc = "\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
22305
22409
|
export declare const RequestFullFieldsFragmentDoc = "\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
22306
22410
|
export declare const RequestFullFragmentDoc = "\n fragment requestFull on Request {\n ...requestFullFields\n}\n ";
|
|
@@ -22449,12 +22553,12 @@ export declare const DeletedAutomateSessionDocument = "\n subscription delete
|
|
|
22449
22553
|
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 ";
|
|
22450
22554
|
export declare const BackupUriDocument = "\n query backupUri($id: ID!) {\n backup(id: $id) {\n downloadUri\n }\n}\n ";
|
|
22451
22555
|
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 ";
|
|
22452
|
-
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 ";
|
|
22556
|
+
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 ";
|
|
22453
22557
|
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 ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\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 \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n ";
|
|
22454
22558
|
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 ";
|
|
22455
22559
|
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 ";
|
|
22456
|
-
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 ";
|
|
22457
|
-
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 ";
|
|
22560
|
+
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 ";
|
|
22561
|
+
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 ";
|
|
22458
22562
|
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 ";
|
|
22459
22563
|
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 ";
|
|
22460
22564
|
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 ";
|
|
@@ -22462,8 +22566,8 @@ export declare const UpdatedBackupDocument = "\n subscription updatedBackup {
|
|
|
22462
22566
|
export declare const DeletedBackupDocument = "\n subscription deletedBackup {\n deletedBackup {\n deletedBackupId\n }\n}\n ";
|
|
22463
22567
|
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 ";
|
|
22464
22568
|
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 ";
|
|
22465
|
-
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 ";
|
|
22466
|
-
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 ";
|
|
22569
|
+
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 ";
|
|
22570
|
+
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 ";
|
|
22467
22571
|
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 ";
|
|
22468
22572
|
export declare const DeleteBrowserDocument = "\n mutation deleteBrowser {\n deleteBrowser {\n deletedId\n }\n}\n ";
|
|
22469
22573
|
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 ";
|
|
@@ -22516,17 +22620,18 @@ export declare const FilterPresetDocument = "\n query filterPreset($id: ID!)
|
|
|
22516
22620
|
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 ";
|
|
22517
22621
|
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 ";
|
|
22518
22622
|
export declare const DeletedFilterPresetDocument = "\n subscription deletedFilterPreset {\n deletedFilterPreset {\n deletedFilterId\n }\n}\n ";
|
|
22519
|
-
export declare const
|
|
22520
|
-
export declare const
|
|
22521
|
-
export declare const
|
|
22623
|
+
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 ";
|
|
22624
|
+
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 ";
|
|
22625
|
+
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 ";
|
|
22626
|
+
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 ";
|
|
22522
22627
|
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 ";
|
|
22523
22628
|
export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
|
|
22524
|
-
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
|
|
22629
|
+
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 ";
|
|
22525
22630
|
export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
|
|
22526
|
-
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
|
|
22527
|
-
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, input: $input) {\n finding {\n ...
|
|
22631
|
+
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 ";
|
|
22632
|
+
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 ";
|
|
22528
22633
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput!) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
|
|
22529
|
-
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
|
|
22634
|
+
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 ";
|
|
22530
22635
|
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 ";
|
|
22531
22636
|
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 ";
|
|
22532
22637
|
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 ";
|
|
@@ -22586,16 +22691,16 @@ export declare const CreatedPluginPackageDocument = "\n subscription createdP
|
|
|
22586
22691
|
export declare const DeletedPluginPackageDocument = "\n subscription deletedPluginPackage {\n deletedPluginPackage {\n deletedPackageId\n }\n}\n ";
|
|
22587
22692
|
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 ";
|
|
22588
22693
|
export declare const CreatedPluginEventDocument = "\n subscription createdPluginEvent {\n createdPluginEvent {\n pluginId\n eventArgs\n eventName\n }\n}\n ";
|
|
22589
|
-
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 ";
|
|
22590
|
-
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 ";
|
|
22694
|
+
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 ";
|
|
22695
|
+
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 ";
|
|
22591
22696
|
export declare const DeletedProjectDocument = "\n subscription deletedProject {\n deletedProject {\n deletedProjectId\n }\n}\n ";
|
|
22592
|
-
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 ";
|
|
22593
|
-
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 ";
|
|
22697
|
+
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 ";
|
|
22698
|
+
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 ";
|
|
22594
22699
|
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 ";
|
|
22595
|
-
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 ";
|
|
22596
|
-
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 ";
|
|
22597
|
-
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 ";
|
|
22598
|
-
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 ";
|
|
22700
|
+
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 ";
|
|
22701
|
+
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 ";
|
|
22702
|
+
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 ";
|
|
22703
|
+
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 ";
|
|
22599
22704
|
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 ";
|
|
22600
22705
|
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 ";
|
|
22601
22706
|
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 ";
|
|
@@ -22824,6 +22929,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22824
22929
|
createdFilterPreset(variables?: CreatedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<CreatedFilterPresetSubscription>;
|
|
22825
22930
|
updatedFilterPreset(variables?: UpdatedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<UpdatedFilterPresetSubscription>;
|
|
22826
22931
|
deletedFilterPreset(variables?: DeletedFilterPresetSubscriptionVariables, options?: C): AsyncIterable<DeletedFilterPresetSubscription>;
|
|
22932
|
+
getFinding(variables: GetFindingQueryVariables, options?: C): Promise<GetFindingQuery>;
|
|
22827
22933
|
getFindingsBefore(variables: GetFindingsBeforeQueryVariables, options?: C): Promise<GetFindingsBeforeQuery>;
|
|
22828
22934
|
getFindingsAfter(variables: GetFindingsAfterQueryVariables, options?: C): Promise<GetFindingsAfterQuery>;
|
|
22829
22935
|
getFindingsByOffset(variables: GetFindingsByOffsetQueryVariables, options?: C): Promise<GetFindingsByOffsetQuery>;
|