@caido/sdk-frontend 0.51.2-beta.8 → 0.51.2-beta.9

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-frontend",
3
- "version": "0.51.2-beta.8",
3
+ "version": "0.51.2-beta.9",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "license": "MIT",
@@ -10299,6 +10299,81 @@ export type InterceptRequestMessageMetaFragment = {
10299
10299
  } | undefined | null;
10300
10300
  };
10301
10301
  };
10302
+ export type InterceptRequestMessageFullFragment = {
10303
+ __typename: "InterceptRequestMessage";
10304
+ id: string;
10305
+ request: {
10306
+ __typename: "Request";
10307
+ raw: string;
10308
+ id: string;
10309
+ host: string;
10310
+ port: number;
10311
+ path: string;
10312
+ query: string;
10313
+ method: string;
10314
+ edited: boolean;
10315
+ isTls: boolean;
10316
+ sni?: string | undefined | null;
10317
+ length: number;
10318
+ alteration: Alteration;
10319
+ fileExtension?: string | undefined | null;
10320
+ source: Source;
10321
+ createdAt: Date;
10322
+ edits: Array<{
10323
+ __typename: "Request";
10324
+ id: string;
10325
+ host: string;
10326
+ port: number;
10327
+ path: string;
10328
+ query: string;
10329
+ method: string;
10330
+ edited: boolean;
10331
+ isTls: boolean;
10332
+ sni?: string | undefined | null;
10333
+ length: number;
10334
+ alteration: Alteration;
10335
+ fileExtension?: string | undefined | null;
10336
+ source: Source;
10337
+ createdAt: Date;
10338
+ metadata: {
10339
+ __typename: "RequestMetadata";
10340
+ id: string;
10341
+ color?: string | undefined | null;
10342
+ };
10343
+ response?: {
10344
+ __typename: "Response";
10345
+ id: string;
10346
+ statusCode: number;
10347
+ roundtripTime: number;
10348
+ length: number;
10349
+ createdAt: Date;
10350
+ alteration: Alteration;
10351
+ edited: boolean;
10352
+ } | undefined | null;
10353
+ stream?: {
10354
+ id: string;
10355
+ } | undefined | null;
10356
+ }>;
10357
+ metadata: {
10358
+ __typename: "RequestMetadata";
10359
+ id: string;
10360
+ color?: string | undefined | null;
10361
+ };
10362
+ response?: {
10363
+ __typename: "Response";
10364
+ id: string;
10365
+ statusCode: number;
10366
+ roundtripTime: number;
10367
+ length: number;
10368
+ createdAt: Date;
10369
+ alteration: Alteration;
10370
+ edited: boolean;
10371
+ } | undefined | null;
10372
+ stream?: {
10373
+ id: string;
10374
+ } | undefined | null;
10375
+ };
10376
+ };
10302
10377
  export type InterceptResponseMessageMetaFragment = {
10303
10378
  __typename: "InterceptResponseMessage";
10304
10379
  id: string;
@@ -22409,6 +22484,7 @@ export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment
22409
22484
  export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n status\n updatedAt\n createdAt\n}\n ";
22410
22485
  export declare const InstanceSettingsFullFragmentDoc = "\n fragment instanceSettingsFull on InstanceSettings {\n __typename\n aiProviders {\n anthropic {\n apiKey\n }\n google {\n apiKey\n }\n openai {\n apiKey\n }\n openrouter {\n apiKey\n }\n }\n}\n ";
22411
22486
  export declare const TestAiProviderPayloadFullFragmentDoc = "\n fragment testAiProviderPayloadFull on TestAIProviderPayload {\n error {\n ... on AIUserError {\n code\n message\n reason\n }\n ... on OtherUserError {\n code\n }\n }\n success\n}\n ";
22487
+ export declare const InterceptRequestMessageFullFragmentDoc = "\n fragment interceptRequestMessageFull on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestFull\n }\n}\n ";
22412
22488
  export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
22413
22489
  export declare const InterceptResponseMessageMetaFragmentDoc = "\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
22414
22490
  export declare const StreamWsMessageEditRefFragmentDoc = "\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n ";