@caido/sdk-frontend 0.49.1-beta.0 → 0.49.1-beta.1
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
|
@@ -9689,6 +9689,28 @@ export type InterceptEntryCountQuery = {
|
|
|
9689
9689
|
};
|
|
9690
9690
|
};
|
|
9691
9691
|
};
|
|
9692
|
+
export type RequestOffsetQueryVariables = Exact<{
|
|
9693
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
9694
|
+
id: Scalars["ID"]["input"];
|
|
9695
|
+
order?: InputMaybe<RequestResponseOrderInput>;
|
|
9696
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9697
|
+
}>;
|
|
9698
|
+
export type RequestOffsetQuery = {
|
|
9699
|
+
requestOffset?: {
|
|
9700
|
+
offset: number;
|
|
9701
|
+
} | undefined | null;
|
|
9702
|
+
};
|
|
9703
|
+
export type InterceptEntryOffsetQueryVariables = Exact<{
|
|
9704
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
9705
|
+
id: Scalars["ID"]["input"];
|
|
9706
|
+
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
9707
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
9708
|
+
}>;
|
|
9709
|
+
export type InterceptEntryOffsetQuery = {
|
|
9710
|
+
interceptEntryOffset?: {
|
|
9711
|
+
offset: number;
|
|
9712
|
+
} | undefined | null;
|
|
9713
|
+
};
|
|
9692
9714
|
export type DeleteInterceptEntriesMutationVariables = Exact<{
|
|
9693
9715
|
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
9694
9716
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
@@ -22224,6 +22246,8 @@ export declare const InterceptEntriesDocument = "\n query interceptEntries($a
|
|
|
22224
22246
|
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 ";
|
|
22225
22247
|
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 ";
|
|
22226
22248
|
export declare const InterceptEntryCountDocument = "\n query interceptEntryCount($filter: HTTPQL, $scopeId: ID) {\n interceptEntries(first: 0, filter: $filter, scopeId: $scopeId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
22249
|
+
export declare const RequestOffsetDocument = "\n query RequestOffset($filter: HTTPQL, $id: ID!, $order: RequestResponseOrderInput, $scopeId: ID) {\n requestOffset(filter: $filter, id: $id, order: $order, scopeId: $scopeId) {\n offset\n }\n}\n ";
|
|
22250
|
+
export declare const InterceptEntryOffsetDocument = "\n query InterceptEntryOffset($filter: HTTPQL, $id: ID!, $order: InterceptEntryOrderInput, $scopeId: ID) {\n interceptEntryOffset(filter: $filter, id: $id, order: $order, scopeId: $scopeId) {\n offset\n }\n}\n ";
|
|
22227
22251
|
export declare const DeleteInterceptEntriesDocument = "\n mutation deleteInterceptEntries($filter: HTTPQL, $scopeId: ID) {\n deleteInterceptEntries(filter: $filter, scopeId: $scopeId) {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n error: userError {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22228
22252
|
export declare const DeleteInterceptEntryDocument = "\n mutation deleteInterceptEntry($id: ID!) {\n deleteInterceptEntry(id: $id) {\n deletedId\n error: userError {\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 ";
|
|
22229
22253
|
export declare const CreatedInterceptEntryDocument = "\n subscription createdInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n createdInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\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 ";
|
|
@@ -22529,6 +22553,8 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22529
22553
|
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
22530
22554
|
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
|
22531
22555
|
interceptEntryCount(variables?: InterceptEntryCountQueryVariables, options?: C): Promise<InterceptEntryCountQuery>;
|
|
22556
|
+
RequestOffset(variables: RequestOffsetQueryVariables, options?: C): Promise<RequestOffsetQuery>;
|
|
22557
|
+
InterceptEntryOffset(variables: InterceptEntryOffsetQueryVariables, options?: C): Promise<InterceptEntryOffsetQuery>;
|
|
22532
22558
|
deleteInterceptEntries(variables?: DeleteInterceptEntriesMutationVariables, options?: C): Promise<DeleteInterceptEntriesMutation>;
|
|
22533
22559
|
deleteInterceptEntry(variables: DeleteInterceptEntryMutationVariables, options?: C): Promise<DeleteInterceptEntryMutation>;
|
|
22534
22560
|
createdInterceptEntry(variables?: CreatedInterceptEntrySubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptEntrySubscription>;
|