@caido/sdk-frontend 0.48.2-beta.7 → 0.48.2-beta.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1098,6 +1098,13 @@ export type DeleteEnvironmentPayload = {
|
|
|
1098
1098
|
export type DeleteFilterPresetPayload = {
|
|
1099
1099
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1100
1100
|
};
|
|
1101
|
+
export type DeleteFindingsInput = {
|
|
1102
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1103
|
+
reporter?: never;
|
|
1104
|
+
} | {
|
|
1105
|
+
ids?: never;
|
|
1106
|
+
reporter: Scalars["String"]["input"];
|
|
1107
|
+
};
|
|
1101
1108
|
export type DeleteFindingsPayload = {
|
|
1102
1109
|
deletedIds?: Maybe<Array<Scalars["ID"]["output"]>>;
|
|
1103
1110
|
};
|
|
@@ -1304,6 +1311,7 @@ export type Finding = {
|
|
|
1304
1311
|
createdAt: Scalars["Timestamp"]["output"];
|
|
1305
1312
|
dedupeKey?: Maybe<Scalars["String"]["output"]>;
|
|
1306
1313
|
description?: Maybe<Scalars["String"]["output"]>;
|
|
1314
|
+
hidden: Scalars["Boolean"]["output"];
|
|
1307
1315
|
host: Scalars["String"]["output"];
|
|
1308
1316
|
id: Scalars["ID"]["output"];
|
|
1309
1317
|
path: Scalars["String"]["output"];
|
|
@@ -1422,6 +1430,16 @@ export type GuestUser = {
|
|
|
1422
1430
|
plugins: Array<PluginFrontend>;
|
|
1423
1431
|
settings?: Maybe<UserSettings>;
|
|
1424
1432
|
};
|
|
1433
|
+
export type HideFindingsInput = {
|
|
1434
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1435
|
+
reporter?: never;
|
|
1436
|
+
} | {
|
|
1437
|
+
ids?: never;
|
|
1438
|
+
reporter: Scalars["String"]["input"];
|
|
1439
|
+
};
|
|
1440
|
+
export type HideFindingsPayload = {
|
|
1441
|
+
findings?: Maybe<Array<Finding>>;
|
|
1442
|
+
};
|
|
1425
1443
|
export type HostedFile = {
|
|
1426
1444
|
createdAt: Scalars["DateTime"]["output"];
|
|
1427
1445
|
id: Scalars["ID"]["output"];
|
|
@@ -1676,6 +1694,7 @@ export type MutationRoot = {
|
|
|
1676
1694
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
1677
1695
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
1678
1696
|
globalizeWorkflow: GlobalizeWorkflowPayload;
|
|
1697
|
+
hideFindings: HideFindingsPayload;
|
|
1679
1698
|
importCertificate: ImportCertificatePayload;
|
|
1680
1699
|
installBrowser: InstallBrowserPayload;
|
|
1681
1700
|
installPluginPackage: InstallPluginPackagePayload;
|
|
@@ -1746,6 +1765,7 @@ export type MutationRoot = {
|
|
|
1746
1765
|
updateDnsUpstream: UpdateDnsUpstreamPayload;
|
|
1747
1766
|
updateEnvironment: UpdateEnvironmentPayload;
|
|
1748
1767
|
updateFilterPreset: UpdateFilterPresetPayload;
|
|
1768
|
+
updateFinding: UpdateFindingPayload;
|
|
1749
1769
|
updateRequestMetadata: UpdateRequestMetadataPayload;
|
|
1750
1770
|
updateScope: UpdateScopePayload;
|
|
1751
1771
|
updateTamperRule: UpdateTamperRulePayload;
|
|
@@ -1853,7 +1873,7 @@ export type MutationRootDeleteFilterPresetArgs = {
|
|
|
1853
1873
|
id: Scalars["ID"]["input"];
|
|
1854
1874
|
};
|
|
1855
1875
|
export type MutationRootDeleteFindingsArgs = {
|
|
1856
|
-
|
|
1876
|
+
input?: InputMaybe<DeleteFindingsInput>;
|
|
1857
1877
|
};
|
|
1858
1878
|
export type MutationRootDeleteHostedFileArgs = {
|
|
1859
1879
|
id: Scalars["ID"]["input"];
|
|
@@ -1908,6 +1928,9 @@ export type MutationRootForwardInterceptMessageArgs = {
|
|
|
1908
1928
|
export type MutationRootGlobalizeWorkflowArgs = {
|
|
1909
1929
|
id: Scalars["ID"]["input"];
|
|
1910
1930
|
};
|
|
1931
|
+
export type MutationRootHideFindingsArgs = {
|
|
1932
|
+
input?: InputMaybe<HideFindingsInput>;
|
|
1933
|
+
};
|
|
1911
1934
|
export type MutationRootImportCertificateArgs = {
|
|
1912
1935
|
input: ImportCertificateInput;
|
|
1913
1936
|
};
|
|
@@ -2128,6 +2151,10 @@ export type MutationRootUpdateFilterPresetArgs = {
|
|
|
2128
2151
|
id: Scalars["ID"]["input"];
|
|
2129
2152
|
input: UpdateFilterPresetInput;
|
|
2130
2153
|
};
|
|
2154
|
+
export type MutationRootUpdateFindingArgs = {
|
|
2155
|
+
id: Scalars["ID"]["input"];
|
|
2156
|
+
input: UpdateFindingInput;
|
|
2157
|
+
};
|
|
2131
2158
|
export type MutationRootUpdateRequestMetadataArgs = {
|
|
2132
2159
|
id: Scalars["ID"]["input"];
|
|
2133
2160
|
input: UpdateRequestMetadataInput;
|
|
@@ -3419,6 +3446,7 @@ export type SubscriptionRoot = {
|
|
|
3419
3446
|
updatedEnvironment: UpdatedEnvironmentPayload;
|
|
3420
3447
|
updatedEnvironmentContext: UpdatedEnvironmentContextPayload;
|
|
3421
3448
|
updatedFilterPreset: UpdatedFilterPresetPayload;
|
|
3449
|
+
updatedFindings: UpdatedFindingsPayload;
|
|
3422
3450
|
updatedHostedFile: UpdatedHostedFilePayload;
|
|
3423
3451
|
updatedInterceptEntry: UpdatedInterceptEntryPayload;
|
|
3424
3452
|
updatedInterceptOptions: UpdatedInterceptOptionsPayload;
|
|
@@ -4041,6 +4069,16 @@ export type UpdateFilterPresetPayload = {
|
|
|
4041
4069
|
error?: Maybe<UpdateFilterPresetError>;
|
|
4042
4070
|
filter?: Maybe<FilterPreset>;
|
|
4043
4071
|
};
|
|
4072
|
+
export type UpdateFindingError = OtherUserError | UnknownIdUserError;
|
|
4073
|
+
export type UpdateFindingInput = {
|
|
4074
|
+
description?: InputMaybe<Scalars["String"]["input"]>;
|
|
4075
|
+
hidden?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
4076
|
+
title?: InputMaybe<Scalars["String"]["input"]>;
|
|
4077
|
+
};
|
|
4078
|
+
export type UpdateFindingPayload = {
|
|
4079
|
+
error?: Maybe<UpdateFindingError>;
|
|
4080
|
+
finding?: Maybe<Finding>;
|
|
4081
|
+
};
|
|
4044
4082
|
export type UpdateRequestMetadataInput = {
|
|
4045
4083
|
color?: InputMaybe<Scalars["String"]["input"]>;
|
|
4046
4084
|
};
|
|
@@ -4153,6 +4191,16 @@ export type UpdatedEnvironmentPayload = {
|
|
|
4153
4191
|
export type UpdatedFilterPresetPayload = {
|
|
4154
4192
|
filterEdge: FilterPresetEdge;
|
|
4155
4193
|
};
|
|
4194
|
+
export type UpdatedFindingPayload = {
|
|
4195
|
+
findingEdge: FindingEdge;
|
|
4196
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
4197
|
+
};
|
|
4198
|
+
export type UpdatedFindingPayloadFindingEdgeArgs = {
|
|
4199
|
+
order?: InputMaybe<FindingOrderInput>;
|
|
4200
|
+
};
|
|
4201
|
+
export type UpdatedFindingsPayload = {
|
|
4202
|
+
findings: Array<UpdatedFindingPayload>;
|
|
4203
|
+
};
|
|
4156
4204
|
export type UpdatedHostedFilePayload = {
|
|
4157
4205
|
hostedFile: HostedFile;
|
|
4158
4206
|
};
|
|
@@ -9075,6 +9123,63 @@ export type DeletedFindingsSubscription = {
|
|
|
9075
9123
|
snapshot: number;
|
|
9076
9124
|
};
|
|
9077
9125
|
};
|
|
9126
|
+
export type UpdatedFindingsSubscriptionVariables = Exact<{
|
|
9127
|
+
order?: InputMaybe<FindingOrderInput>;
|
|
9128
|
+
}>;
|
|
9129
|
+
export type UpdatedFindingsSubscription = {
|
|
9130
|
+
updatedFindings: {
|
|
9131
|
+
findings: Array<{
|
|
9132
|
+
snapshot: number;
|
|
9133
|
+
findingEdge: {
|
|
9134
|
+
cursor: string;
|
|
9135
|
+
node: {
|
|
9136
|
+
id: string;
|
|
9137
|
+
title: string;
|
|
9138
|
+
description?: string | undefined | null;
|
|
9139
|
+
reporter: string;
|
|
9140
|
+
host: string;
|
|
9141
|
+
path: string;
|
|
9142
|
+
createdAt: Date;
|
|
9143
|
+
request: {
|
|
9144
|
+
__typename: "Request";
|
|
9145
|
+
id: string;
|
|
9146
|
+
host: string;
|
|
9147
|
+
port: number;
|
|
9148
|
+
path: string;
|
|
9149
|
+
query: string;
|
|
9150
|
+
method: string;
|
|
9151
|
+
edited: boolean;
|
|
9152
|
+
isTls: boolean;
|
|
9153
|
+
sni?: string | undefined | null;
|
|
9154
|
+
length: number;
|
|
9155
|
+
alteration: Alteration;
|
|
9156
|
+
fileExtension?: string | undefined | null;
|
|
9157
|
+
source: Source;
|
|
9158
|
+
createdAt: Date;
|
|
9159
|
+
metadata: {
|
|
9160
|
+
__typename: "RequestMetadata";
|
|
9161
|
+
id: string;
|
|
9162
|
+
color?: string | undefined | null;
|
|
9163
|
+
};
|
|
9164
|
+
response?: {
|
|
9165
|
+
__typename: "Response";
|
|
9166
|
+
id: string;
|
|
9167
|
+
statusCode: number;
|
|
9168
|
+
roundtripTime: number;
|
|
9169
|
+
length: number;
|
|
9170
|
+
createdAt: Date;
|
|
9171
|
+
alteration: Alteration;
|
|
9172
|
+
edited: boolean;
|
|
9173
|
+
} | undefined | null;
|
|
9174
|
+
stream?: {
|
|
9175
|
+
id: string;
|
|
9176
|
+
} | undefined | null;
|
|
9177
|
+
};
|
|
9178
|
+
};
|
|
9179
|
+
};
|
|
9180
|
+
}>;
|
|
9181
|
+
};
|
|
9182
|
+
};
|
|
9078
9183
|
export type CreateFindingMutationVariables = Exact<{
|
|
9079
9184
|
requestId: Scalars["ID"]["input"];
|
|
9080
9185
|
input: CreateFindingInput;
|
|
@@ -9136,13 +9241,73 @@ export type CreateFindingMutation = {
|
|
|
9136
9241
|
};
|
|
9137
9242
|
};
|
|
9138
9243
|
export type DeleteFindingsMutationVariables = Exact<{
|
|
9139
|
-
|
|
9244
|
+
input: DeleteFindingsInput;
|
|
9140
9245
|
}>;
|
|
9141
9246
|
export type DeleteFindingsMutation = {
|
|
9142
9247
|
deleteFindings: {
|
|
9143
9248
|
deletedIds?: Array<string> | undefined | null;
|
|
9144
9249
|
};
|
|
9145
9250
|
};
|
|
9251
|
+
export type UpdateFindingMutationVariables = Exact<{
|
|
9252
|
+
id: Scalars["ID"]["input"];
|
|
9253
|
+
input: UpdateFindingInput;
|
|
9254
|
+
}>;
|
|
9255
|
+
export type UpdateFindingMutation = {
|
|
9256
|
+
updateFinding: {
|
|
9257
|
+
finding?: {
|
|
9258
|
+
id: string;
|
|
9259
|
+
title: string;
|
|
9260
|
+
description?: string | undefined | null;
|
|
9261
|
+
reporter: string;
|
|
9262
|
+
host: string;
|
|
9263
|
+
path: string;
|
|
9264
|
+
createdAt: Date;
|
|
9265
|
+
request: {
|
|
9266
|
+
__typename: "Request";
|
|
9267
|
+
id: string;
|
|
9268
|
+
host: string;
|
|
9269
|
+
port: number;
|
|
9270
|
+
path: string;
|
|
9271
|
+
query: string;
|
|
9272
|
+
method: string;
|
|
9273
|
+
edited: boolean;
|
|
9274
|
+
isTls: boolean;
|
|
9275
|
+
sni?: string | undefined | null;
|
|
9276
|
+
length: number;
|
|
9277
|
+
alteration: Alteration;
|
|
9278
|
+
fileExtension?: string | undefined | null;
|
|
9279
|
+
source: Source;
|
|
9280
|
+
createdAt: Date;
|
|
9281
|
+
metadata: {
|
|
9282
|
+
__typename: "RequestMetadata";
|
|
9283
|
+
id: string;
|
|
9284
|
+
color?: string | undefined | null;
|
|
9285
|
+
};
|
|
9286
|
+
response?: {
|
|
9287
|
+
__typename: "Response";
|
|
9288
|
+
id: string;
|
|
9289
|
+
statusCode: number;
|
|
9290
|
+
roundtripTime: number;
|
|
9291
|
+
length: number;
|
|
9292
|
+
createdAt: Date;
|
|
9293
|
+
alteration: Alteration;
|
|
9294
|
+
edited: boolean;
|
|
9295
|
+
} | undefined | null;
|
|
9296
|
+
stream?: {
|
|
9297
|
+
id: string;
|
|
9298
|
+
} | undefined | null;
|
|
9299
|
+
};
|
|
9300
|
+
} | undefined | null;
|
|
9301
|
+
error?: {
|
|
9302
|
+
__typename: "OtherUserError";
|
|
9303
|
+
code: string;
|
|
9304
|
+
} | {
|
|
9305
|
+
__typename: "UnknownIdUserError";
|
|
9306
|
+
id: string;
|
|
9307
|
+
code: string;
|
|
9308
|
+
} | undefined | null;
|
|
9309
|
+
};
|
|
9310
|
+
};
|
|
9146
9311
|
export type InterceptEntryFullFragment = {
|
|
9147
9312
|
__typename: "InterceptEntry";
|
|
9148
9313
|
id: string;
|
|
@@ -22041,8 +22206,10 @@ export declare const GetFindingsCountDocument = "\n query getFindingsCount($f
|
|
|
22041
22206
|
export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
|
|
22042
22207
|
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 description\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 ";
|
|
22043
22208
|
export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
|
|
22209
|
+
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 description\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 ";
|
|
22044
22210
|
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, 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 description\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 ";
|
|
22045
|
-
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($
|
|
22211
|
+
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput!) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
|
|
22212
|
+
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 description\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 ";
|
|
22046
22213
|
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 ";
|
|
22047
22214
|
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 ";
|
|
22048
22215
|
export declare const InterceptEntryDocument = "\n query interceptEntry($id: ID!) {\n interceptEntry(id: $id) {\n ...interceptEntryFull\n }\n}\n \n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\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 requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
@@ -22343,8 +22510,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22343
22510
|
findingReporters(variables?: FindingReportersQueryVariables, options?: C): Promise<FindingReportersQuery>;
|
|
22344
22511
|
createdFinding(variables?: CreatedFindingSubscriptionVariables, options?: C): AsyncIterable<CreatedFindingSubscription>;
|
|
22345
22512
|
deletedFindings(variables?: DeletedFindingsSubscriptionVariables, options?: C): AsyncIterable<DeletedFindingsSubscription>;
|
|
22513
|
+
updatedFindings(variables?: UpdatedFindingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedFindingsSubscription>;
|
|
22346
22514
|
createFinding(variables: CreateFindingMutationVariables, options?: C): Promise<CreateFindingMutation>;
|
|
22347
22515
|
deleteFindings(variables: DeleteFindingsMutationVariables, options?: C): Promise<DeleteFindingsMutation>;
|
|
22516
|
+
updateFinding(variables: UpdateFindingMutationVariables, options?: C): Promise<UpdateFindingMutation>;
|
|
22348
22517
|
interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
|
|
22349
22518
|
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
22350
22519
|
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|