@caido/sdk-frontend 0.48.2-beta.0 → 0.48.2-beta.2

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.
@@ -649,6 +649,9 @@ export declare const CloudErrorReason: {
649
649
  readonly Unexpected: "UNEXPECTED";
650
650
  };
651
651
  export type CloudErrorReason = (typeof CloudErrorReason)[keyof typeof CloudErrorReason];
652
+ export type CloudStatus = {
653
+ sync: Scalars["Boolean"]["output"];
654
+ };
652
655
  export type CloudUser = {
653
656
  assistantUsage: AssistantUsage;
654
657
  id: Scalars["ID"]["output"];
@@ -1468,6 +1471,10 @@ export type InterceptEntryEdge = {
1468
1471
  /** The item at the end of the edge */
1469
1472
  node: InterceptEntry;
1470
1473
  };
1474
+ export type InterceptEntryOffset = {
1475
+ offset: Scalars["Int"]["output"];
1476
+ snapshot: Scalars["Snapshot"]["output"];
1477
+ };
1471
1478
  export declare const InterceptEntryOrderBy: {
1472
1479
  readonly Id: "ID";
1473
1480
  readonly ReqCreatedAt: "REQ_CREATED_AT";
@@ -2364,6 +2371,7 @@ export type QueryRoot = {
2364
2371
  interceptEntries: InterceptEntryConnection;
2365
2372
  interceptEntriesByOffset: InterceptEntryConnection;
2366
2373
  interceptEntry?: Maybe<InterceptEntry>;
2374
+ interceptEntryOffset?: Maybe<InterceptEntryOffset>;
2367
2375
  interceptMessages: InterceptMessageConnection;
2368
2376
  interceptOptions: InterceptOptions;
2369
2377
  interceptStatus: InterceptStatus;
@@ -2374,6 +2382,7 @@ export type QueryRoot = {
2374
2382
  replaySessionCollections: ReplaySessionCollectionConnection;
2375
2383
  replaySessions: ReplaySessionConnection;
2376
2384
  request?: Maybe<Request>;
2385
+ requestOffset?: Maybe<RequestOffset>;
2377
2386
  requests: RequestConnection;
2378
2387
  requestsByOffset: RequestConnection;
2379
2388
  response?: Maybe<Response>;
@@ -2472,6 +2481,12 @@ export type QueryRootInterceptEntriesByOffsetArgs = {
2472
2481
  export type QueryRootInterceptEntryArgs = {
2473
2482
  id: Scalars["ID"]["input"];
2474
2483
  };
2484
+ export type QueryRootInterceptEntryOffsetArgs = {
2485
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2486
+ id: Scalars["ID"]["input"];
2487
+ order?: InputMaybe<InterceptEntryOrderInput>;
2488
+ scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2489
+ };
2475
2490
  export type QueryRootInterceptMessagesArgs = {
2476
2491
  after?: InputMaybe<Scalars["String"]["input"]>;
2477
2492
  before?: InputMaybe<Scalars["String"]["input"]>;
@@ -2500,6 +2515,12 @@ export type QueryRootReplaySessionsArgs = {
2500
2515
  export type QueryRootRequestArgs = {
2501
2516
  id: Scalars["ID"]["input"];
2502
2517
  };
2518
+ export type QueryRootRequestOffsetArgs = {
2519
+ filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
2520
+ id: Scalars["ID"]["input"];
2521
+ order?: InputMaybe<RequestResponseOrderInput>;
2522
+ scopeId?: InputMaybe<Scalars["ID"]["input"]>;
2523
+ };
2503
2524
  export type QueryRootRequestsArgs = {
2504
2525
  after?: InputMaybe<Scalars["String"]["input"]>;
2505
2526
  before?: InputMaybe<Scalars["String"]["input"]>;
@@ -2927,6 +2948,10 @@ export type RequestMetadata = {
2927
2948
  color?: Maybe<Scalars["String"]["output"]>;
2928
2949
  id: Scalars["ID"]["output"];
2929
2950
  };
2951
+ export type RequestOffset = {
2952
+ offset: Scalars["Int"]["output"];
2953
+ snapshot: Scalars["Snapshot"]["output"];
2954
+ };
2930
2955
  export type RequestRawInput = {
2931
2956
  connectionInfo: ConnectionInfoInput;
2932
2957
  raw: Scalars["Blob"]["input"];
@@ -3009,6 +3034,7 @@ export type RunConvertWorkflowPayload = {
3009
3034
  export type Runtime = {
3010
3035
  availableUpdate?: Maybe<Release>;
3011
3036
  certificate: Certificate;
3037
+ cloudStatus: CloudStatus;
3012
3038
  logs: Scalars["Uri"]["output"];
3013
3039
  platform: Scalars["String"]["output"];
3014
3040
  version: Scalars["String"]["output"];
@@ -3411,6 +3437,7 @@ export type SubscriptionRoot = {
3411
3437
  updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
3412
3438
  updatedUpstreamProxySocks: UpdatedUpstreamProxySocksPayload;
3413
3439
  updatedViewerAssistantUsage: UpdatedViewerAssistantUsagePayload;
3440
+ updatedViewerProfile: UpdatedViewerProfilePayload;
3414
3441
  updatedViewerSettings: UpdatedViewerSettingsPayload;
3415
3442
  updatedWorkflow: UpdatedWorkflowPayload;
3416
3443
  uploadedHostedFile: UploadedHostedFilePayload;
@@ -4207,6 +4234,9 @@ export type UpdatedUpstreamProxySocksPayload = {
4207
4234
  export type UpdatedViewerAssistantUsagePayload = {
4208
4235
  usage: AssistantUsage;
4209
4236
  };
4237
+ export type UpdatedViewerProfilePayload = {
4238
+ profile: UserProfile;
4239
+ };
4210
4240
  export type UpdatedViewerSettingsPayload = {
4211
4241
  settings: UserSettings;
4212
4242
  };
@@ -15846,16 +15876,6 @@ export type ReplayEntryFullFragment = {
15846
15876
  }>;
15847
15877
  }>;
15848
15878
  };
15849
- connection: {
15850
- __typename: "ConnectionInfo";
15851
- host: string;
15852
- port: number;
15853
- isTLS: boolean;
15854
- SNI?: string | undefined | null;
15855
- };
15856
- session: {
15857
- id: string;
15858
- };
15859
15879
  request?: {
15860
15880
  __typename: "Request";
15861
15881
  id: string;
@@ -15872,6 +15892,7 @@ export type ReplayEntryFullFragment = {
15872
15892
  fileExtension?: string | undefined | null;
15873
15893
  source: Source;
15874
15894
  createdAt: Date;
15895
+ raw: string;
15875
15896
  metadata: {
15876
15897
  __typename: "RequestMetadata";
15877
15898
  id: string;
@@ -15890,7 +15911,52 @@ export type ReplayEntryFullFragment = {
15890
15911
  stream?: {
15891
15912
  id: string;
15892
15913
  } | undefined | null;
15914
+ edits: Array<{
15915
+ __typename: "Request";
15916
+ id: string;
15917
+ host: string;
15918
+ port: number;
15919
+ path: string;
15920
+ query: string;
15921
+ method: string;
15922
+ edited: boolean;
15923
+ isTls: boolean;
15924
+ sni?: string | undefined | null;
15925
+ length: number;
15926
+ alteration: Alteration;
15927
+ fileExtension?: string | undefined | null;
15928
+ source: Source;
15929
+ createdAt: Date;
15930
+ metadata: {
15931
+ __typename: "RequestMetadata";
15932
+ id: string;
15933
+ color?: string | undefined | null;
15934
+ };
15935
+ response?: {
15936
+ __typename: "Response";
15937
+ id: string;
15938
+ statusCode: number;
15939
+ roundtripTime: number;
15940
+ length: number;
15941
+ createdAt: Date;
15942
+ alteration: Alteration;
15943
+ edited: boolean;
15944
+ } | undefined | null;
15945
+ stream?: {
15946
+ id: string;
15947
+ } | undefined | null;
15948
+ }>;
15893
15949
  } | undefined | null;
15950
+ connection: {
15951
+ __typename: "ConnectionInfo";
15952
+ host: string;
15953
+ port: number;
15954
+ isTLS: boolean;
15955
+ SNI?: string | undefined | null;
15956
+ };
15957
+ session: {
15958
+ id: string;
15959
+ };
15894
15960
  };
15895
15961
  export type ReplaySessionMetaFragment = {
15896
15962
  __typename: "ReplaySession";
@@ -16000,18 +16066,6 @@ export type ReplaySessionMetaFragment = {
16000
16066
  } | undefined | null;
16001
16067
  } | undefined | null;
16002
16068
  }>;
16003
- pageInfo: {
16004
- __typename: "PageInfo";
16005
- hasPreviousPage: boolean;
16006
- hasNextPage: boolean;
16007
- startCursor?: string | undefined | null;
16008
- endCursor?: string | undefined | null;
16009
- };
16010
- count: {
16011
- __typename: "Count";
16012
- value: number;
16013
- snapshot: number;
16014
- };
16015
16069
  };
16016
16070
  };
16017
16071
  export type ReplaySessionCollectionMetaFragment = {
@@ -16126,18 +16180,6 @@ export type ReplaySessionCollectionMetaFragment = {
16126
16180
  } | undefined | null;
16127
16181
  } | undefined | null;
16128
16182
  }>;
16129
- pageInfo: {
16130
- __typename: "PageInfo";
16131
- hasPreviousPage: boolean;
16132
- hasNextPage: boolean;
16133
- startCursor?: string | undefined | null;
16134
- endCursor?: string | undefined | null;
16135
- };
16136
- count: {
16137
- __typename: "Count";
16138
- value: number;
16139
- snapshot: number;
16140
- };
16141
16183
  };
16142
16184
  }>;
16143
16185
  };
@@ -16147,17 +16189,41 @@ export type ReplayTaskMetaFragment = {
16147
16189
  createdAt: Date;
16148
16190
  replayEntry: {
16149
16191
  __typename: "ReplayEntry";
16192
+ raw: string;
16150
16193
  id: string;
16151
16194
  error?: string | undefined | null;
16152
- connection: {
16153
- __typename: "ConnectionInfo";
16154
- host: string;
16155
- port: number;
16156
- isTLS: boolean;
16157
- SNI?: string | undefined | null;
16158
- };
16159
- session: {
16160
- id: string;
16195
+ settings: {
16196
+ placeholders: Array<{
16197
+ __typename: "ReplayPlaceholder";
16198
+ inputRange: {
16199
+ start: number;
16200
+ end: number;
16201
+ };
16202
+ outputRange: {
16203
+ start: number;
16204
+ end: number;
16205
+ };
16206
+ preprocessors: Array<{
16207
+ __typename: "ReplayPreprocessor";
16208
+ options: {
16209
+ __typename: "ReplayEnvironmentPreprocessor";
16210
+ variableName: string;
16211
+ } | {
16212
+ __typename: "ReplayPrefixPreprocessor";
16213
+ value: string;
16214
+ } | {
16215
+ __typename: "ReplaySuffixPreprocessor";
16216
+ value: string;
16217
+ } | {
16218
+ __typename: "ReplayUrlEncodePreprocessor";
16219
+ charset?: string | undefined | null;
16220
+ nonAscii: boolean;
16221
+ } | {
16222
+ __typename: "ReplayWorkflowPreprocessor";
16223
+ id: string;
16224
+ };
16225
+ }>;
16226
+ }>;
16161
16227
  };
16162
16228
  request?: {
16163
16229
  __typename: "Request";
@@ -16175,6 +16241,7 @@ export type ReplayTaskMetaFragment = {
16175
16241
  fileExtension?: string | undefined | null;
16176
16242
  source: Source;
16177
16243
  createdAt: Date;
16244
+ raw: string;
16178
16245
  metadata: {
16179
16246
  __typename: "RequestMetadata";
16180
16247
  id: string;
@@ -16193,7 +16260,52 @@ export type ReplayTaskMetaFragment = {
16193
16260
  stream?: {
16194
16261
  id: string;
16195
16262
  } | undefined | null;
16263
+ edits: Array<{
16264
+ __typename: "Request";
16265
+ id: string;
16266
+ host: string;
16267
+ port: number;
16268
+ path: string;
16269
+ query: string;
16270
+ method: string;
16271
+ edited: boolean;
16272
+ isTls: boolean;
16273
+ sni?: string | undefined | null;
16274
+ length: number;
16275
+ alteration: Alteration;
16276
+ fileExtension?: string | undefined | null;
16277
+ source: Source;
16278
+ createdAt: Date;
16279
+ metadata: {
16280
+ __typename: "RequestMetadata";
16281
+ id: string;
16282
+ color?: string | undefined | null;
16283
+ };
16284
+ response?: {
16285
+ __typename: "Response";
16286
+ id: string;
16287
+ statusCode: number;
16288
+ roundtripTime: number;
16289
+ length: number;
16290
+ createdAt: Date;
16291
+ alteration: Alteration;
16292
+ edited: boolean;
16293
+ } | undefined | null;
16294
+ stream?: {
16295
+ id: string;
16296
+ } | undefined | null;
16297
+ }>;
16196
16298
  } | undefined | null;
16299
+ connection: {
16300
+ __typename: "ConnectionInfo";
16301
+ host: string;
16302
+ port: number;
16303
+ isTLS: boolean;
16304
+ SNI?: string | undefined | null;
16305
+ };
16306
+ session: {
16307
+ id: string;
16308
+ };
16197
16309
  };
16198
16310
  };
16199
16311
  export type ReplayPrefixPreprocessorFullFragment = {
@@ -16310,16 +16422,6 @@ export type ReplayEntryQuery = {
16310
16422
  }>;
16311
16423
  }>;
16312
16424
  };
16313
- connection: {
16314
- __typename: "ConnectionInfo";
16315
- host: string;
16316
- port: number;
16317
- isTLS: boolean;
16318
- SNI?: string | undefined | null;
16319
- };
16320
- session: {
16321
- id: string;
16322
- };
16323
16425
  request?: {
16324
16426
  __typename: "Request";
16325
16427
  id: string;
@@ -16336,6 +16438,7 @@ export type ReplayEntryQuery = {
16336
16438
  fileExtension?: string | undefined | null;
16337
16439
  source: Source;
16338
16440
  createdAt: Date;
16441
+ raw: string;
16339
16442
  metadata: {
16340
16443
  __typename: "RequestMetadata";
16341
16444
  id: string;
@@ -16354,7 +16457,52 @@ export type ReplayEntryQuery = {
16354
16457
  stream?: {
16355
16458
  id: string;
16356
16459
  } | undefined | null;
16460
+ edits: Array<{
16461
+ __typename: "Request";
16462
+ id: string;
16463
+ host: string;
16464
+ port: number;
16465
+ path: string;
16466
+ query: string;
16467
+ method: string;
16468
+ edited: boolean;
16469
+ isTls: boolean;
16470
+ sni?: string | undefined | null;
16471
+ length: number;
16472
+ alteration: Alteration;
16473
+ fileExtension?: string | undefined | null;
16474
+ source: Source;
16475
+ createdAt: Date;
16476
+ metadata: {
16477
+ __typename: "RequestMetadata";
16478
+ id: string;
16479
+ color?: string | undefined | null;
16480
+ };
16481
+ response?: {
16482
+ __typename: "Response";
16483
+ id: string;
16484
+ statusCode: number;
16485
+ roundtripTime: number;
16486
+ length: number;
16487
+ createdAt: Date;
16488
+ alteration: Alteration;
16489
+ edited: boolean;
16490
+ } | undefined | null;
16491
+ stream?: {
16492
+ id: string;
16493
+ } | undefined | null;
16494
+ }>;
16357
16495
  } | undefined | null;
16496
+ connection: {
16497
+ __typename: "ConnectionInfo";
16498
+ host: string;
16499
+ port: number;
16500
+ isTLS: boolean;
16501
+ SNI?: string | undefined | null;
16502
+ };
16503
+ session: {
16504
+ id: string;
16505
+ };
16358
16506
  } | undefined | null;
16359
16507
  };
16360
16508
  export type ActiveReplayEntryBySessionQueryVariables = Exact<{
@@ -16469,18 +16617,6 @@ export type ActiveReplayEntryBySessionQuery = {
16469
16617
  } | undefined | null;
16470
16618
  } | undefined | null;
16471
16619
  }>;
16472
- pageInfo: {
16473
- __typename: "PageInfo";
16474
- hasPreviousPage: boolean;
16475
- hasNextPage: boolean;
16476
- startCursor?: string | undefined | null;
16477
- endCursor?: string | undefined | null;
16478
- };
16479
- count: {
16480
- __typename: "Count";
16481
- value: number;
16482
- snapshot: number;
16483
- };
16484
16620
  };
16485
16621
  } | undefined | null;
16486
16622
  };
@@ -16906,18 +17042,6 @@ export type ReplaySessionCollectionsQuery = {
16906
17042
  } | undefined | null;
16907
17043
  } | undefined | null;
16908
17044
  }>;
16909
- pageInfo: {
16910
- __typename: "PageInfo";
16911
- hasPreviousPage: boolean;
16912
- hasNextPage: boolean;
16913
- startCursor?: string | undefined | null;
16914
- endCursor?: string | undefined | null;
16915
- };
16916
- count: {
16917
- __typename: "Count";
16918
- value: number;
16919
- snapshot: number;
16920
- };
16921
17045
  };
16922
17046
  }>;
16923
17047
  };
@@ -17042,18 +17166,6 @@ export type RenameReplaySessionCollectionMutation = {
17042
17166
  } | undefined | null;
17043
17167
  } | undefined | null;
17044
17168
  }>;
17045
- pageInfo: {
17046
- __typename: "PageInfo";
17047
- hasPreviousPage: boolean;
17048
- hasNextPage: boolean;
17049
- startCursor?: string | undefined | null;
17050
- endCursor?: string | undefined | null;
17051
- };
17052
- count: {
17053
- __typename: "Count";
17054
- value: number;
17055
- snapshot: number;
17056
- };
17057
17169
  };
17058
17170
  }>;
17059
17171
  } | undefined | null;
@@ -17176,18 +17288,6 @@ export type CreateReplaySessionCollectionMutation = {
17176
17288
  } | undefined | null;
17177
17289
  } | undefined | null;
17178
17290
  }>;
17179
- pageInfo: {
17180
- __typename: "PageInfo";
17181
- hasPreviousPage: boolean;
17182
- hasNextPage: boolean;
17183
- startCursor?: string | undefined | null;
17184
- endCursor?: string | undefined | null;
17185
- };
17186
- count: {
17187
- __typename: "Count";
17188
- value: number;
17189
- snapshot: number;
17190
- };
17191
17291
  };
17192
17292
  }>;
17193
17293
  } | undefined | null;
@@ -17315,18 +17415,6 @@ export type RenameReplaySessionMutation = {
17315
17415
  } | undefined | null;
17316
17416
  } | undefined | null;
17317
17417
  }>;
17318
- pageInfo: {
17319
- __typename: "PageInfo";
17320
- hasPreviousPage: boolean;
17321
- hasNextPage: boolean;
17322
- startCursor?: string | undefined | null;
17323
- endCursor?: string | undefined | null;
17324
- };
17325
- count: {
17326
- __typename: "Count";
17327
- value: number;
17328
- snapshot: number;
17329
- };
17330
17418
  };
17331
17419
  } | undefined | null;
17332
17420
  };
@@ -17445,18 +17533,6 @@ export type SetActiveReplaySessionEntryMutation = {
17445
17533
  } | undefined | null;
17446
17534
  } | undefined | null;
17447
17535
  }>;
17448
- pageInfo: {
17449
- __typename: "PageInfo";
17450
- hasPreviousPage: boolean;
17451
- hasNextPage: boolean;
17452
- startCursor?: string | undefined | null;
17453
- endCursor?: string | undefined | null;
17454
- };
17455
- count: {
17456
- __typename: "Count";
17457
- value: number;
17458
- snapshot: number;
17459
- };
17460
17536
  };
17461
17537
  } | undefined | null;
17462
17538
  };
@@ -17590,18 +17666,6 @@ export type CreateReplaySessionMutation = {
17590
17666
  } | undefined | null;
17591
17667
  } | undefined | null;
17592
17668
  }>;
17593
- pageInfo: {
17594
- __typename: "PageInfo";
17595
- hasPreviousPage: boolean;
17596
- hasNextPage: boolean;
17597
- startCursor?: string | undefined | null;
17598
- endCursor?: string | undefined | null;
17599
- };
17600
- count: {
17601
- __typename: "Count";
17602
- value: number;
17603
- snapshot: number;
17604
- };
17605
17669
  };
17606
17670
  }>;
17607
17671
  };
@@ -17706,18 +17770,6 @@ export type CreateReplaySessionMutation = {
17706
17770
  } | undefined | null;
17707
17771
  } | undefined | null;
17708
17772
  }>;
17709
- pageInfo: {
17710
- __typename: "PageInfo";
17711
- hasPreviousPage: boolean;
17712
- hasNextPage: boolean;
17713
- startCursor?: string | undefined | null;
17714
- endCursor?: string | undefined | null;
17715
- };
17716
- count: {
17717
- __typename: "Count";
17718
- value: number;
17719
- snapshot: number;
17720
- };
17721
17773
  };
17722
17774
  } | undefined | null;
17723
17775
  };
@@ -17836,18 +17888,6 @@ export type MoveReplaySessionMutation = {
17836
17888
  } | undefined | null;
17837
17889
  } | undefined | null;
17838
17890
  }>;
17839
- pageInfo: {
17840
- __typename: "PageInfo";
17841
- hasPreviousPage: boolean;
17842
- hasNextPage: boolean;
17843
- startCursor?: string | undefined | null;
17844
- endCursor?: string | undefined | null;
17845
- };
17846
- count: {
17847
- __typename: "Count";
17848
- value: number;
17849
- snapshot: number;
17850
- };
17851
17891
  };
17852
17892
  } | undefined | null;
17853
17893
  };
@@ -17864,17 +17904,41 @@ export type StartReplayTaskMutation = {
17864
17904
  createdAt: Date;
17865
17905
  replayEntry: {
17866
17906
  __typename: "ReplayEntry";
17907
+ raw: string;
17867
17908
  id: string;
17868
17909
  error?: string | undefined | null;
17869
- connection: {
17870
- __typename: "ConnectionInfo";
17871
- host: string;
17872
- port: number;
17873
- isTLS: boolean;
17874
- SNI?: string | undefined | null;
17875
- };
17876
- session: {
17877
- id: string;
17910
+ settings: {
17911
+ placeholders: Array<{
17912
+ __typename: "ReplayPlaceholder";
17913
+ inputRange: {
17914
+ start: number;
17915
+ end: number;
17916
+ };
17917
+ outputRange: {
17918
+ start: number;
17919
+ end: number;
17920
+ };
17921
+ preprocessors: Array<{
17922
+ __typename: "ReplayPreprocessor";
17923
+ options: {
17924
+ __typename: "ReplayEnvironmentPreprocessor";
17925
+ variableName: string;
17926
+ } | {
17927
+ __typename: "ReplayPrefixPreprocessor";
17928
+ value: string;
17929
+ } | {
17930
+ __typename: "ReplaySuffixPreprocessor";
17931
+ value: string;
17932
+ } | {
17933
+ __typename: "ReplayUrlEncodePreprocessor";
17934
+ charset?: string | undefined | null;
17935
+ nonAscii: boolean;
17936
+ } | {
17937
+ __typename: "ReplayWorkflowPreprocessor";
17938
+ id: string;
17939
+ };
17940
+ }>;
17941
+ }>;
17878
17942
  };
17879
17943
  request?: {
17880
17944
  __typename: "Request";
@@ -17892,6 +17956,7 @@ export type StartReplayTaskMutation = {
17892
17956
  fileExtension?: string | undefined | null;
17893
17957
  source: Source;
17894
17958
  createdAt: Date;
17959
+ raw: string;
17895
17960
  metadata: {
17896
17961
  __typename: "RequestMetadata";
17897
17962
  id: string;
@@ -17910,7 +17975,52 @@ export type StartReplayTaskMutation = {
17910
17975
  stream?: {
17911
17976
  id: string;
17912
17977
  } | undefined | null;
17978
+ edits: Array<{
17979
+ __typename: "Request";
17980
+ id: string;
17981
+ host: string;
17982
+ port: number;
17983
+ path: string;
17984
+ query: string;
17985
+ method: string;
17986
+ edited: boolean;
17987
+ isTls: boolean;
17988
+ sni?: string | undefined | null;
17989
+ length: number;
17990
+ alteration: Alteration;
17991
+ fileExtension?: string | undefined | null;
17992
+ source: Source;
17993
+ createdAt: Date;
17994
+ metadata: {
17995
+ __typename: "RequestMetadata";
17996
+ id: string;
17997
+ color?: string | undefined | null;
17998
+ };
17999
+ response?: {
18000
+ __typename: "Response";
18001
+ id: string;
18002
+ statusCode: number;
18003
+ roundtripTime: number;
18004
+ length: number;
18005
+ createdAt: Date;
18006
+ alteration: Alteration;
18007
+ edited: boolean;
18008
+ } | undefined | null;
18009
+ stream?: {
18010
+ id: string;
18011
+ } | undefined | null;
18012
+ }>;
17913
18013
  } | undefined | null;
18014
+ connection: {
18015
+ __typename: "ConnectionInfo";
18016
+ host: string;
18017
+ port: number;
18018
+ isTLS: boolean;
18019
+ SNI?: string | undefined | null;
18020
+ };
18021
+ session: {
18022
+ id: string;
18023
+ };
17914
18024
  };
17915
18025
  } | undefined | null;
17916
18026
  error?: {
@@ -18045,18 +18155,6 @@ export type CreatedReplaySessionSubscription = {
18045
18155
  } | undefined | null;
18046
18156
  } | undefined | null;
18047
18157
  }>;
18048
- pageInfo: {
18049
- __typename: "PageInfo";
18050
- hasPreviousPage: boolean;
18051
- hasNextPage: boolean;
18052
- startCursor?: string | undefined | null;
18053
- endCursor?: string | undefined | null;
18054
- };
18055
- count: {
18056
- __typename: "Count";
18057
- value: number;
18058
- snapshot: number;
18059
- };
18060
18158
  };
18061
18159
  };
18062
18160
  };
@@ -18177,18 +18275,6 @@ export type UpdatedReplaySessionSubscription = {
18177
18275
  } | undefined | null;
18178
18276
  } | undefined | null;
18179
18277
  }>;
18180
- pageInfo: {
18181
- __typename: "PageInfo";
18182
- hasPreviousPage: boolean;
18183
- hasNextPage: boolean;
18184
- startCursor?: string | undefined | null;
18185
- endCursor?: string | undefined | null;
18186
- };
18187
- count: {
18188
- __typename: "Count";
18189
- value: number;
18190
- snapshot: number;
18191
- };
18192
18278
  };
18193
18279
  };
18194
18280
  };
@@ -18320,18 +18406,6 @@ export type CreatedReplaySessionCollectionSubscription = {
18320
18406
  } | undefined | null;
18321
18407
  } | undefined | null;
18322
18408
  }>;
18323
- pageInfo: {
18324
- __typename: "PageInfo";
18325
- hasPreviousPage: boolean;
18326
- hasNextPage: boolean;
18327
- startCursor?: string | undefined | null;
18328
- endCursor?: string | undefined | null;
18329
- };
18330
- count: {
18331
- __typename: "Count";
18332
- value: number;
18333
- snapshot: number;
18334
- };
18335
18409
  };
18336
18410
  }>;
18337
18411
  };
@@ -18456,18 +18530,6 @@ export type UpdatedReplaySessionCollectionSubscription = {
18456
18530
  } | undefined | null;
18457
18531
  } | undefined | null;
18458
18532
  }>;
18459
- pageInfo: {
18460
- __typename: "PageInfo";
18461
- hasPreviousPage: boolean;
18462
- hasNextPage: boolean;
18463
- startCursor?: string | undefined | null;
18464
- endCursor?: string | undefined | null;
18465
- };
18466
- count: {
18467
- __typename: "Count";
18468
- value: number;
18469
- snapshot: number;
18470
- };
18471
18533
  };
18472
18534
  }>;
18473
18535
  };
@@ -20153,17 +20215,41 @@ export type GetTasksQuery = {
20153
20215
  createdAt: Date;
20154
20216
  replayEntry: {
20155
20217
  __typename: "ReplayEntry";
20218
+ raw: string;
20156
20219
  id: string;
20157
20220
  error?: string | undefined | null;
20158
- connection: {
20159
- __typename: "ConnectionInfo";
20160
- host: string;
20161
- port: number;
20162
- isTLS: boolean;
20163
- SNI?: string | undefined | null;
20164
- };
20165
- session: {
20166
- id: string;
20221
+ settings: {
20222
+ placeholders: Array<{
20223
+ __typename: "ReplayPlaceholder";
20224
+ inputRange: {
20225
+ start: number;
20226
+ end: number;
20227
+ };
20228
+ outputRange: {
20229
+ start: number;
20230
+ end: number;
20231
+ };
20232
+ preprocessors: Array<{
20233
+ __typename: "ReplayPreprocessor";
20234
+ options: {
20235
+ __typename: "ReplayEnvironmentPreprocessor";
20236
+ variableName: string;
20237
+ } | {
20238
+ __typename: "ReplayPrefixPreprocessor";
20239
+ value: string;
20240
+ } | {
20241
+ __typename: "ReplaySuffixPreprocessor";
20242
+ value: string;
20243
+ } | {
20244
+ __typename: "ReplayUrlEncodePreprocessor";
20245
+ charset?: string | undefined | null;
20246
+ nonAscii: boolean;
20247
+ } | {
20248
+ __typename: "ReplayWorkflowPreprocessor";
20249
+ id: string;
20250
+ };
20251
+ }>;
20252
+ }>;
20167
20253
  };
20168
20254
  request?: {
20169
20255
  __typename: "Request";
@@ -20181,6 +20267,7 @@ export type GetTasksQuery = {
20181
20267
  fileExtension?: string | undefined | null;
20182
20268
  source: Source;
20183
20269
  createdAt: Date;
20270
+ raw: string;
20184
20271
  metadata: {
20185
20272
  __typename: "RequestMetadata";
20186
20273
  id: string;
@@ -20199,7 +20286,52 @@ export type GetTasksQuery = {
20199
20286
  stream?: {
20200
20287
  id: string;
20201
20288
  } | undefined | null;
20289
+ edits: Array<{
20290
+ __typename: "Request";
20291
+ id: string;
20292
+ host: string;
20293
+ port: number;
20294
+ path: string;
20295
+ query: string;
20296
+ method: string;
20297
+ edited: boolean;
20298
+ isTls: boolean;
20299
+ sni?: string | undefined | null;
20300
+ length: number;
20301
+ alteration: Alteration;
20302
+ fileExtension?: string | undefined | null;
20303
+ source: Source;
20304
+ createdAt: Date;
20305
+ metadata: {
20306
+ __typename: "RequestMetadata";
20307
+ id: string;
20308
+ color?: string | undefined | null;
20309
+ };
20310
+ response?: {
20311
+ __typename: "Response";
20312
+ id: string;
20313
+ statusCode: number;
20314
+ roundtripTime: number;
20315
+ length: number;
20316
+ createdAt: Date;
20317
+ alteration: Alteration;
20318
+ edited: boolean;
20319
+ } | undefined | null;
20320
+ stream?: {
20321
+ id: string;
20322
+ } | undefined | null;
20323
+ }>;
20202
20324
  } | undefined | null;
20325
+ connection: {
20326
+ __typename: "ConnectionInfo";
20327
+ host: string;
20328
+ port: number;
20329
+ isTLS: boolean;
20330
+ SNI?: string | undefined | null;
20331
+ };
20332
+ session: {
20333
+ id: string;
20334
+ };
20203
20335
  };
20204
20336
  } | {
20205
20337
  __typename: "WorkflowTask";
@@ -20243,17 +20375,41 @@ export type StartedTaskSubscription = {
20243
20375
  createdAt: Date;
20244
20376
  replayEntry: {
20245
20377
  __typename: "ReplayEntry";
20378
+ raw: string;
20246
20379
  id: string;
20247
20380
  error?: string | undefined | null;
20248
- connection: {
20249
- __typename: "ConnectionInfo";
20250
- host: string;
20251
- port: number;
20252
- isTLS: boolean;
20253
- SNI?: string | undefined | null;
20254
- };
20255
- session: {
20256
- id: string;
20381
+ settings: {
20382
+ placeholders: Array<{
20383
+ __typename: "ReplayPlaceholder";
20384
+ inputRange: {
20385
+ start: number;
20386
+ end: number;
20387
+ };
20388
+ outputRange: {
20389
+ start: number;
20390
+ end: number;
20391
+ };
20392
+ preprocessors: Array<{
20393
+ __typename: "ReplayPreprocessor";
20394
+ options: {
20395
+ __typename: "ReplayEnvironmentPreprocessor";
20396
+ variableName: string;
20397
+ } | {
20398
+ __typename: "ReplayPrefixPreprocessor";
20399
+ value: string;
20400
+ } | {
20401
+ __typename: "ReplaySuffixPreprocessor";
20402
+ value: string;
20403
+ } | {
20404
+ __typename: "ReplayUrlEncodePreprocessor";
20405
+ charset?: string | undefined | null;
20406
+ nonAscii: boolean;
20407
+ } | {
20408
+ __typename: "ReplayWorkflowPreprocessor";
20409
+ id: string;
20410
+ };
20411
+ }>;
20412
+ }>;
20257
20413
  };
20258
20414
  request?: {
20259
20415
  __typename: "Request";
@@ -20271,6 +20427,7 @@ export type StartedTaskSubscription = {
20271
20427
  fileExtension?: string | undefined | null;
20272
20428
  source: Source;
20273
20429
  createdAt: Date;
20430
+ raw: string;
20274
20431
  metadata: {
20275
20432
  __typename: "RequestMetadata";
20276
20433
  id: string;
@@ -20289,7 +20446,52 @@ export type StartedTaskSubscription = {
20289
20446
  stream?: {
20290
20447
  id: string;
20291
20448
  } | undefined | null;
20449
+ edits: Array<{
20450
+ __typename: "Request";
20451
+ id: string;
20452
+ host: string;
20453
+ port: number;
20454
+ path: string;
20455
+ query: string;
20456
+ method: string;
20457
+ edited: boolean;
20458
+ isTls: boolean;
20459
+ sni?: string | undefined | null;
20460
+ length: number;
20461
+ alteration: Alteration;
20462
+ fileExtension?: string | undefined | null;
20463
+ source: Source;
20464
+ createdAt: Date;
20465
+ metadata: {
20466
+ __typename: "RequestMetadata";
20467
+ id: string;
20468
+ color?: string | undefined | null;
20469
+ };
20470
+ response?: {
20471
+ __typename: "Response";
20472
+ id: string;
20473
+ statusCode: number;
20474
+ roundtripTime: number;
20475
+ length: number;
20476
+ createdAt: Date;
20477
+ alteration: Alteration;
20478
+ edited: boolean;
20479
+ } | undefined | null;
20480
+ stream?: {
20481
+ id: string;
20482
+ } | undefined | null;
20483
+ }>;
20292
20484
  } | undefined | null;
20485
+ connection: {
20486
+ __typename: "ConnectionInfo";
20487
+ host: string;
20488
+ port: number;
20489
+ isTLS: boolean;
20490
+ SNI?: string | undefined | null;
20491
+ };
20492
+ session: {
20493
+ id: string;
20494
+ };
20293
20495
  };
20294
20496
  } | {
20295
20497
  __typename: "WorkflowTask";
@@ -20318,17 +20520,41 @@ export type FinishedTaskSubscription = {
20318
20520
  createdAt: Date;
20319
20521
  replayEntry: {
20320
20522
  __typename: "ReplayEntry";
20523
+ raw: string;
20321
20524
  id: string;
20322
20525
  error?: string | undefined | null;
20323
- connection: {
20324
- __typename: "ConnectionInfo";
20325
- host: string;
20326
- port: number;
20327
- isTLS: boolean;
20328
- SNI?: string | undefined | null;
20329
- };
20330
- session: {
20331
- id: string;
20526
+ settings: {
20527
+ placeholders: Array<{
20528
+ __typename: "ReplayPlaceholder";
20529
+ inputRange: {
20530
+ start: number;
20531
+ end: number;
20532
+ };
20533
+ outputRange: {
20534
+ start: number;
20535
+ end: number;
20536
+ };
20537
+ preprocessors: Array<{
20538
+ __typename: "ReplayPreprocessor";
20539
+ options: {
20540
+ __typename: "ReplayEnvironmentPreprocessor";
20541
+ variableName: string;
20542
+ } | {
20543
+ __typename: "ReplayPrefixPreprocessor";
20544
+ value: string;
20545
+ } | {
20546
+ __typename: "ReplaySuffixPreprocessor";
20547
+ value: string;
20548
+ } | {
20549
+ __typename: "ReplayUrlEncodePreprocessor";
20550
+ charset?: string | undefined | null;
20551
+ nonAscii: boolean;
20552
+ } | {
20553
+ __typename: "ReplayWorkflowPreprocessor";
20554
+ id: string;
20555
+ };
20556
+ }>;
20557
+ }>;
20332
20558
  };
20333
20559
  request?: {
20334
20560
  __typename: "Request";
@@ -20346,6 +20572,7 @@ export type FinishedTaskSubscription = {
20346
20572
  fileExtension?: string | undefined | null;
20347
20573
  source: Source;
20348
20574
  createdAt: Date;
20575
+ raw: string;
20349
20576
  metadata: {
20350
20577
  __typename: "RequestMetadata";
20351
20578
  id: string;
@@ -20364,7 +20591,52 @@ export type FinishedTaskSubscription = {
20364
20591
  stream?: {
20365
20592
  id: string;
20366
20593
  } | undefined | null;
20594
+ edits: Array<{
20595
+ __typename: "Request";
20596
+ id: string;
20597
+ host: string;
20598
+ port: number;
20599
+ path: string;
20600
+ query: string;
20601
+ method: string;
20602
+ edited: boolean;
20603
+ isTls: boolean;
20604
+ sni?: string | undefined | null;
20605
+ length: number;
20606
+ alteration: Alteration;
20607
+ fileExtension?: string | undefined | null;
20608
+ source: Source;
20609
+ createdAt: Date;
20610
+ metadata: {
20611
+ __typename: "RequestMetadata";
20612
+ id: string;
20613
+ color?: string | undefined | null;
20614
+ };
20615
+ response?: {
20616
+ __typename: "Response";
20617
+ id: string;
20618
+ statusCode: number;
20619
+ roundtripTime: number;
20620
+ length: number;
20621
+ createdAt: Date;
20622
+ alteration: Alteration;
20623
+ edited: boolean;
20624
+ } | undefined | null;
20625
+ stream?: {
20626
+ id: string;
20627
+ } | undefined | null;
20628
+ }>;
20367
20629
  } | undefined | null;
20630
+ connection: {
20631
+ __typename: "ConnectionInfo";
20632
+ host: string;
20633
+ port: number;
20634
+ isTLS: boolean;
20635
+ SNI?: string | undefined | null;
20636
+ };
20637
+ session: {
20638
+ id: string;
20639
+ };
20368
20640
  };
20369
20641
  } | {
20370
20642
  __typename: "WorkflowTask";
@@ -21543,6 +21815,8 @@ export declare const TamperOperationStatusCodeFullFragmentDoc = "\n fragment
21543
21815
  export declare const TamperSectionFullFragmentDoc = "\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n ";
21544
21816
  export declare const TamperRuleFullFragmentDoc = "\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n ";
21545
21817
  export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
21818
+ export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
21819
+ export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21546
21820
  export declare const PluginAuthorFullFragmentDoc = "\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n ";
21547
21821
  export declare const PluginLinksFullFragmentDoc = "\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n ";
21548
21822
  export declare const PluginPackageMetaFragmentDoc = "\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n ";
@@ -21558,6 +21832,9 @@ export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projec
21558
21832
  export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
21559
21833
  export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
21560
21834
  export declare const ReplayEntryMetaFragmentDoc = "\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 ";
21835
+ export declare const ReplaySessionMetaFragmentDoc = "\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 ";
21836
+ export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
21837
+ export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
21561
21838
  export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
21562
21839
  export declare const ReplaySuffixPreprocessorFullFragmentDoc = "\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n ";
21563
21840
  export declare const ReplayUrlEncodePreprocessorFullFragmentDoc = "\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n ";
@@ -21565,13 +21842,8 @@ export declare const ReplayWorkflowPreprocessorFullFragmentDoc = "\n fragment
21565
21842
  export declare const ReplayEnvironmentPreprocessorFullFragmentDoc = "\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n ";
21566
21843
  export declare const ReplayPreprocessorFullFragmentDoc = "\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 ";
21567
21844
  export declare const ReplayPlaceholderFullFragmentDoc = "\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n ";
21568
- export declare const ReplayEntryFullFragmentDoc = "\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n ";
21569
- export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
21570
- export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21571
- export declare const ReplaySessionMetaFragmentDoc = "\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n ";
21572
- export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
21573
- export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
21574
- export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n ";
21845
+ export declare const ReplayEntryFullFragmentDoc = "\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n ";
21846
+ export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n ";
21575
21847
  export declare const RequestEdgeMetaFragmentDoc = "\n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n ";
21576
21848
  export declare const ResponseFullFragmentDoc = "\n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\n}\n ";
21577
21849
  export declare const RuntimeFullFragmentDoc = "\n fragment runtimeFull on Runtime {\n __typename\n version\n platform\n}\n ";
@@ -21782,25 +22054,25 @@ export declare const PersistProjectDocument = "\n mutation persistProject($id
21782
22054
  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 ";
21783
22055
  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 ";
21784
22056
  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 ";
21785
- 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}\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 ";
21786
- 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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21787
- export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
22057
+ 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 ";
22058
+ 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 ";
22059
+ export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21788
22060
  export declare const ReplaySessionEntriesDocument = "\n query replaySessionEntries($id: ID!) {\n replaySession(id: $id) {\n activeEntry {\n ...replayEntryMeta\n }\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21789
- export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21790
- export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21791
- export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
22061
+ export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 ";
22062
+ export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 ";
22063
+ export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 ";
21792
22064
  export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
21793
- export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21794
- export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
22065
+ export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\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 ";
22066
+ export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\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 ";
21795
22067
  export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
21796
- export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
21797
- export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21798
- export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\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 cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
21799
- export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21800
- export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
22068
+ export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\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 \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
22069
+ export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\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 ";
22070
+ export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 \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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\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 ";
22071
+ export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\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 ";
22072
+ export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\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 ";
21801
22073
  export declare const DeletedReplaySessionDocument = "\n subscription deletedReplaySession {\n deletedReplaySession {\n deletedSessionId\n }\n}\n ";
21802
- export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
21803
- export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
22074
+ export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 ";
22075
+ export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\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 ";
21804
22076
  export declare const DeletedReplaySessionCollectionDocument = "\n subscription deletedReplaySessionCollection {\n deletedReplaySessionCollection {\n deletedCollectionId\n }\n}\n ";
21805
22077
  export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\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 ";
21806
22078
  export declare const RequestCountDocument = "\n query requestCount($scopeId: ID, $filter: HTTPQL) {\n requests(first: 0, scopeId: $scopeId, filter: $filter) {\n count {\n ...countFull\n }\n snapshot\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
@@ -21849,10 +22121,10 @@ export declare const WebsocketMessageEditDocument = "\n query websocketMessag
21849
22121
  export declare const CreatedWsStreamDocument = "\n subscription createdWsStream($scopeId: ID, $order: StreamOrderInput!) {\n createdStream(protocol: WS, scopeId: $scopeId) {\n snapshot\n streamEdge(order: $order) {\n ...streamEdgeMeta\n }\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n ";
21850
22122
  export declare const CreatedStreamWsMessageDocument = "\n subscription createdStreamWsMessage($order: StreamWsMessageOrderInput!) {\n createdStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
21851
22123
  export declare const UpdatedStreamWsMessageDocument = "\n subscription updatedStreamWsMessage($order: StreamWsMessageOrderInput!) {\n updatedStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
21852
- export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 workflowTaskMeta on WorkflowTask {\n ...taskMeta\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 ";
22124
+ export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\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 \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\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 ";
21853
22125
  export declare const CancelTaskDocument = "\n mutation cancelTask($id: ID!) {\n cancelTask(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 ";
21854
- export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\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 ";
21855
- export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\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 ";
22126
+ export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\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 ";
22127
+ export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\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 ";
21856
22128
  export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
21857
22129
  export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
21858
22130
  export declare const UpdateUpstreamProxyHttpDocument = "\n mutation updateUpstreamProxyHttp($id: ID!, $input: UpdateUpstreamProxyHttpInput!) {\n updateUpstreamProxyHttp(id: $id, input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";