@caido/sdk-frontend 0.47.1 → 0.47.2-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1347,9 +1347,15 @@ export type FinishedTaskPayload = {
|
|
|
1347
1347
|
export type ForwardInterceptMessageInput = {
|
|
1348
1348
|
request: ForwardInterceptRequestMessageInput;
|
|
1349
1349
|
response?: never;
|
|
1350
|
+
streamWs?: never;
|
|
1350
1351
|
} | {
|
|
1351
1352
|
request?: never;
|
|
1352
1353
|
response: ForwardInterceptResponseMessageInput;
|
|
1354
|
+
streamWs?: never;
|
|
1355
|
+
} | {
|
|
1356
|
+
request?: never;
|
|
1357
|
+
response?: never;
|
|
1358
|
+
streamWs: ForwardInterceptStreamWsMessageInput;
|
|
1353
1359
|
};
|
|
1354
1360
|
export type ForwardInterceptMessagePayload = {
|
|
1355
1361
|
forwardedId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -1362,6 +1368,9 @@ export type ForwardInterceptResponseMessageInput = {
|
|
|
1362
1368
|
updateContentLength: Scalars["Boolean"]["input"];
|
|
1363
1369
|
updateRaw: Scalars["Blob"]["input"];
|
|
1364
1370
|
};
|
|
1371
|
+
export type ForwardInterceptStreamWsMessageInput = {
|
|
1372
|
+
updateRaw: Scalars["Blob"]["input"];
|
|
1373
|
+
};
|
|
1365
1374
|
export type GlobalConfig = {
|
|
1366
1375
|
address: Scalars["String"]["output"];
|
|
1367
1376
|
onboarding: OnboardingState;
|
|
@@ -1445,6 +1454,7 @@ export type InterceptEntryOrderInput = {
|
|
|
1445
1454
|
export declare const InterceptKind: {
|
|
1446
1455
|
readonly Request: "REQUEST";
|
|
1447
1456
|
readonly Response: "RESPONSE";
|
|
1457
|
+
readonly StreamWs: "STREAM_WS";
|
|
1448
1458
|
};
|
|
1449
1459
|
export type InterceptKind = (typeof InterceptKind)[keyof typeof InterceptKind];
|
|
1450
1460
|
export type InterceptMessage = {
|
|
@@ -1471,11 +1481,13 @@ export type InterceptOptions = {
|
|
|
1471
1481
|
request: InterceptRequestOptions;
|
|
1472
1482
|
response: InterceptResponseOptions;
|
|
1473
1483
|
scope?: Maybe<InterceptScopeOptions>;
|
|
1484
|
+
streamWs: InterceptStreamWsOptions;
|
|
1474
1485
|
};
|
|
1475
1486
|
export type InterceptOptionsInput = {
|
|
1476
1487
|
request: InterceptRequestOptionsInput;
|
|
1477
1488
|
response: InterceptResponseOptionsInput;
|
|
1478
1489
|
scope?: InputMaybe<InterceptScopeOptionsInput>;
|
|
1490
|
+
streamWs: InterceptStreamWsOptionsInput;
|
|
1479
1491
|
};
|
|
1480
1492
|
export type InterceptRequestMessage = InterceptMessage & {
|
|
1481
1493
|
id: Scalars["ID"]["output"];
|
|
@@ -1513,6 +1525,16 @@ export declare const InterceptStatus: {
|
|
|
1513
1525
|
readonly Running: "RUNNING";
|
|
1514
1526
|
};
|
|
1515
1527
|
export type InterceptStatus = (typeof InterceptStatus)[keyof typeof InterceptStatus];
|
|
1528
|
+
export type InterceptStreamWsMessage = InterceptMessage & {
|
|
1529
|
+
id: Scalars["ID"]["output"];
|
|
1530
|
+
message: StreamWsMessage;
|
|
1531
|
+
};
|
|
1532
|
+
export type InterceptStreamWsOptions = {
|
|
1533
|
+
enabled: Scalars["Boolean"]["output"];
|
|
1534
|
+
};
|
|
1535
|
+
export type InterceptStreamWsOptionsInput = {
|
|
1536
|
+
enabled: Scalars["Boolean"]["input"];
|
|
1537
|
+
};
|
|
1516
1538
|
export type InternalUserError = UserError & {
|
|
1517
1539
|
code: Scalars["String"]["output"];
|
|
1518
1540
|
message: Scalars["String"]["output"];
|
|
@@ -2313,6 +2335,7 @@ export type QueryRoot = {
|
|
|
2313
2335
|
store: Store;
|
|
2314
2336
|
stream?: Maybe<Stream>;
|
|
2315
2337
|
streamWsMessage?: Maybe<StreamWsMessage>;
|
|
2338
|
+
streamWsMessageEdit?: Maybe<StreamWsMessageEdit>;
|
|
2316
2339
|
streamWsMessages: StreamWsMessageConnection;
|
|
2317
2340
|
streamWsMessagesByOffset: StreamWsMessageConnection;
|
|
2318
2341
|
streams: StreamConnection;
|
|
@@ -2463,6 +2486,9 @@ export type QueryRootStreamArgs = {
|
|
|
2463
2486
|
export type QueryRootStreamWsMessageArgs = {
|
|
2464
2487
|
id: Scalars["ID"]["input"];
|
|
2465
2488
|
};
|
|
2489
|
+
export type QueryRootStreamWsMessageEditArgs = {
|
|
2490
|
+
id: Scalars["ID"]["input"];
|
|
2491
|
+
};
|
|
2466
2492
|
export type QueryRootStreamWsMessagesArgs = {
|
|
2467
2493
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2468
2494
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -3181,15 +3207,10 @@ export declare const StreamProtocol: {
|
|
|
3181
3207
|
};
|
|
3182
3208
|
export type StreamProtocol = (typeof StreamProtocol)[keyof typeof StreamProtocol];
|
|
3183
3209
|
export type StreamWsMessage = {
|
|
3184
|
-
|
|
3185
|
-
|
|
3186
|
-
direction: StreamMessageDirection;
|
|
3187
|
-
edited: Scalars["Boolean"]["output"];
|
|
3188
|
-
format: StreamWsMessageFormat;
|
|
3210
|
+
edits: Array<StreamWsMessageEditRef>;
|
|
3211
|
+
head: StreamWsMessageEdit;
|
|
3189
3212
|
id: Scalars["ID"]["output"];
|
|
3190
|
-
|
|
3191
|
-
raw: Scalars["Blob"]["output"];
|
|
3192
|
-
streamId: Scalars["ID"]["output"];
|
|
3213
|
+
stream: Stream;
|
|
3193
3214
|
};
|
|
3194
3215
|
export type StreamWsMessageConnection = {
|
|
3195
3216
|
count: Count;
|
|
@@ -3208,6 +3229,19 @@ export type StreamWsMessageEdge = {
|
|
|
3208
3229
|
/** The item at the end of the edge */
|
|
3209
3230
|
node: StreamWsMessage;
|
|
3210
3231
|
};
|
|
3232
|
+
export type StreamWsMessageEdit = {
|
|
3233
|
+
alteration: Alteration;
|
|
3234
|
+
createdAt: Scalars["Timestamp"]["output"];
|
|
3235
|
+
direction: StreamMessageDirection;
|
|
3236
|
+
format: StreamWsMessageFormat;
|
|
3237
|
+
id: Scalars["ID"]["output"];
|
|
3238
|
+
length: Scalars["Int"]["output"];
|
|
3239
|
+
raw: Scalars["Blob"]["output"];
|
|
3240
|
+
};
|
|
3241
|
+
export type StreamWsMessageEditRef = {
|
|
3242
|
+
alteration: Alteration;
|
|
3243
|
+
id: Scalars["ID"]["output"];
|
|
3244
|
+
};
|
|
3211
3245
|
export declare const StreamWsMessageFormat: {
|
|
3212
3246
|
readonly Binary: "BINARY";
|
|
3213
3247
|
readonly Text: "TEXT";
|
|
@@ -3318,6 +3352,7 @@ export type SubscriptionRoot = {
|
|
|
3318
3352
|
updatedRequestMetadata: UpdatedRequestMetadataPayload;
|
|
3319
3353
|
updatedScope: UpdatedScopePayload;
|
|
3320
3354
|
updatedSitemapEntry: UpdatedSitemapEntryPayload;
|
|
3355
|
+
updatedStreamWsMessage: UpdatedStreamWsMessagePayload;
|
|
3321
3356
|
updatedTamperRule: UpdatedTamperRulePayload;
|
|
3322
3357
|
updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload;
|
|
3323
3358
|
updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
|
|
@@ -4095,6 +4130,13 @@ export type UpdatedSitemapEntryPayload = {
|
|
|
4095
4130
|
export type UpdatedSitemapEntryPayloadRequestEdgeArgs = {
|
|
4096
4131
|
order?: InputMaybe<RequestResponseOrderInput>;
|
|
4097
4132
|
};
|
|
4133
|
+
export type UpdatedStreamWsMessagePayload = {
|
|
4134
|
+
messageEdge: StreamWsMessageEdge;
|
|
4135
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
4136
|
+
};
|
|
4137
|
+
export type UpdatedStreamWsMessagePayloadMessageEdgeArgs = {
|
|
4138
|
+
order?: InputMaybe<StreamWsMessageOrderInput>;
|
|
4139
|
+
};
|
|
4098
4140
|
export type UpdatedTamperRuleCollectionPayload = {
|
|
4099
4141
|
collectionEdge: TamperRuleCollectionEdge;
|
|
4100
4142
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -4845,6 +4887,9 @@ export type AutomateEntryRequestMetaFragment = {
|
|
|
4845
4887
|
alteration: Alteration;
|
|
4846
4888
|
edited: boolean;
|
|
4847
4889
|
} | undefined | null;
|
|
4890
|
+
stream?: {
|
|
4891
|
+
id: string;
|
|
4892
|
+
} | undefined | null;
|
|
4848
4893
|
};
|
|
4849
4894
|
payloads: Array<{
|
|
4850
4895
|
__typename: "AutomateEntryRequestPayload";
|
|
@@ -4891,6 +4936,9 @@ export type AutomateEntryRequestEdgeMetaFragment = {
|
|
|
4891
4936
|
alteration: Alteration;
|
|
4892
4937
|
edited: boolean;
|
|
4893
4938
|
} | undefined | null;
|
|
4939
|
+
stream?: {
|
|
4940
|
+
id: string;
|
|
4941
|
+
} | undefined | null;
|
|
4894
4942
|
};
|
|
4895
4943
|
payloads: Array<{
|
|
4896
4944
|
__typename: "AutomateEntryRequestPayload";
|
|
@@ -5332,6 +5380,9 @@ export type AutomateEntryRequestsQuery = {
|
|
|
5332
5380
|
alteration: Alteration;
|
|
5333
5381
|
edited: boolean;
|
|
5334
5382
|
} | undefined | null;
|
|
5383
|
+
stream?: {
|
|
5384
|
+
id: string;
|
|
5385
|
+
} | undefined | null;
|
|
5335
5386
|
};
|
|
5336
5387
|
payloads: Array<{
|
|
5337
5388
|
__typename: "AutomateEntryRequestPayload";
|
|
@@ -5458,6 +5509,9 @@ export type AutomateEntryRequestsByOffsetQuery = {
|
|
|
5458
5509
|
alteration: Alteration;
|
|
5459
5510
|
edited: boolean;
|
|
5460
5511
|
} | undefined | null;
|
|
5512
|
+
stream?: {
|
|
5513
|
+
id: string;
|
|
5514
|
+
} | undefined | null;
|
|
5461
5515
|
};
|
|
5462
5516
|
payloads: Array<{
|
|
5463
5517
|
__typename: "AutomateEntryRequestPayload";
|
|
@@ -6259,6 +6313,9 @@ export type CreatedAutomateEntryRequestSubscription = {
|
|
|
6259
6313
|
alteration: Alteration;
|
|
6260
6314
|
edited: boolean;
|
|
6261
6315
|
} | undefined | null;
|
|
6316
|
+
stream?: {
|
|
6317
|
+
id: string;
|
|
6318
|
+
} | undefined | null;
|
|
6262
6319
|
};
|
|
6263
6320
|
payloads: Array<{
|
|
6264
6321
|
__typename: "AutomateEntryRequestPayload";
|
|
@@ -8543,6 +8600,9 @@ export type FindingMetaFragment = {
|
|
|
8543
8600
|
alteration: Alteration;
|
|
8544
8601
|
edited: boolean;
|
|
8545
8602
|
} | undefined | null;
|
|
8603
|
+
stream?: {
|
|
8604
|
+
id: string;
|
|
8605
|
+
} | undefined | null;
|
|
8546
8606
|
};
|
|
8547
8607
|
};
|
|
8548
8608
|
export type FindingEdgeMetaFragment = {
|
|
@@ -8586,6 +8646,9 @@ export type FindingEdgeMetaFragment = {
|
|
|
8586
8646
|
alteration: Alteration;
|
|
8587
8647
|
edited: boolean;
|
|
8588
8648
|
} | undefined | null;
|
|
8649
|
+
stream?: {
|
|
8650
|
+
id: string;
|
|
8651
|
+
} | undefined | null;
|
|
8589
8652
|
};
|
|
8590
8653
|
};
|
|
8591
8654
|
};
|
|
@@ -8639,6 +8702,9 @@ export type GetFindingsBeforeQuery = {
|
|
|
8639
8702
|
alteration: Alteration;
|
|
8640
8703
|
edited: boolean;
|
|
8641
8704
|
} | undefined | null;
|
|
8705
|
+
stream?: {
|
|
8706
|
+
id: string;
|
|
8707
|
+
} | undefined | null;
|
|
8642
8708
|
};
|
|
8643
8709
|
};
|
|
8644
8710
|
}>;
|
|
@@ -8701,6 +8767,9 @@ export type GetFindingsAfterQuery = {
|
|
|
8701
8767
|
alteration: Alteration;
|
|
8702
8768
|
edited: boolean;
|
|
8703
8769
|
} | undefined | null;
|
|
8770
|
+
stream?: {
|
|
8771
|
+
id: string;
|
|
8772
|
+
} | undefined | null;
|
|
8704
8773
|
};
|
|
8705
8774
|
};
|
|
8706
8775
|
}>;
|
|
@@ -8763,6 +8832,9 @@ export type GetFindingsByOffsetQuery = {
|
|
|
8763
8832
|
alteration: Alteration;
|
|
8764
8833
|
edited: boolean;
|
|
8765
8834
|
} | undefined | null;
|
|
8835
|
+
stream?: {
|
|
8836
|
+
id: string;
|
|
8837
|
+
} | undefined | null;
|
|
8766
8838
|
};
|
|
8767
8839
|
};
|
|
8768
8840
|
}>;
|
|
@@ -8840,6 +8912,9 @@ export type CreatedFindingSubscription = {
|
|
|
8840
8912
|
alteration: Alteration;
|
|
8841
8913
|
edited: boolean;
|
|
8842
8914
|
} | undefined | null;
|
|
8915
|
+
stream?: {
|
|
8916
|
+
id: string;
|
|
8917
|
+
} | undefined | null;
|
|
8843
8918
|
};
|
|
8844
8919
|
};
|
|
8845
8920
|
};
|
|
@@ -8899,6 +8974,9 @@ export type CreateFindingMutation = {
|
|
|
8899
8974
|
alteration: Alteration;
|
|
8900
8975
|
edited: boolean;
|
|
8901
8976
|
} | undefined | null;
|
|
8977
|
+
stream?: {
|
|
8978
|
+
id: string;
|
|
8979
|
+
} | undefined | null;
|
|
8902
8980
|
};
|
|
8903
8981
|
} | undefined | null;
|
|
8904
8982
|
error?: {
|
|
@@ -8954,6 +9032,9 @@ export type InterceptEntryFullFragment = {
|
|
|
8954
9032
|
alteration: Alteration;
|
|
8955
9033
|
edited: boolean;
|
|
8956
9034
|
} | undefined | null;
|
|
9035
|
+
stream?: {
|
|
9036
|
+
id: string;
|
|
9037
|
+
} | undefined | null;
|
|
8957
9038
|
edits: Array<{
|
|
8958
9039
|
__typename: "Request";
|
|
8959
9040
|
id: string;
|
|
@@ -8985,6 +9066,9 @@ export type InterceptEntryFullFragment = {
|
|
|
8985
9066
|
alteration: Alteration;
|
|
8986
9067
|
edited: boolean;
|
|
8987
9068
|
} | undefined | null;
|
|
9069
|
+
stream?: {
|
|
9070
|
+
id: string;
|
|
9071
|
+
} | undefined | null;
|
|
8988
9072
|
}>;
|
|
8989
9073
|
};
|
|
8990
9074
|
};
|
|
@@ -9022,6 +9106,9 @@ export type InterceptEntryMetaFragment = {
|
|
|
9022
9106
|
alteration: Alteration;
|
|
9023
9107
|
edited: boolean;
|
|
9024
9108
|
} | undefined | null;
|
|
9109
|
+
stream?: {
|
|
9110
|
+
id: string;
|
|
9111
|
+
} | undefined | null;
|
|
9025
9112
|
};
|
|
9026
9113
|
};
|
|
9027
9114
|
export type InterceptEntryEdgeMetaFragment = {
|
|
@@ -9061,6 +9148,9 @@ export type InterceptEntryEdgeMetaFragment = {
|
|
|
9061
9148
|
alteration: Alteration;
|
|
9062
9149
|
edited: boolean;
|
|
9063
9150
|
} | undefined | null;
|
|
9151
|
+
stream?: {
|
|
9152
|
+
id: string;
|
|
9153
|
+
} | undefined | null;
|
|
9064
9154
|
};
|
|
9065
9155
|
};
|
|
9066
9156
|
};
|
|
@@ -9118,6 +9208,9 @@ export type InterceptEntriesQuery = {
|
|
|
9118
9208
|
alteration: Alteration;
|
|
9119
9209
|
edited: boolean;
|
|
9120
9210
|
} | undefined | null;
|
|
9211
|
+
stream?: {
|
|
9212
|
+
id: string;
|
|
9213
|
+
} | undefined | null;
|
|
9121
9214
|
};
|
|
9122
9215
|
};
|
|
9123
9216
|
}>;
|
|
@@ -9177,6 +9270,9 @@ export type InterceptEntriesByOffsetQuery = {
|
|
|
9177
9270
|
alteration: Alteration;
|
|
9178
9271
|
edited: boolean;
|
|
9179
9272
|
} | undefined | null;
|
|
9273
|
+
stream?: {
|
|
9274
|
+
id: string;
|
|
9275
|
+
} | undefined | null;
|
|
9180
9276
|
};
|
|
9181
9277
|
};
|
|
9182
9278
|
}>;
|
|
@@ -9228,6 +9324,9 @@ export type InterceptEntryQuery = {
|
|
|
9228
9324
|
alteration: Alteration;
|
|
9229
9325
|
edited: boolean;
|
|
9230
9326
|
} | undefined | null;
|
|
9327
|
+
stream?: {
|
|
9328
|
+
id: string;
|
|
9329
|
+
} | undefined | null;
|
|
9231
9330
|
edits: Array<{
|
|
9232
9331
|
__typename: "Request";
|
|
9233
9332
|
id: string;
|
|
@@ -9259,6 +9358,9 @@ export type InterceptEntryQuery = {
|
|
|
9259
9358
|
alteration: Alteration;
|
|
9260
9359
|
edited: boolean;
|
|
9261
9360
|
} | undefined | null;
|
|
9361
|
+
stream?: {
|
|
9362
|
+
id: string;
|
|
9363
|
+
} | undefined | null;
|
|
9262
9364
|
}>;
|
|
9263
9365
|
};
|
|
9264
9366
|
} | undefined | null;
|
|
@@ -9358,6 +9460,9 @@ export type CreatedInterceptEntrySubscription = {
|
|
|
9358
9460
|
alteration: Alteration;
|
|
9359
9461
|
edited: boolean;
|
|
9360
9462
|
} | undefined | null;
|
|
9463
|
+
stream?: {
|
|
9464
|
+
id: string;
|
|
9465
|
+
} | undefined | null;
|
|
9361
9466
|
};
|
|
9362
9467
|
};
|
|
9363
9468
|
};
|
|
@@ -9408,6 +9513,9 @@ export type UpdatedInterceptEntrySubscription = {
|
|
|
9408
9513
|
alteration: Alteration;
|
|
9409
9514
|
edited: boolean;
|
|
9410
9515
|
} | undefined | null;
|
|
9516
|
+
stream?: {
|
|
9517
|
+
id: string;
|
|
9518
|
+
} | undefined | null;
|
|
9411
9519
|
};
|
|
9412
9520
|
};
|
|
9413
9521
|
};
|
|
@@ -9565,6 +9673,9 @@ export type InterceptRequestMessageMetaFragment = {
|
|
|
9565
9673
|
alteration: Alteration;
|
|
9566
9674
|
edited: boolean;
|
|
9567
9675
|
} | undefined | null;
|
|
9676
|
+
stream?: {
|
|
9677
|
+
id: string;
|
|
9678
|
+
} | undefined | null;
|
|
9568
9679
|
};
|
|
9569
9680
|
};
|
|
9570
9681
|
export type InterceptResponseMessageMetaFragment = {
|
|
@@ -9611,6 +9722,31 @@ export type InterceptResponseMessageMetaFragment = {
|
|
|
9611
9722
|
alteration: Alteration;
|
|
9612
9723
|
edited: boolean;
|
|
9613
9724
|
} | undefined | null;
|
|
9725
|
+
stream?: {
|
|
9726
|
+
id: string;
|
|
9727
|
+
} | undefined | null;
|
|
9728
|
+
};
|
|
9729
|
+
};
|
|
9730
|
+
export type InterceptStreamWsMessageMetaFragment = {
|
|
9731
|
+
__typename: "InterceptStreamWsMessage";
|
|
9732
|
+
id: string;
|
|
9733
|
+
message: {
|
|
9734
|
+
id: string;
|
|
9735
|
+
stream: {
|
|
9736
|
+
id: string;
|
|
9737
|
+
};
|
|
9738
|
+
edits: Array<{
|
|
9739
|
+
id: string;
|
|
9740
|
+
alteration: Alteration;
|
|
9741
|
+
}>;
|
|
9742
|
+
head: {
|
|
9743
|
+
id: string;
|
|
9744
|
+
length: number;
|
|
9745
|
+
alteration: Alteration;
|
|
9746
|
+
direction: StreamMessageDirection;
|
|
9747
|
+
format: StreamWsMessageFormat;
|
|
9748
|
+
createdAt: Date;
|
|
9749
|
+
};
|
|
9614
9750
|
};
|
|
9615
9751
|
};
|
|
9616
9752
|
type InterceptMessageMeta_InterceptRequestMessage_Fragment = {
|
|
@@ -9647,6 +9783,9 @@ type InterceptMessageMeta_InterceptRequestMessage_Fragment = {
|
|
|
9647
9783
|
alteration: Alteration;
|
|
9648
9784
|
edited: boolean;
|
|
9649
9785
|
} | undefined | null;
|
|
9786
|
+
stream?: {
|
|
9787
|
+
id: string;
|
|
9788
|
+
} | undefined | null;
|
|
9650
9789
|
};
|
|
9651
9790
|
};
|
|
9652
9791
|
type InterceptMessageMeta_InterceptResponseMessage_Fragment = {
|
|
@@ -9693,9 +9832,34 @@ type InterceptMessageMeta_InterceptResponseMessage_Fragment = {
|
|
|
9693
9832
|
alteration: Alteration;
|
|
9694
9833
|
edited: boolean;
|
|
9695
9834
|
} | undefined | null;
|
|
9835
|
+
stream?: {
|
|
9836
|
+
id: string;
|
|
9837
|
+
} | undefined | null;
|
|
9838
|
+
};
|
|
9839
|
+
};
|
|
9840
|
+
type InterceptMessageMeta_InterceptStreamWsMessage_Fragment = {
|
|
9841
|
+
__typename: "InterceptStreamWsMessage";
|
|
9842
|
+
id: string;
|
|
9843
|
+
message: {
|
|
9844
|
+
id: string;
|
|
9845
|
+
stream: {
|
|
9846
|
+
id: string;
|
|
9847
|
+
};
|
|
9848
|
+
edits: Array<{
|
|
9849
|
+
id: string;
|
|
9850
|
+
alteration: Alteration;
|
|
9851
|
+
}>;
|
|
9852
|
+
head: {
|
|
9853
|
+
id: string;
|
|
9854
|
+
length: number;
|
|
9855
|
+
alteration: Alteration;
|
|
9856
|
+
direction: StreamMessageDirection;
|
|
9857
|
+
format: StreamWsMessageFormat;
|
|
9858
|
+
createdAt: Date;
|
|
9859
|
+
};
|
|
9696
9860
|
};
|
|
9697
9861
|
};
|
|
9698
|
-
export type InterceptMessageMetaFragment = InterceptMessageMeta_InterceptRequestMessage_Fragment | InterceptMessageMeta_InterceptResponseMessage_Fragment;
|
|
9862
|
+
export type InterceptMessageMetaFragment = InterceptMessageMeta_InterceptRequestMessage_Fragment | InterceptMessageMeta_InterceptResponseMessage_Fragment | InterceptMessageMeta_InterceptStreamWsMessage_Fragment;
|
|
9699
9863
|
export type InterceptOptionsMetaFragment = {
|
|
9700
9864
|
request: {
|
|
9701
9865
|
enabled: boolean;
|
|
@@ -9705,6 +9869,9 @@ export type InterceptOptionsMetaFragment = {
|
|
|
9705
9869
|
enabled: boolean;
|
|
9706
9870
|
filter?: string | undefined | null;
|
|
9707
9871
|
};
|
|
9872
|
+
streamWs: {
|
|
9873
|
+
enabled: boolean;
|
|
9874
|
+
};
|
|
9708
9875
|
scope?: {
|
|
9709
9876
|
scopeId: string;
|
|
9710
9877
|
} | undefined | null;
|
|
@@ -9717,6 +9884,9 @@ export type InterceptResponseOptionsMetaFragment = {
|
|
|
9717
9884
|
enabled: boolean;
|
|
9718
9885
|
filter?: string | undefined | null;
|
|
9719
9886
|
};
|
|
9887
|
+
export type InterceptStreamWsOptionsMetaFragment = {
|
|
9888
|
+
enabled: boolean;
|
|
9889
|
+
};
|
|
9720
9890
|
export type InterceptScopeOptionsMetaFragment = {
|
|
9721
9891
|
scopeId: string;
|
|
9722
9892
|
};
|
|
@@ -9751,6 +9921,9 @@ export type SetInterceptOptionsMutation = {
|
|
|
9751
9921
|
enabled: boolean;
|
|
9752
9922
|
filter?: string | undefined | null;
|
|
9753
9923
|
};
|
|
9924
|
+
streamWs: {
|
|
9925
|
+
enabled: boolean;
|
|
9926
|
+
};
|
|
9754
9927
|
scope?: {
|
|
9755
9928
|
scopeId: string;
|
|
9756
9929
|
} | undefined | null;
|
|
@@ -9812,6 +9985,9 @@ export type InterceptRequestMessagesQuery = {
|
|
|
9812
9985
|
alteration: Alteration;
|
|
9813
9986
|
edited: boolean;
|
|
9814
9987
|
} | undefined | null;
|
|
9988
|
+
stream?: {
|
|
9989
|
+
id: string;
|
|
9990
|
+
} | undefined | null;
|
|
9815
9991
|
};
|
|
9816
9992
|
} | {
|
|
9817
9993
|
__typename: "InterceptResponseMessage";
|
|
@@ -9857,6 +10033,30 @@ export type InterceptRequestMessagesQuery = {
|
|
|
9857
10033
|
alteration: Alteration;
|
|
9858
10034
|
edited: boolean;
|
|
9859
10035
|
} | undefined | null;
|
|
10036
|
+
stream?: {
|
|
10037
|
+
id: string;
|
|
10038
|
+
} | undefined | null;
|
|
10039
|
+
};
|
|
10040
|
+
} | {
|
|
10041
|
+
__typename: "InterceptStreamWsMessage";
|
|
10042
|
+
id: string;
|
|
10043
|
+
message: {
|
|
10044
|
+
id: string;
|
|
10045
|
+
stream: {
|
|
10046
|
+
id: string;
|
|
10047
|
+
};
|
|
10048
|
+
edits: Array<{
|
|
10049
|
+
id: string;
|
|
10050
|
+
alteration: Alteration;
|
|
10051
|
+
}>;
|
|
10052
|
+
head: {
|
|
10053
|
+
id: string;
|
|
10054
|
+
length: number;
|
|
10055
|
+
alteration: Alteration;
|
|
10056
|
+
direction: StreamMessageDirection;
|
|
10057
|
+
format: StreamWsMessageFormat;
|
|
10058
|
+
createdAt: Date;
|
|
10059
|
+
};
|
|
9860
10060
|
};
|
|
9861
10061
|
}>;
|
|
9862
10062
|
};
|
|
@@ -9900,6 +10100,9 @@ export type InterceptResponseMessagesQuery = {
|
|
|
9900
10100
|
alteration: Alteration;
|
|
9901
10101
|
edited: boolean;
|
|
9902
10102
|
} | undefined | null;
|
|
10103
|
+
stream?: {
|
|
10104
|
+
id: string;
|
|
10105
|
+
} | undefined | null;
|
|
9903
10106
|
};
|
|
9904
10107
|
} | {
|
|
9905
10108
|
__typename: "InterceptResponseMessage";
|
|
@@ -9945,80 +10148,64 @@ export type InterceptResponseMessagesQuery = {
|
|
|
9945
10148
|
alteration: Alteration;
|
|
9946
10149
|
edited: boolean;
|
|
9947
10150
|
} | undefined | null;
|
|
10151
|
+
stream?: {
|
|
10152
|
+
id: string;
|
|
10153
|
+
} | undefined | null;
|
|
9948
10154
|
};
|
|
9949
|
-
}
|
|
9950
|
-
|
|
9951
|
-
|
|
9952
|
-
|
|
9953
|
-
[key: string]: never;
|
|
9954
|
-
}>;
|
|
9955
|
-
export type InterceptOptionsQuery = {
|
|
9956
|
-
interceptOptions: {
|
|
9957
|
-
request: {
|
|
9958
|
-
enabled: boolean;
|
|
9959
|
-
filter?: string | undefined | null;
|
|
9960
|
-
};
|
|
9961
|
-
response: {
|
|
9962
|
-
enabled: boolean;
|
|
9963
|
-
filter?: string | undefined | null;
|
|
9964
|
-
};
|
|
9965
|
-
scope?: {
|
|
9966
|
-
scopeId: string;
|
|
9967
|
-
} | undefined | null;
|
|
9968
|
-
};
|
|
9969
|
-
};
|
|
9970
|
-
export type InterceptStatusQueryVariables = Exact<{
|
|
9971
|
-
[key: string]: never;
|
|
9972
|
-
}>;
|
|
9973
|
-
export type InterceptStatusQuery = {
|
|
9974
|
-
interceptStatus: InterceptStatus;
|
|
9975
|
-
};
|
|
9976
|
-
export type CreatedInterceptMessageSubscriptionVariables = Exact<{
|
|
9977
|
-
[key: string]: never;
|
|
9978
|
-
}>;
|
|
9979
|
-
export type CreatedInterceptMessageSubscription = {
|
|
9980
|
-
createdInterceptMessage: {
|
|
9981
|
-
snapshot: number;
|
|
9982
|
-
messageEdge: {
|
|
9983
|
-
node: {
|
|
9984
|
-
__typename: "InterceptRequestMessage";
|
|
10155
|
+
} | {
|
|
10156
|
+
__typename: "InterceptStreamWsMessage";
|
|
10157
|
+
id: string;
|
|
10158
|
+
message: {
|
|
9985
10159
|
id: string;
|
|
9986
|
-
|
|
9987
|
-
|
|
10160
|
+
stream: {
|
|
10161
|
+
id: string;
|
|
10162
|
+
};
|
|
10163
|
+
edits: Array<{
|
|
10164
|
+
id: string;
|
|
10165
|
+
alteration: Alteration;
|
|
10166
|
+
}>;
|
|
10167
|
+
head: {
|
|
9988
10168
|
id: string;
|
|
9989
|
-
host: string;
|
|
9990
|
-
port: number;
|
|
9991
|
-
path: string;
|
|
9992
|
-
query: string;
|
|
9993
|
-
method: string;
|
|
9994
|
-
edited: boolean;
|
|
9995
|
-
isTls: boolean;
|
|
9996
|
-
sni?: string | undefined | null;
|
|
9997
10169
|
length: number;
|
|
9998
10170
|
alteration: Alteration;
|
|
9999
|
-
|
|
10000
|
-
|
|
10171
|
+
direction: StreamMessageDirection;
|
|
10172
|
+
format: StreamWsMessageFormat;
|
|
10001
10173
|
createdAt: Date;
|
|
10002
|
-
metadata: {
|
|
10003
|
-
__typename: "RequestMetadata";
|
|
10004
|
-
id: string;
|
|
10005
|
-
color?: string | undefined | null;
|
|
10006
|
-
};
|
|
10007
|
-
response?: {
|
|
10008
|
-
__typename: "Response";
|
|
10009
|
-
id: string;
|
|
10010
|
-
statusCode: number;
|
|
10011
|
-
roundtripTime: number;
|
|
10012
|
-
length: number;
|
|
10013
|
-
createdAt: Date;
|
|
10014
|
-
alteration: Alteration;
|
|
10015
|
-
edited: boolean;
|
|
10016
|
-
} | undefined | null;
|
|
10017
10174
|
};
|
|
10018
|
-
}
|
|
10019
|
-
|
|
10175
|
+
};
|
|
10176
|
+
}>;
|
|
10177
|
+
};
|
|
10178
|
+
};
|
|
10179
|
+
export type InterceptStreamWsMessagesQueryVariables = Exact<{
|
|
10180
|
+
first: Scalars["Int"]["input"];
|
|
10181
|
+
}>;
|
|
10182
|
+
export type InterceptStreamWsMessagesQuery = {
|
|
10183
|
+
interceptMessages: {
|
|
10184
|
+
nodes: Array<{
|
|
10185
|
+
__typename: "InterceptRequestMessage";
|
|
10186
|
+
id: string;
|
|
10187
|
+
request: {
|
|
10188
|
+
__typename: "Request";
|
|
10020
10189
|
id: string;
|
|
10021
|
-
|
|
10190
|
+
host: string;
|
|
10191
|
+
port: number;
|
|
10192
|
+
path: string;
|
|
10193
|
+
query: string;
|
|
10194
|
+
method: string;
|
|
10195
|
+
edited: boolean;
|
|
10196
|
+
isTls: boolean;
|
|
10197
|
+
sni?: string | undefined | null;
|
|
10198
|
+
length: number;
|
|
10199
|
+
alteration: Alteration;
|
|
10200
|
+
fileExtension?: string | undefined | null;
|
|
10201
|
+
source: Source;
|
|
10202
|
+
createdAt: Date;
|
|
10203
|
+
metadata: {
|
|
10204
|
+
__typename: "RequestMetadata";
|
|
10205
|
+
id: string;
|
|
10206
|
+
color?: string | undefined | null;
|
|
10207
|
+
};
|
|
10208
|
+
response?: {
|
|
10022
10209
|
__typename: "Response";
|
|
10023
10210
|
id: string;
|
|
10024
10211
|
statusCode: number;
|
|
@@ -10027,8 +10214,171 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
10027
10214
|
createdAt: Date;
|
|
10028
10215
|
alteration: Alteration;
|
|
10029
10216
|
edited: boolean;
|
|
10030
|
-
};
|
|
10031
|
-
|
|
10217
|
+
} | undefined | null;
|
|
10218
|
+
};
|
|
10219
|
+
} | {
|
|
10220
|
+
__typename: "InterceptResponseMessage";
|
|
10221
|
+
id: string;
|
|
10222
|
+
response: {
|
|
10223
|
+
__typename: "Response";
|
|
10224
|
+
id: string;
|
|
10225
|
+
statusCode: number;
|
|
10226
|
+
roundtripTime: number;
|
|
10227
|
+
length: number;
|
|
10228
|
+
createdAt: Date;
|
|
10229
|
+
alteration: Alteration;
|
|
10230
|
+
edited: boolean;
|
|
10231
|
+
};
|
|
10232
|
+
request: {
|
|
10233
|
+
__typename: "Request";
|
|
10234
|
+
id: string;
|
|
10235
|
+
host: string;
|
|
10236
|
+
port: number;
|
|
10237
|
+
path: string;
|
|
10238
|
+
query: string;
|
|
10239
|
+
method: string;
|
|
10240
|
+
edited: boolean;
|
|
10241
|
+
isTls: boolean;
|
|
10242
|
+
sni?: string | undefined | null;
|
|
10243
|
+
length: number;
|
|
10244
|
+
alteration: Alteration;
|
|
10245
|
+
fileExtension?: string | undefined | null;
|
|
10246
|
+
source: Source;
|
|
10247
|
+
createdAt: Date;
|
|
10248
|
+
metadata: {
|
|
10249
|
+
__typename: "RequestMetadata";
|
|
10250
|
+
id: string;
|
|
10251
|
+
color?: string | undefined | null;
|
|
10252
|
+
};
|
|
10253
|
+
response?: {
|
|
10254
|
+
__typename: "Response";
|
|
10255
|
+
id: string;
|
|
10256
|
+
statusCode: number;
|
|
10257
|
+
roundtripTime: number;
|
|
10258
|
+
length: number;
|
|
10259
|
+
createdAt: Date;
|
|
10260
|
+
alteration: Alteration;
|
|
10261
|
+
edited: boolean;
|
|
10262
|
+
} | undefined | null;
|
|
10263
|
+
};
|
|
10264
|
+
} | {
|
|
10265
|
+
__typename: "InterceptStreamWsMessage";
|
|
10266
|
+
id: string;
|
|
10267
|
+
message: {
|
|
10268
|
+
id: string;
|
|
10269
|
+
stream: {
|
|
10270
|
+
id: string;
|
|
10271
|
+
};
|
|
10272
|
+
edits: Array<{
|
|
10273
|
+
id: string;
|
|
10274
|
+
alteration: Alteration;
|
|
10275
|
+
}>;
|
|
10276
|
+
head: {
|
|
10277
|
+
id: string;
|
|
10278
|
+
length: number;
|
|
10279
|
+
alteration: Alteration;
|
|
10280
|
+
direction: StreamMessageDirection;
|
|
10281
|
+
format: StreamWsMessageFormat;
|
|
10282
|
+
createdAt: Date;
|
|
10283
|
+
};
|
|
10284
|
+
};
|
|
10285
|
+
}>;
|
|
10286
|
+
};
|
|
10287
|
+
};
|
|
10288
|
+
export type InterceptOptionsQueryVariables = Exact<{
|
|
10289
|
+
[key: string]: never;
|
|
10290
|
+
}>;
|
|
10291
|
+
export type InterceptOptionsQuery = {
|
|
10292
|
+
interceptOptions: {
|
|
10293
|
+
request: {
|
|
10294
|
+
enabled: boolean;
|
|
10295
|
+
filter?: string | undefined | null;
|
|
10296
|
+
};
|
|
10297
|
+
response: {
|
|
10298
|
+
enabled: boolean;
|
|
10299
|
+
filter?: string | undefined | null;
|
|
10300
|
+
};
|
|
10301
|
+
streamWs: {
|
|
10302
|
+
enabled: boolean;
|
|
10303
|
+
};
|
|
10304
|
+
scope?: {
|
|
10305
|
+
scopeId: string;
|
|
10306
|
+
} | undefined | null;
|
|
10307
|
+
};
|
|
10308
|
+
};
|
|
10309
|
+
export type InterceptStatusQueryVariables = Exact<{
|
|
10310
|
+
[key: string]: never;
|
|
10311
|
+
}>;
|
|
10312
|
+
export type InterceptStatusQuery = {
|
|
10313
|
+
interceptStatus: InterceptStatus;
|
|
10314
|
+
};
|
|
10315
|
+
export type UpdatedInterceptStatusSubscriptionVariables = Exact<{
|
|
10316
|
+
[key: string]: never;
|
|
10317
|
+
}>;
|
|
10318
|
+
export type UpdatedInterceptStatusSubscription = {
|
|
10319
|
+
updatedInterceptStatus: {
|
|
10320
|
+
status: InterceptStatus;
|
|
10321
|
+
};
|
|
10322
|
+
};
|
|
10323
|
+
export type CreatedInterceptMessageSubscriptionVariables = Exact<{
|
|
10324
|
+
[key: string]: never;
|
|
10325
|
+
}>;
|
|
10326
|
+
export type CreatedInterceptMessageSubscription = {
|
|
10327
|
+
createdInterceptMessage: {
|
|
10328
|
+
snapshot: number;
|
|
10329
|
+
messageEdge: {
|
|
10330
|
+
node: {
|
|
10331
|
+
__typename: "InterceptRequestMessage";
|
|
10332
|
+
id: string;
|
|
10333
|
+
request: {
|
|
10334
|
+
__typename: "Request";
|
|
10335
|
+
id: string;
|
|
10336
|
+
host: string;
|
|
10337
|
+
port: number;
|
|
10338
|
+
path: string;
|
|
10339
|
+
query: string;
|
|
10340
|
+
method: string;
|
|
10341
|
+
edited: boolean;
|
|
10342
|
+
isTls: boolean;
|
|
10343
|
+
sni?: string | undefined | null;
|
|
10344
|
+
length: number;
|
|
10345
|
+
alteration: Alteration;
|
|
10346
|
+
fileExtension?: string | undefined | null;
|
|
10347
|
+
source: Source;
|
|
10348
|
+
createdAt: Date;
|
|
10349
|
+
metadata: {
|
|
10350
|
+
__typename: "RequestMetadata";
|
|
10351
|
+
id: string;
|
|
10352
|
+
color?: string | undefined | null;
|
|
10353
|
+
};
|
|
10354
|
+
response?: {
|
|
10355
|
+
__typename: "Response";
|
|
10356
|
+
id: string;
|
|
10357
|
+
statusCode: number;
|
|
10358
|
+
roundtripTime: number;
|
|
10359
|
+
length: number;
|
|
10360
|
+
createdAt: Date;
|
|
10361
|
+
alteration: Alteration;
|
|
10362
|
+
edited: boolean;
|
|
10363
|
+
} | undefined | null;
|
|
10364
|
+
stream?: {
|
|
10365
|
+
id: string;
|
|
10366
|
+
} | undefined | null;
|
|
10367
|
+
};
|
|
10368
|
+
} | {
|
|
10369
|
+
__typename: "InterceptResponseMessage";
|
|
10370
|
+
id: string;
|
|
10371
|
+
response: {
|
|
10372
|
+
__typename: "Response";
|
|
10373
|
+
id: string;
|
|
10374
|
+
statusCode: number;
|
|
10375
|
+
roundtripTime: number;
|
|
10376
|
+
length: number;
|
|
10377
|
+
createdAt: Date;
|
|
10378
|
+
alteration: Alteration;
|
|
10379
|
+
edited: boolean;
|
|
10380
|
+
};
|
|
10381
|
+
request: {
|
|
10032
10382
|
__typename: "Request";
|
|
10033
10383
|
id: string;
|
|
10034
10384
|
host: string;
|
|
@@ -10059,6 +10409,30 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
10059
10409
|
alteration: Alteration;
|
|
10060
10410
|
edited: boolean;
|
|
10061
10411
|
} | undefined | null;
|
|
10412
|
+
stream?: {
|
|
10413
|
+
id: string;
|
|
10414
|
+
} | undefined | null;
|
|
10415
|
+
};
|
|
10416
|
+
} | {
|
|
10417
|
+
__typename: "InterceptStreamWsMessage";
|
|
10418
|
+
id: string;
|
|
10419
|
+
message: {
|
|
10420
|
+
id: string;
|
|
10421
|
+
stream: {
|
|
10422
|
+
id: string;
|
|
10423
|
+
};
|
|
10424
|
+
edits: Array<{
|
|
10425
|
+
id: string;
|
|
10426
|
+
alteration: Alteration;
|
|
10427
|
+
}>;
|
|
10428
|
+
head: {
|
|
10429
|
+
id: string;
|
|
10430
|
+
length: number;
|
|
10431
|
+
alteration: Alteration;
|
|
10432
|
+
direction: StreamMessageDirection;
|
|
10433
|
+
format: StreamWsMessageFormat;
|
|
10434
|
+
createdAt: Date;
|
|
10435
|
+
};
|
|
10062
10436
|
};
|
|
10063
10437
|
};
|
|
10064
10438
|
};
|
|
@@ -10078,6 +10452,9 @@ export type UpdatedInterceptOptionsSubscription = {
|
|
|
10078
10452
|
enabled: boolean;
|
|
10079
10453
|
filter?: string | undefined | null;
|
|
10080
10454
|
};
|
|
10455
|
+
streamWs: {
|
|
10456
|
+
enabled: boolean;
|
|
10457
|
+
};
|
|
10081
10458
|
scope?: {
|
|
10082
10459
|
scopeId: string;
|
|
10083
10460
|
} | undefined | null;
|
|
@@ -15258,6 +15635,9 @@ export type ReplayEntryMetaFragment = {
|
|
|
15258
15635
|
alteration: Alteration;
|
|
15259
15636
|
edited: boolean;
|
|
15260
15637
|
} | undefined | null;
|
|
15638
|
+
stream?: {
|
|
15639
|
+
id: string;
|
|
15640
|
+
} | undefined | null;
|
|
15261
15641
|
} | undefined | null;
|
|
15262
15642
|
};
|
|
15263
15643
|
export type ReplayEntryFullFragment = {
|
|
@@ -15339,6 +15719,9 @@ export type ReplayEntryFullFragment = {
|
|
|
15339
15719
|
alteration: Alteration;
|
|
15340
15720
|
edited: boolean;
|
|
15341
15721
|
} | undefined | null;
|
|
15722
|
+
stream?: {
|
|
15723
|
+
id: string;
|
|
15724
|
+
} | undefined | null;
|
|
15342
15725
|
} | undefined | null;
|
|
15343
15726
|
};
|
|
15344
15727
|
export type ReplaySessionMetaFragment = {
|
|
@@ -15390,6 +15773,9 @@ export type ReplaySessionMetaFragment = {
|
|
|
15390
15773
|
alteration: Alteration;
|
|
15391
15774
|
edited: boolean;
|
|
15392
15775
|
} | undefined | null;
|
|
15776
|
+
stream?: {
|
|
15777
|
+
id: string;
|
|
15778
|
+
} | undefined | null;
|
|
15393
15779
|
} | undefined | null;
|
|
15394
15780
|
} | undefined | null;
|
|
15395
15781
|
collection: {
|
|
@@ -15441,6 +15827,9 @@ export type ReplaySessionMetaFragment = {
|
|
|
15441
15827
|
alteration: Alteration;
|
|
15442
15828
|
edited: boolean;
|
|
15443
15829
|
} | undefined | null;
|
|
15830
|
+
stream?: {
|
|
15831
|
+
id: string;
|
|
15832
|
+
} | undefined | null;
|
|
15444
15833
|
} | undefined | null;
|
|
15445
15834
|
}>;
|
|
15446
15835
|
pageInfo: {
|
|
@@ -15510,6 +15899,9 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
15510
15899
|
alteration: Alteration;
|
|
15511
15900
|
edited: boolean;
|
|
15512
15901
|
} | undefined | null;
|
|
15902
|
+
stream?: {
|
|
15903
|
+
id: string;
|
|
15904
|
+
} | undefined | null;
|
|
15513
15905
|
} | undefined | null;
|
|
15514
15906
|
} | undefined | null;
|
|
15515
15907
|
collection: {
|
|
@@ -15561,6 +15953,9 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
15561
15953
|
alteration: Alteration;
|
|
15562
15954
|
edited: boolean;
|
|
15563
15955
|
} | undefined | null;
|
|
15956
|
+
stream?: {
|
|
15957
|
+
id: string;
|
|
15958
|
+
} | undefined | null;
|
|
15564
15959
|
} | undefined | null;
|
|
15565
15960
|
}>;
|
|
15566
15961
|
pageInfo: {
|
|
@@ -15627,6 +16022,9 @@ export type ReplayTaskMetaFragment = {
|
|
|
15627
16022
|
alteration: Alteration;
|
|
15628
16023
|
edited: boolean;
|
|
15629
16024
|
} | undefined | null;
|
|
16025
|
+
stream?: {
|
|
16026
|
+
id: string;
|
|
16027
|
+
} | undefined | null;
|
|
15630
16028
|
} | undefined | null;
|
|
15631
16029
|
};
|
|
15632
16030
|
};
|
|
@@ -15785,6 +16183,9 @@ export type ReplayEntryQuery = {
|
|
|
15785
16183
|
alteration: Alteration;
|
|
15786
16184
|
edited: boolean;
|
|
15787
16185
|
} | undefined | null;
|
|
16186
|
+
stream?: {
|
|
16187
|
+
id: string;
|
|
16188
|
+
} | undefined | null;
|
|
15788
16189
|
} | undefined | null;
|
|
15789
16190
|
} | undefined | null;
|
|
15790
16191
|
};
|
|
@@ -15841,6 +16242,9 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
15841
16242
|
alteration: Alteration;
|
|
15842
16243
|
edited: boolean;
|
|
15843
16244
|
} | undefined | null;
|
|
16245
|
+
stream?: {
|
|
16246
|
+
id: string;
|
|
16247
|
+
} | undefined | null;
|
|
15844
16248
|
} | undefined | null;
|
|
15845
16249
|
} | undefined | null;
|
|
15846
16250
|
collection: {
|
|
@@ -15892,6 +16296,9 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
15892
16296
|
alteration: Alteration;
|
|
15893
16297
|
edited: boolean;
|
|
15894
16298
|
} | undefined | null;
|
|
16299
|
+
stream?: {
|
|
16300
|
+
id: string;
|
|
16301
|
+
} | undefined | null;
|
|
15895
16302
|
} | undefined | null;
|
|
15896
16303
|
}>;
|
|
15897
16304
|
pageInfo: {
|
|
@@ -15965,6 +16372,9 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
15965
16372
|
alteration: Alteration;
|
|
15966
16373
|
edited: boolean;
|
|
15967
16374
|
} | undefined | null;
|
|
16375
|
+
stream?: {
|
|
16376
|
+
id: string;
|
|
16377
|
+
} | undefined | null;
|
|
15968
16378
|
} | undefined | null;
|
|
15969
16379
|
};
|
|
15970
16380
|
}>;
|
|
@@ -16025,6 +16435,9 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
16025
16435
|
alteration: Alteration;
|
|
16026
16436
|
edited: boolean;
|
|
16027
16437
|
} | undefined | null;
|
|
16438
|
+
stream?: {
|
|
16439
|
+
id: string;
|
|
16440
|
+
} | undefined | null;
|
|
16028
16441
|
} | undefined | null;
|
|
16029
16442
|
}>;
|
|
16030
16443
|
};
|
|
@@ -16073,6 +16486,9 @@ export type ReplayEntriesBySessionQuery = {
|
|
|
16073
16486
|
alteration: Alteration;
|
|
16074
16487
|
edited: boolean;
|
|
16075
16488
|
} | undefined | null;
|
|
16489
|
+
stream?: {
|
|
16490
|
+
id: string;
|
|
16491
|
+
} | undefined | null;
|
|
16076
16492
|
} | undefined | null;
|
|
16077
16493
|
} | undefined | null;
|
|
16078
16494
|
collection: {
|
|
@@ -16130,6 +16546,9 @@ export type ReplaySessionEntriesQuery = {
|
|
|
16130
16546
|
alteration: Alteration;
|
|
16131
16547
|
edited: boolean;
|
|
16132
16548
|
} | undefined | null;
|
|
16549
|
+
stream?: {
|
|
16550
|
+
id: string;
|
|
16551
|
+
} | undefined | null;
|
|
16133
16552
|
} | undefined | null;
|
|
16134
16553
|
} | undefined | null;
|
|
16135
16554
|
entries: {
|
|
@@ -16180,6 +16599,9 @@ export type ReplaySessionEntriesQuery = {
|
|
|
16180
16599
|
alteration: Alteration;
|
|
16181
16600
|
edited: boolean;
|
|
16182
16601
|
} | undefined | null;
|
|
16602
|
+
stream?: {
|
|
16603
|
+
id: string;
|
|
16604
|
+
} | undefined | null;
|
|
16183
16605
|
} | undefined | null;
|
|
16184
16606
|
};
|
|
16185
16607
|
}>;
|
|
@@ -16257,6 +16679,9 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
16257
16679
|
alteration: Alteration;
|
|
16258
16680
|
edited: boolean;
|
|
16259
16681
|
} | undefined | null;
|
|
16682
|
+
stream?: {
|
|
16683
|
+
id: string;
|
|
16684
|
+
} | undefined | null;
|
|
16260
16685
|
} | undefined | null;
|
|
16261
16686
|
} | undefined | null;
|
|
16262
16687
|
collection: {
|
|
@@ -16308,6 +16733,9 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
16308
16733
|
alteration: Alteration;
|
|
16309
16734
|
edited: boolean;
|
|
16310
16735
|
} | undefined | null;
|
|
16736
|
+
stream?: {
|
|
16737
|
+
id: string;
|
|
16738
|
+
} | undefined | null;
|
|
16311
16739
|
} | undefined | null;
|
|
16312
16740
|
}>;
|
|
16313
16741
|
pageInfo: {
|
|
@@ -16387,6 +16815,9 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
16387
16815
|
alteration: Alteration;
|
|
16388
16816
|
edited: boolean;
|
|
16389
16817
|
} | undefined | null;
|
|
16818
|
+
stream?: {
|
|
16819
|
+
id: string;
|
|
16820
|
+
} | undefined | null;
|
|
16390
16821
|
} | undefined | null;
|
|
16391
16822
|
} | undefined | null;
|
|
16392
16823
|
collection: {
|
|
@@ -16438,6 +16869,9 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
16438
16869
|
alteration: Alteration;
|
|
16439
16870
|
edited: boolean;
|
|
16440
16871
|
} | undefined | null;
|
|
16872
|
+
stream?: {
|
|
16873
|
+
id: string;
|
|
16874
|
+
} | undefined | null;
|
|
16441
16875
|
} | undefined | null;
|
|
16442
16876
|
}>;
|
|
16443
16877
|
pageInfo: {
|
|
@@ -16515,6 +16949,9 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
16515
16949
|
alteration: Alteration;
|
|
16516
16950
|
edited: boolean;
|
|
16517
16951
|
} | undefined | null;
|
|
16952
|
+
stream?: {
|
|
16953
|
+
id: string;
|
|
16954
|
+
} | undefined | null;
|
|
16518
16955
|
} | undefined | null;
|
|
16519
16956
|
} | undefined | null;
|
|
16520
16957
|
collection: {
|
|
@@ -16566,6 +17003,9 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
16566
17003
|
alteration: Alteration;
|
|
16567
17004
|
edited: boolean;
|
|
16568
17005
|
} | undefined | null;
|
|
17006
|
+
stream?: {
|
|
17007
|
+
id: string;
|
|
17008
|
+
} | undefined | null;
|
|
16569
17009
|
} | undefined | null;
|
|
16570
17010
|
}>;
|
|
16571
17011
|
pageInfo: {
|
|
@@ -16648,6 +17088,9 @@ export type RenameReplaySessionMutation = {
|
|
|
16648
17088
|
alteration: Alteration;
|
|
16649
17089
|
edited: boolean;
|
|
16650
17090
|
} | undefined | null;
|
|
17091
|
+
stream?: {
|
|
17092
|
+
id: string;
|
|
17093
|
+
} | undefined | null;
|
|
16651
17094
|
} | undefined | null;
|
|
16652
17095
|
} | undefined | null;
|
|
16653
17096
|
collection: {
|
|
@@ -16699,6 +17142,9 @@ export type RenameReplaySessionMutation = {
|
|
|
16699
17142
|
alteration: Alteration;
|
|
16700
17143
|
edited: boolean;
|
|
16701
17144
|
} | undefined | null;
|
|
17145
|
+
stream?: {
|
|
17146
|
+
id: string;
|
|
17147
|
+
} | undefined | null;
|
|
16702
17148
|
} | undefined | null;
|
|
16703
17149
|
}>;
|
|
16704
17150
|
pageInfo: {
|
|
@@ -16772,6 +17218,9 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
16772
17218
|
alteration: Alteration;
|
|
16773
17219
|
edited: boolean;
|
|
16774
17220
|
} | undefined | null;
|
|
17221
|
+
stream?: {
|
|
17222
|
+
id: string;
|
|
17223
|
+
} | undefined | null;
|
|
16775
17224
|
} | undefined | null;
|
|
16776
17225
|
} | undefined | null;
|
|
16777
17226
|
collection: {
|
|
@@ -16823,6 +17272,9 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
16823
17272
|
alteration: Alteration;
|
|
16824
17273
|
edited: boolean;
|
|
16825
17274
|
} | undefined | null;
|
|
17275
|
+
stream?: {
|
|
17276
|
+
id: string;
|
|
17277
|
+
} | undefined | null;
|
|
16826
17278
|
} | undefined | null;
|
|
16827
17279
|
}>;
|
|
16828
17280
|
pageInfo: {
|
|
@@ -16911,6 +17363,9 @@ export type CreateReplaySessionMutation = {
|
|
|
16911
17363
|
alteration: Alteration;
|
|
16912
17364
|
edited: boolean;
|
|
16913
17365
|
} | undefined | null;
|
|
17366
|
+
stream?: {
|
|
17367
|
+
id: string;
|
|
17368
|
+
} | undefined | null;
|
|
16914
17369
|
} | undefined | null;
|
|
16915
17370
|
} | undefined | null;
|
|
16916
17371
|
collection: {
|
|
@@ -16962,6 +17417,9 @@ export type CreateReplaySessionMutation = {
|
|
|
16962
17417
|
alteration: Alteration;
|
|
16963
17418
|
edited: boolean;
|
|
16964
17419
|
} | undefined | null;
|
|
17420
|
+
stream?: {
|
|
17421
|
+
id: string;
|
|
17422
|
+
} | undefined | null;
|
|
16965
17423
|
} | undefined | null;
|
|
16966
17424
|
}>;
|
|
16967
17425
|
pageInfo: {
|
|
@@ -17024,6 +17482,9 @@ export type CreateReplaySessionMutation = {
|
|
|
17024
17482
|
alteration: Alteration;
|
|
17025
17483
|
edited: boolean;
|
|
17026
17484
|
} | undefined | null;
|
|
17485
|
+
stream?: {
|
|
17486
|
+
id: string;
|
|
17487
|
+
} | undefined | null;
|
|
17027
17488
|
} | undefined | null;
|
|
17028
17489
|
} | undefined | null;
|
|
17029
17490
|
entries: {
|
|
@@ -17072,6 +17533,9 @@ export type CreateReplaySessionMutation = {
|
|
|
17072
17533
|
alteration: Alteration;
|
|
17073
17534
|
edited: boolean;
|
|
17074
17535
|
} | undefined | null;
|
|
17536
|
+
stream?: {
|
|
17537
|
+
id: string;
|
|
17538
|
+
} | undefined | null;
|
|
17075
17539
|
} | undefined | null;
|
|
17076
17540
|
}>;
|
|
17077
17541
|
pageInfo: {
|
|
@@ -17145,6 +17609,9 @@ export type MoveReplaySessionMutation = {
|
|
|
17145
17609
|
alteration: Alteration;
|
|
17146
17610
|
edited: boolean;
|
|
17147
17611
|
} | undefined | null;
|
|
17612
|
+
stream?: {
|
|
17613
|
+
id: string;
|
|
17614
|
+
} | undefined | null;
|
|
17148
17615
|
} | undefined | null;
|
|
17149
17616
|
} | undefined | null;
|
|
17150
17617
|
collection: {
|
|
@@ -17196,6 +17663,9 @@ export type MoveReplaySessionMutation = {
|
|
|
17196
17663
|
alteration: Alteration;
|
|
17197
17664
|
edited: boolean;
|
|
17198
17665
|
} | undefined | null;
|
|
17666
|
+
stream?: {
|
|
17667
|
+
id: string;
|
|
17668
|
+
} | undefined | null;
|
|
17199
17669
|
} | undefined | null;
|
|
17200
17670
|
}>;
|
|
17201
17671
|
pageInfo: {
|
|
@@ -17269,6 +17739,9 @@ export type StartReplayTaskMutation = {
|
|
|
17269
17739
|
alteration: Alteration;
|
|
17270
17740
|
edited: boolean;
|
|
17271
17741
|
} | undefined | null;
|
|
17742
|
+
stream?: {
|
|
17743
|
+
id: string;
|
|
17744
|
+
} | undefined | null;
|
|
17272
17745
|
} | undefined | null;
|
|
17273
17746
|
};
|
|
17274
17747
|
} | undefined | null;
|
|
@@ -17345,6 +17818,9 @@ export type CreatedReplaySessionSubscription = {
|
|
|
17345
17818
|
alteration: Alteration;
|
|
17346
17819
|
edited: boolean;
|
|
17347
17820
|
} | undefined | null;
|
|
17821
|
+
stream?: {
|
|
17822
|
+
id: string;
|
|
17823
|
+
} | undefined | null;
|
|
17348
17824
|
} | undefined | null;
|
|
17349
17825
|
} | undefined | null;
|
|
17350
17826
|
collection: {
|
|
@@ -17396,6 +17872,9 @@ export type CreatedReplaySessionSubscription = {
|
|
|
17396
17872
|
alteration: Alteration;
|
|
17397
17873
|
edited: boolean;
|
|
17398
17874
|
} | undefined | null;
|
|
17875
|
+
stream?: {
|
|
17876
|
+
id: string;
|
|
17877
|
+
} | undefined | null;
|
|
17399
17878
|
} | undefined | null;
|
|
17400
17879
|
}>;
|
|
17401
17880
|
pageInfo: {
|
|
@@ -17471,6 +17950,9 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
17471
17950
|
alteration: Alteration;
|
|
17472
17951
|
edited: boolean;
|
|
17473
17952
|
} | undefined | null;
|
|
17953
|
+
stream?: {
|
|
17954
|
+
id: string;
|
|
17955
|
+
} | undefined | null;
|
|
17474
17956
|
} | undefined | null;
|
|
17475
17957
|
} | undefined | null;
|
|
17476
17958
|
collection: {
|
|
@@ -17522,6 +18004,9 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
17522
18004
|
alteration: Alteration;
|
|
17523
18005
|
edited: boolean;
|
|
17524
18006
|
} | undefined | null;
|
|
18007
|
+
stream?: {
|
|
18008
|
+
id: string;
|
|
18009
|
+
} | undefined | null;
|
|
17525
18010
|
} | undefined | null;
|
|
17526
18011
|
}>;
|
|
17527
18012
|
pageInfo: {
|
|
@@ -17608,6 +18093,9 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
17608
18093
|
alteration: Alteration;
|
|
17609
18094
|
edited: boolean;
|
|
17610
18095
|
} | undefined | null;
|
|
18096
|
+
stream?: {
|
|
18097
|
+
id: string;
|
|
18098
|
+
} | undefined | null;
|
|
17611
18099
|
} | undefined | null;
|
|
17612
18100
|
} | undefined | null;
|
|
17613
18101
|
collection: {
|
|
@@ -17659,6 +18147,9 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
17659
18147
|
alteration: Alteration;
|
|
17660
18148
|
edited: boolean;
|
|
17661
18149
|
} | undefined | null;
|
|
18150
|
+
stream?: {
|
|
18151
|
+
id: string;
|
|
18152
|
+
} | undefined | null;
|
|
17662
18153
|
} | undefined | null;
|
|
17663
18154
|
}>;
|
|
17664
18155
|
pageInfo: {
|
|
@@ -17738,6 +18229,9 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
17738
18229
|
alteration: Alteration;
|
|
17739
18230
|
edited: boolean;
|
|
17740
18231
|
} | undefined | null;
|
|
18232
|
+
stream?: {
|
|
18233
|
+
id: string;
|
|
18234
|
+
} | undefined | null;
|
|
17741
18235
|
} | undefined | null;
|
|
17742
18236
|
} | undefined | null;
|
|
17743
18237
|
collection: {
|
|
@@ -17789,6 +18283,9 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
17789
18283
|
alteration: Alteration;
|
|
17790
18284
|
edited: boolean;
|
|
17791
18285
|
} | undefined | null;
|
|
18286
|
+
stream?: {
|
|
18287
|
+
id: string;
|
|
18288
|
+
} | undefined | null;
|
|
17792
18289
|
} | undefined | null;
|
|
17793
18290
|
}>;
|
|
17794
18291
|
pageInfo: {
|
|
@@ -17865,6 +18362,9 @@ export type RequestFullFragment = {
|
|
|
17865
18362
|
alteration: Alteration;
|
|
17866
18363
|
edited: boolean;
|
|
17867
18364
|
} | undefined | null;
|
|
18365
|
+
stream?: {
|
|
18366
|
+
id: string;
|
|
18367
|
+
} | undefined | null;
|
|
17868
18368
|
}>;
|
|
17869
18369
|
metadata: {
|
|
17870
18370
|
__typename: "RequestMetadata";
|
|
@@ -17881,6 +18381,9 @@ export type RequestFullFragment = {
|
|
|
17881
18381
|
alteration: Alteration;
|
|
17882
18382
|
edited: boolean;
|
|
17883
18383
|
} | undefined | null;
|
|
18384
|
+
stream?: {
|
|
18385
|
+
id: string;
|
|
18386
|
+
} | undefined | null;
|
|
17884
18387
|
};
|
|
17885
18388
|
export type RequestFullFieldsFragment = {
|
|
17886
18389
|
__typename: "Request";
|
|
@@ -17930,6 +18433,9 @@ export type RequestFullFieldsFragment = {
|
|
|
17930
18433
|
alteration: Alteration;
|
|
17931
18434
|
edited: boolean;
|
|
17932
18435
|
} | undefined | null;
|
|
18436
|
+
stream?: {
|
|
18437
|
+
id: string;
|
|
18438
|
+
} | undefined | null;
|
|
17933
18439
|
}>;
|
|
17934
18440
|
metadata: {
|
|
17935
18441
|
__typename: "RequestMetadata";
|
|
@@ -17946,6 +18452,9 @@ export type RequestFullFieldsFragment = {
|
|
|
17946
18452
|
alteration: Alteration;
|
|
17947
18453
|
edited: boolean;
|
|
17948
18454
|
} | undefined | null;
|
|
18455
|
+
stream?: {
|
|
18456
|
+
id: string;
|
|
18457
|
+
} | undefined | null;
|
|
17949
18458
|
};
|
|
17950
18459
|
export type RequestMetaFragment = {
|
|
17951
18460
|
__typename: "Request";
|
|
@@ -17978,6 +18487,9 @@ export type RequestMetaFragment = {
|
|
|
17978
18487
|
alteration: Alteration;
|
|
17979
18488
|
edited: boolean;
|
|
17980
18489
|
} | undefined | null;
|
|
18490
|
+
stream?: {
|
|
18491
|
+
id: string;
|
|
18492
|
+
} | undefined | null;
|
|
17981
18493
|
};
|
|
17982
18494
|
export type RequestEdgeMetaFragment = {
|
|
17983
18495
|
__typename: "RequestEdge";
|
|
@@ -18013,6 +18525,9 @@ export type RequestEdgeMetaFragment = {
|
|
|
18013
18525
|
alteration: Alteration;
|
|
18014
18526
|
edited: boolean;
|
|
18015
18527
|
} | undefined | null;
|
|
18528
|
+
stream?: {
|
|
18529
|
+
id: string;
|
|
18530
|
+
} | undefined | null;
|
|
18016
18531
|
};
|
|
18017
18532
|
};
|
|
18018
18533
|
export type RequestMetadataFullFragment = {
|
|
@@ -18066,6 +18581,9 @@ export type RequestsQuery = {
|
|
|
18066
18581
|
alteration: Alteration;
|
|
18067
18582
|
edited: boolean;
|
|
18068
18583
|
} | undefined | null;
|
|
18584
|
+
stream?: {
|
|
18585
|
+
id: string;
|
|
18586
|
+
} | undefined | null;
|
|
18069
18587
|
};
|
|
18070
18588
|
}>;
|
|
18071
18589
|
pageInfo: {
|
|
@@ -18143,6 +18661,9 @@ export type RequestQuery = {
|
|
|
18143
18661
|
alteration: Alteration;
|
|
18144
18662
|
edited: boolean;
|
|
18145
18663
|
} | undefined | null;
|
|
18664
|
+
stream?: {
|
|
18665
|
+
id: string;
|
|
18666
|
+
} | undefined | null;
|
|
18146
18667
|
}>;
|
|
18147
18668
|
metadata: {
|
|
18148
18669
|
__typename: "RequestMetadata";
|
|
@@ -18159,6 +18680,9 @@ export type RequestQuery = {
|
|
|
18159
18680
|
alteration: Alteration;
|
|
18160
18681
|
edited: boolean;
|
|
18161
18682
|
} | undefined | null;
|
|
18683
|
+
stream?: {
|
|
18684
|
+
id: string;
|
|
18685
|
+
} | undefined | null;
|
|
18162
18686
|
} | undefined | null;
|
|
18163
18687
|
};
|
|
18164
18688
|
export type RequestBrowserUrlQueryVariables = Exact<{
|
|
@@ -18216,6 +18740,9 @@ export type RequestsByOffsetQuery = {
|
|
|
18216
18740
|
alteration: Alteration;
|
|
18217
18741
|
edited: boolean;
|
|
18218
18742
|
} | undefined | null;
|
|
18743
|
+
stream?: {
|
|
18744
|
+
id: string;
|
|
18745
|
+
} | undefined | null;
|
|
18219
18746
|
};
|
|
18220
18747
|
}>;
|
|
18221
18748
|
pageInfo: {
|
|
@@ -18330,6 +18857,9 @@ export type CreatedRequestSubscription = {
|
|
|
18330
18857
|
alteration: Alteration;
|
|
18331
18858
|
edited: boolean;
|
|
18332
18859
|
} | undefined | null;
|
|
18860
|
+
stream?: {
|
|
18861
|
+
id: string;
|
|
18862
|
+
} | undefined | null;
|
|
18333
18863
|
};
|
|
18334
18864
|
};
|
|
18335
18865
|
};
|
|
@@ -18376,6 +18906,9 @@ export type UpdatedRequestSubscription = {
|
|
|
18376
18906
|
alteration: Alteration;
|
|
18377
18907
|
edited: boolean;
|
|
18378
18908
|
} | undefined | null;
|
|
18909
|
+
stream?: {
|
|
18910
|
+
id: string;
|
|
18911
|
+
} | undefined | null;
|
|
18379
18912
|
};
|
|
18380
18913
|
};
|
|
18381
18914
|
};
|
|
@@ -18798,6 +19331,9 @@ export type SitemapEntryRequestsQuery = {
|
|
|
18798
19331
|
alteration: Alteration;
|
|
18799
19332
|
edited: boolean;
|
|
18800
19333
|
} | undefined | null;
|
|
19334
|
+
stream?: {
|
|
19335
|
+
id: string;
|
|
19336
|
+
} | undefined | null;
|
|
18801
19337
|
};
|
|
18802
19338
|
}>;
|
|
18803
19339
|
};
|
|
@@ -18848,6 +19384,9 @@ export type CreatedSitemapEntrySubscription = {
|
|
|
18848
19384
|
alteration: Alteration;
|
|
18849
19385
|
edited: boolean;
|
|
18850
19386
|
} | undefined | null;
|
|
19387
|
+
stream?: {
|
|
19388
|
+
id: string;
|
|
19389
|
+
} | undefined | null;
|
|
18851
19390
|
};
|
|
18852
19391
|
} | undefined | null;
|
|
18853
19392
|
sitemapEntryEdge: {
|
|
@@ -18912,6 +19451,9 @@ export type UpdatedSitemapEntrySubscription = {
|
|
|
18912
19451
|
alteration: Alteration;
|
|
18913
19452
|
edited: boolean;
|
|
18914
19453
|
} | undefined | null;
|
|
19454
|
+
stream?: {
|
|
19455
|
+
id: string;
|
|
19456
|
+
} | undefined | null;
|
|
18915
19457
|
};
|
|
18916
19458
|
};
|
|
18917
19459
|
sitemapEntryEdge: {
|
|
@@ -18961,38 +19503,64 @@ export type StreamEdgeMetaFragment = {
|
|
|
18961
19503
|
};
|
|
18962
19504
|
};
|
|
18963
19505
|
export type StreamWsMessageMetaFragment = {
|
|
19506
|
+
id: string;
|
|
19507
|
+
stream: {
|
|
19508
|
+
id: string;
|
|
19509
|
+
};
|
|
19510
|
+
edits: Array<{
|
|
19511
|
+
id: string;
|
|
19512
|
+
alteration: Alteration;
|
|
19513
|
+
}>;
|
|
19514
|
+
head: {
|
|
19515
|
+
id: string;
|
|
19516
|
+
length: number;
|
|
19517
|
+
alteration: Alteration;
|
|
19518
|
+
direction: StreamMessageDirection;
|
|
19519
|
+
format: StreamWsMessageFormat;
|
|
19520
|
+
createdAt: Date;
|
|
19521
|
+
};
|
|
19522
|
+
};
|
|
19523
|
+
export type StreamWsMessageEditRefFragment = {
|
|
19524
|
+
id: string;
|
|
19525
|
+
alteration: Alteration;
|
|
19526
|
+
};
|
|
19527
|
+
export type StreamWsMessageEditMetaFragment = {
|
|
18964
19528
|
id: string;
|
|
18965
19529
|
length: number;
|
|
18966
|
-
createdAt: Date;
|
|
18967
|
-
direction: StreamMessageDirection;
|
|
18968
|
-
edited: boolean;
|
|
18969
19530
|
alteration: Alteration;
|
|
19531
|
+
direction: StreamMessageDirection;
|
|
18970
19532
|
format: StreamWsMessageFormat;
|
|
18971
|
-
|
|
19533
|
+
createdAt: Date;
|
|
18972
19534
|
};
|
|
18973
|
-
export type
|
|
19535
|
+
export type StreamWsMessageEditFullFragment = {
|
|
18974
19536
|
raw: string;
|
|
18975
19537
|
id: string;
|
|
18976
19538
|
length: number;
|
|
18977
|
-
createdAt: Date;
|
|
18978
|
-
direction: StreamMessageDirection;
|
|
18979
|
-
edited: boolean;
|
|
18980
19539
|
alteration: Alteration;
|
|
19540
|
+
direction: StreamMessageDirection;
|
|
18981
19541
|
format: StreamWsMessageFormat;
|
|
18982
|
-
|
|
19542
|
+
createdAt: Date;
|
|
18983
19543
|
};
|
|
18984
19544
|
export type StreamWsMessageEdgeMetaFragment = {
|
|
18985
19545
|
__typename: "StreamWsMessageEdge";
|
|
18986
19546
|
cursor: string;
|
|
18987
19547
|
node: {
|
|
18988
19548
|
id: string;
|
|
18989
|
-
|
|
18990
|
-
|
|
18991
|
-
|
|
18992
|
-
|
|
18993
|
-
|
|
18994
|
-
|
|
18995
|
-
|
|
19549
|
+
stream: {
|
|
19550
|
+
id: string;
|
|
19551
|
+
};
|
|
19552
|
+
edits: Array<{
|
|
19553
|
+
id: string;
|
|
19554
|
+
alteration: Alteration;
|
|
19555
|
+
}>;
|
|
19556
|
+
head: {
|
|
19557
|
+
id: string;
|
|
19558
|
+
length: number;
|
|
19559
|
+
alteration: Alteration;
|
|
19560
|
+
direction: StreamMessageDirection;
|
|
19561
|
+
format: StreamWsMessageFormat;
|
|
19562
|
+
createdAt: Date;
|
|
19563
|
+
};
|
|
18996
19564
|
};
|
|
18997
19565
|
};
|
|
18998
19566
|
export type WebsocketStreamsBeforeQueryVariables = Exact<{
|
|
@@ -19123,13 +19691,21 @@ export type WebsocketMessagesAfterQuery = {
|
|
|
19123
19691
|
cursor: string;
|
|
19124
19692
|
node: {
|
|
19125
19693
|
id: string;
|
|
19126
|
-
|
|
19127
|
-
|
|
19128
|
-
|
|
19129
|
-
|
|
19130
|
-
|
|
19131
|
-
|
|
19132
|
-
|
|
19694
|
+
stream: {
|
|
19695
|
+
id: string;
|
|
19696
|
+
};
|
|
19697
|
+
edits: Array<{
|
|
19698
|
+
id: string;
|
|
19699
|
+
alteration: Alteration;
|
|
19700
|
+
}>;
|
|
19701
|
+
head: {
|
|
19702
|
+
id: string;
|
|
19703
|
+
length: number;
|
|
19704
|
+
alteration: Alteration;
|
|
19705
|
+
direction: StreamMessageDirection;
|
|
19706
|
+
format: StreamWsMessageFormat;
|
|
19707
|
+
createdAt: Date;
|
|
19708
|
+
};
|
|
19133
19709
|
};
|
|
19134
19710
|
}>;
|
|
19135
19711
|
pageInfo: {
|
|
@@ -19155,13 +19731,21 @@ export type WebsocketMessagesBeforeQuery = {
|
|
|
19155
19731
|
cursor: string;
|
|
19156
19732
|
node: {
|
|
19157
19733
|
id: string;
|
|
19158
|
-
|
|
19159
|
-
|
|
19160
|
-
|
|
19161
|
-
|
|
19162
|
-
|
|
19163
|
-
|
|
19164
|
-
|
|
19734
|
+
stream: {
|
|
19735
|
+
id: string;
|
|
19736
|
+
};
|
|
19737
|
+
edits: Array<{
|
|
19738
|
+
id: string;
|
|
19739
|
+
alteration: Alteration;
|
|
19740
|
+
}>;
|
|
19741
|
+
head: {
|
|
19742
|
+
id: string;
|
|
19743
|
+
length: number;
|
|
19744
|
+
alteration: Alteration;
|
|
19745
|
+
direction: StreamMessageDirection;
|
|
19746
|
+
format: StreamWsMessageFormat;
|
|
19747
|
+
createdAt: Date;
|
|
19748
|
+
};
|
|
19165
19749
|
};
|
|
19166
19750
|
}>;
|
|
19167
19751
|
pageInfo: {
|
|
@@ -19187,13 +19771,21 @@ export type WebsocketMessagesByOffsetQuery = {
|
|
|
19187
19771
|
cursor: string;
|
|
19188
19772
|
node: {
|
|
19189
19773
|
id: string;
|
|
19190
|
-
|
|
19191
|
-
|
|
19192
|
-
|
|
19193
|
-
|
|
19194
|
-
|
|
19195
|
-
|
|
19196
|
-
|
|
19774
|
+
stream: {
|
|
19775
|
+
id: string;
|
|
19776
|
+
};
|
|
19777
|
+
edits: Array<{
|
|
19778
|
+
id: string;
|
|
19779
|
+
alteration: Alteration;
|
|
19780
|
+
}>;
|
|
19781
|
+
head: {
|
|
19782
|
+
id: string;
|
|
19783
|
+
length: number;
|
|
19784
|
+
alteration: Alteration;
|
|
19785
|
+
direction: StreamMessageDirection;
|
|
19786
|
+
format: StreamWsMessageFormat;
|
|
19787
|
+
createdAt: Date;
|
|
19788
|
+
};
|
|
19197
19789
|
};
|
|
19198
19790
|
}>;
|
|
19199
19791
|
pageInfo: {
|
|
@@ -19222,15 +19814,36 @@ export type WebsocketMessageQueryVariables = Exact<{
|
|
|
19222
19814
|
}>;
|
|
19223
19815
|
export type WebsocketMessageQuery = {
|
|
19224
19816
|
streamWsMessage?: {
|
|
19817
|
+
id: string;
|
|
19818
|
+
stream: {
|
|
19819
|
+
id: string;
|
|
19820
|
+
};
|
|
19821
|
+
edits: Array<{
|
|
19822
|
+
id: string;
|
|
19823
|
+
alteration: Alteration;
|
|
19824
|
+
}>;
|
|
19825
|
+
head: {
|
|
19826
|
+
id: string;
|
|
19827
|
+
length: number;
|
|
19828
|
+
alteration: Alteration;
|
|
19829
|
+
direction: StreamMessageDirection;
|
|
19830
|
+
format: StreamWsMessageFormat;
|
|
19831
|
+
createdAt: Date;
|
|
19832
|
+
};
|
|
19833
|
+
} | undefined | null;
|
|
19834
|
+
};
|
|
19835
|
+
export type WebsocketMessageEditQueryVariables = Exact<{
|
|
19836
|
+
id: Scalars["ID"]["input"];
|
|
19837
|
+
}>;
|
|
19838
|
+
export type WebsocketMessageEditQuery = {
|
|
19839
|
+
streamWsMessageEdit?: {
|
|
19225
19840
|
raw: string;
|
|
19226
19841
|
id: string;
|
|
19227
19842
|
length: number;
|
|
19228
|
-
createdAt: Date;
|
|
19229
|
-
direction: StreamMessageDirection;
|
|
19230
|
-
edited: boolean;
|
|
19231
19843
|
alteration: Alteration;
|
|
19844
|
+
direction: StreamMessageDirection;
|
|
19232
19845
|
format: StreamWsMessageFormat;
|
|
19233
|
-
|
|
19846
|
+
createdAt: Date;
|
|
19234
19847
|
} | undefined | null;
|
|
19235
19848
|
};
|
|
19236
19849
|
export type CreatedWsStreamSubscriptionVariables = Exact<{
|
|
@@ -19269,13 +19882,51 @@ export type CreatedStreamWsMessageSubscription = {
|
|
|
19269
19882
|
cursor: string;
|
|
19270
19883
|
node: {
|
|
19271
19884
|
id: string;
|
|
19272
|
-
|
|
19273
|
-
|
|
19274
|
-
|
|
19275
|
-
|
|
19276
|
-
|
|
19277
|
-
|
|
19278
|
-
|
|
19885
|
+
stream: {
|
|
19886
|
+
id: string;
|
|
19887
|
+
};
|
|
19888
|
+
edits: Array<{
|
|
19889
|
+
id: string;
|
|
19890
|
+
alteration: Alteration;
|
|
19891
|
+
}>;
|
|
19892
|
+
head: {
|
|
19893
|
+
id: string;
|
|
19894
|
+
length: number;
|
|
19895
|
+
alteration: Alteration;
|
|
19896
|
+
direction: StreamMessageDirection;
|
|
19897
|
+
format: StreamWsMessageFormat;
|
|
19898
|
+
createdAt: Date;
|
|
19899
|
+
};
|
|
19900
|
+
};
|
|
19901
|
+
};
|
|
19902
|
+
};
|
|
19903
|
+
};
|
|
19904
|
+
export type UpdatedStreamWsMessageSubscriptionVariables = Exact<{
|
|
19905
|
+
order: StreamWsMessageOrderInput;
|
|
19906
|
+
}>;
|
|
19907
|
+
export type UpdatedStreamWsMessageSubscription = {
|
|
19908
|
+
updatedStreamWsMessage: {
|
|
19909
|
+
snapshot: number;
|
|
19910
|
+
messageEdge: {
|
|
19911
|
+
__typename: "StreamWsMessageEdge";
|
|
19912
|
+
cursor: string;
|
|
19913
|
+
node: {
|
|
19914
|
+
id: string;
|
|
19915
|
+
stream: {
|
|
19916
|
+
id: string;
|
|
19917
|
+
};
|
|
19918
|
+
edits: Array<{
|
|
19919
|
+
id: string;
|
|
19920
|
+
alteration: Alteration;
|
|
19921
|
+
}>;
|
|
19922
|
+
head: {
|
|
19923
|
+
id: string;
|
|
19924
|
+
length: number;
|
|
19925
|
+
alteration: Alteration;
|
|
19926
|
+
direction: StreamMessageDirection;
|
|
19927
|
+
format: StreamWsMessageFormat;
|
|
19928
|
+
createdAt: Date;
|
|
19929
|
+
};
|
|
19279
19930
|
};
|
|
19280
19931
|
};
|
|
19281
19932
|
};
|
|
@@ -19344,6 +19995,9 @@ export type GetTasksQuery = {
|
|
|
19344
19995
|
alteration: Alteration;
|
|
19345
19996
|
edited: boolean;
|
|
19346
19997
|
} | undefined | null;
|
|
19998
|
+
stream?: {
|
|
19999
|
+
id: string;
|
|
20000
|
+
} | undefined | null;
|
|
19347
20001
|
} | undefined | null;
|
|
19348
20002
|
};
|
|
19349
20003
|
} | {
|
|
@@ -19431,6 +20085,9 @@ export type StartedTaskSubscription = {
|
|
|
19431
20085
|
alteration: Alteration;
|
|
19432
20086
|
edited: boolean;
|
|
19433
20087
|
} | undefined | null;
|
|
20088
|
+
stream?: {
|
|
20089
|
+
id: string;
|
|
20090
|
+
} | undefined | null;
|
|
19434
20091
|
} | undefined | null;
|
|
19435
20092
|
};
|
|
19436
20093
|
} | {
|
|
@@ -19503,6 +20160,9 @@ export type FinishedTaskSubscription = {
|
|
|
19503
20160
|
alteration: Alteration;
|
|
19504
20161
|
edited: boolean;
|
|
19505
20162
|
} | undefined | null;
|
|
20163
|
+
stream?: {
|
|
20164
|
+
id: string;
|
|
20165
|
+
} | undefined | null;
|
|
19506
20166
|
} | undefined | null;
|
|
19507
20167
|
};
|
|
19508
20168
|
} | {
|
|
@@ -20562,7 +21222,7 @@ export declare const AutomateSettingsFullFragmentDoc = "\n fragment automateS
|
|
|
20562
21222
|
export declare const AutomateEntryFullFragmentDoc = "\n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n ";
|
|
20563
21223
|
export declare const RequestMetadataFullFragmentDoc = "\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
20564
21224
|
export declare const ResponseMetaFragmentDoc = "\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
20565
|
-
export declare const RequestMetaFragmentDoc = "\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}\n ";
|
|
21225
|
+
export declare const RequestMetaFragmentDoc = "\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 ";
|
|
20566
21226
|
export declare const AutomateEntryRequestPayloadFullFragmentDoc = "\n fragment automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
20567
21227
|
export declare const AutomateEntryRequestMetaFragmentDoc = "\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\n }\n}\n ";
|
|
20568
21228
|
export declare const AutomateEntryRequestEdgeMetaFragmentDoc = "\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n ";
|
|
@@ -20630,11 +21290,16 @@ export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment
|
|
|
20630
21290
|
export declare const HostedFileFullFragmentDoc = "\n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n updatedAt\n createdAt\n}\n ";
|
|
20631
21291
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
20632
21292
|
export declare const InterceptResponseMessageMetaFragmentDoc = "\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
20633
|
-
export declare const
|
|
21293
|
+
export declare const StreamWsMessageEditRefFragmentDoc = "\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n ";
|
|
21294
|
+
export declare const StreamWsMessageEditMetaFragmentDoc = "\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21295
|
+
export declare const StreamWsMessageMetaFragmentDoc = "\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n ";
|
|
21296
|
+
export declare const InterceptStreamWsMessageMetaFragmentDoc = "\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\n ...streamWsMessageMeta\n }\n}\n ";
|
|
21297
|
+
export declare const InterceptMessageMetaFragmentDoc = "\n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n ";
|
|
20634
21298
|
export declare const InterceptRequestOptionsMetaFragmentDoc = "\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n ";
|
|
20635
21299
|
export declare const InterceptResponseOptionsMetaFragmentDoc = "\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n ";
|
|
21300
|
+
export declare const InterceptStreamWsOptionsMetaFragmentDoc = "\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n ";
|
|
20636
21301
|
export declare const InterceptScopeOptionsMetaFragmentDoc = "\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
20637
|
-
export declare const InterceptOptionsMetaFragmentDoc = "\n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n ";
|
|
21302
|
+
export declare const InterceptOptionsMetaFragmentDoc = "\n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n ";
|
|
20638
21303
|
export declare const TamperMatcherValueFullFragmentDoc = "\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n ";
|
|
20639
21304
|
export declare const TamperMatcherRegexFullFragmentDoc = "\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n ";
|
|
20640
21305
|
export declare const TamperMatcherRawFullFragmentDoc = "\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n ";
|
|
@@ -20704,8 +21369,7 @@ export declare const SitemapEntryMetaFragmentDoc = "\n fragment sitemapEntryM
|
|
|
20704
21369
|
export declare const SitemapEntryEdgeMetaFragmentDoc = "\n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n ";
|
|
20705
21370
|
export declare const StreamMetaFragmentDoc = "\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 ";
|
|
20706
21371
|
export declare const StreamEdgeMetaFragmentDoc = "\n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n ";
|
|
20707
|
-
export declare const
|
|
20708
|
-
export declare const StreamWsMessageFullFragmentDoc = "\n fragment streamWsMessageFull on StreamWsMessage {\n ...streamWsMessageMeta\n raw\n}\n ";
|
|
21372
|
+
export declare const StreamWsMessageEditFullFragmentDoc = "\n fragment streamWsMessageEditFull on StreamWsMessageEdit {\n ...streamWsMessageEditMeta\n raw\n}\n ";
|
|
20709
21373
|
export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n ";
|
|
20710
21374
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
20711
21375
|
export declare const UpstreamProxyHttpFullFragmentDoc = "\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 ";
|
|
@@ -20732,8 +21396,8 @@ export declare const RefreshAuthenticationTokenDocument = "\n mutation refres
|
|
|
20732
21396
|
export declare const LogoutDocument = "\n mutation logout {\n logout {\n success\n error {\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
20733
21397
|
export declare const CreatedAuthenticationTokenDocument = "\n subscription createdAuthenticationToken($requestId: ID!) {\n createdAuthenticationToken(requestId: $requestId) {\n token {\n ...authenticationTokenFull\n }\n error {\n ... on AuthenticationUserError {\n ...authenticationUserErrorFull\n }\n ... on InternalUserError {\n ...internalUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment authenticationTokenFull on AuthenticationToken {\n __typename\n accessToken\n expiresAt\n refreshToken\n scopes\n}\n \n\n fragment authenticationUserErrorFull on AuthenticationUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment internalUserErrorFull on InternalUserError {\n ...userErrorFull\n message\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
20734
21398
|
export declare const AutomateEntryDocument = "\n query automateEntry($id: ID!) {\n automateEntry(id: $id) {\n ...automateEntryFull\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
20735
|
-
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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}\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
20736
|
-
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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}\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
21399
|
+
export declare const AutomateEntryRequestsDocument = "\n query automateEntryRequests($id: ID!, $after: String, $first: Int, $before: String, $last: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n filter: $filter\n ) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
21400
|
+
export declare const AutomateEntryRequestsByOffsetDocument = "\n query automateEntryRequestsByOffset($id: ID!, $limit: Int, $offset: Int, $order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requestsByOffset(limit: $limit, offset: $offset, order: $order, filter: $filter) {\n snapshot\n edges {\n ...automateEntryRequestEdgeMeta\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
20737
21401
|
export declare const AutomateEntryRequestsCountDocument = "\n query automateEntryRequestsCount($id: ID!, $filter: HTTPQL) {\n automateEntry(id: $id) {\n ...automateEntryFull\n requests(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment automateEntryFull on AutomateEntry {\n ...automateEntryMeta\n settings {\n ...automateSettingsFull\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
20738
21402
|
export declare const AutomateSessionsStateDocument = "\n query automateSessionsState {\n automateSessions {\n edges {\n ...automateSessionEdgeMeta\n }\n }\n automateTasks {\n edges {\n ...automateTaskEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment automateSessionEdgeMeta on AutomateSessionEdge {\n node {\n ...automateSessionMeta\n }\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
20739
21403
|
export declare const AutomateSessionDocument = "\n query automateSession($id: ID!) {\n automateSession(id: $id) {\n ...automateSessionFull\n }\n}\n \n fragment automateSessionFull on AutomateSession {\n ...automateSessionMeta\n connection {\n ...connectionInfoFull\n }\n settings {\n ...automateSettingsFull\n }\n raw\n}\n \n\n fragment automateSessionMeta on AutomateSession {\n __typename\n id\n name\n createdAt\n entries {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment automateSettingsFull on AutomateSettings {\n __typename\n closeConnection\n updateContentLength\n strategy\n concurrency {\n ...concurrencySettingFull\n }\n retryOnFailure {\n ...retryOnFailureSettingFull\n }\n payloads {\n ...automatePayloadFull\n }\n placeholders {\n ...automatePlaceholderFull\n }\n}\n \n\n fragment concurrencySettingFull on AutomateConcurrencySetting {\n __typename\n delay\n workers\n}\n \n\n fragment retryOnFailureSettingFull on AutomateRetryOnFailureSetting {\n __typename\n backoff\n maximumRetries\n}\n \n\n fragment automatePayloadFull on AutomatePayload {\n __typename\n options {\n ... on AutomateSimpleListPayload {\n ...simpleListPayloadOptionsFull\n }\n ... on AutomateHostedFilePayload {\n ...hostedFilePayloadOptionsFull\n }\n ... on AutomateNullPayload {\n ...nullPayloadOptionsFull\n }\n ... on AutomateNumberPayload {\n ...numberPayloadOptionsFull\n }\n }\n preprocessors {\n ...automatePreprocessorFull\n }\n}\n \n\n fragment simpleListPayloadOptionsFull on AutomateSimpleListPayload {\n __typename\n list\n}\n \n\n fragment hostedFilePayloadOptionsFull on AutomateHostedFilePayload {\n __typename\n id\n delimiter\n}\n \n\n fragment nullPayloadOptionsFull on AutomateNullPayload {\n __typename\n quantity\n}\n \n\n fragment numberPayloadOptionsFull on AutomateNumberPayload {\n __typename\n range {\n ...rangeFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment automatePreprocessorFull on AutomatePreprocessor {\n __typename\n options {\n ... on AutomatePrefixPreprocessor {\n ...automatePrefixPreprocessorFull\n }\n ... on AutomateSuffixPreprocessor {\n ...automateSuffixPreprocessorFull\n }\n ... on AutomateWorkflowPreprocessor {\n ...automateWorkflowPreprocessorFull\n }\n ... on AutomateUrlEncodePreprocessor {\n ...automateUrlEncodePreprocessorFull\n }\n }\n}\n \n\n fragment automatePrefixPreprocessorFull on AutomatePrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateSuffixPreprocessorFull on AutomateSuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment automateWorkflowPreprocessorFull on AutomateWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment automateUrlEncodePreprocessorFull on AutomateUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment automatePlaceholderFull on AutomatePlaceholder {\n __typename\n start\n end\n}\n ";
|
|
@@ -20747,7 +21411,7 @@ export declare const CancelAutomateTaskDocument = "\n mutation cancelAutomate
|
|
|
20747
21411
|
export declare const PauseAutomateTaskDocument = "\n mutation pauseAutomateTask($id: ID!) {\n pauseAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
20748
21412
|
export declare const ResumeAutomateTaskDocument = "\n mutation resumeAutomateTask($id: ID!) {\n resumeAutomateTask(id: $id) {\n automateTask {\n ...automateTaskMeta\n }\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
20749
21413
|
export declare const StartAutomateTaskDocument = "\n mutation startAutomateTask($automateSessionId: ID!) {\n startAutomateTask(automateSessionId: $automateSessionId) {\n automateTask {\n ...automateTaskMeta\n }\n }\n}\n \n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
20750
|
-
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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}\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
21414
|
+
export declare const CreatedAutomateEntryRequestDocument = "\n subscription createdAutomateEntryRequest($order: AutomateEntryRequestOrderInput, $filter: HTTPQL) {\n createdAutomateEntryRequest(filter: $filter) {\n automateEntryRequestEdge(order: $order) {\n ...automateEntryRequestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateEntryRequestEdgeMeta on AutomateEntryRequestEdge {\n __typename\n node {\n ...automateEntryRequestMeta\n }\n cursor\n}\n \n\n fragment automateEntryRequestMeta on AutomateEntryRequest {\n __typename\n sequenceId\n automateEntryId\n error\n request {\n ...requestMeta\n }\n payloads {\n ...automateEntryRequestPayloadFull\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 automateEntryRequestPayloadFull on AutomateEntryRequestPayload {\n __typename\n position\n raw\n}\n ";
|
|
20751
21415
|
export declare const CreatedAutomateTaskDocument = "\n subscription createdAutomateTask {\n createdAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
20752
21416
|
export declare const DeletedAutomateTaskDocument = "\n subscription deletedAutomateTask {\n deletedAutomateTask {\n deletedAutomateTaskId\n snapshot\n }\n}\n ";
|
|
20753
21417
|
export declare const UpdatedAutomateTaskDocument = "\n subscription updatedAutomateTask {\n updatedAutomateTask {\n automateTaskEdge {\n ...automateTaskEdgeMeta\n }\n snapshot\n }\n}\n \n fragment automateTaskEdgeMeta on AutomateTaskEdge {\n node {\n ...automateTaskMeta\n }\n}\n \n\n fragment automateTaskMeta on AutomateTask {\n id\n paused\n entry {\n ...automateEntryMeta\n }\n}\n \n\n fragment automateEntryMeta on AutomateEntry {\n __typename\n id\n name\n createdAt\n session {\n id\n }\n}\n ";
|
|
@@ -20832,23 +21496,23 @@ export declare const FilterPresetDocument = "\n query filterPreset($id: ID!)
|
|
|
20832
21496
|
export declare const CreatedFilterPresetDocument = "\n subscription createdFilterPreset {\n createdFilterPreset {\n filterEdge {\n ...filterPresetEdgeFull\n }\n }\n}\n \n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n \n\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
20833
21497
|
export declare const UpdatedFilterPresetDocument = "\n subscription updatedFilterPreset {\n updatedFilterPreset {\n filterEdge {\n ...filterPresetEdgeFull\n }\n }\n}\n \n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n \n\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
20834
21498
|
export declare const DeletedFilterPresetDocument = "\n subscription deletedFilterPreset {\n deletedFilterPreset {\n deletedFilterId\n }\n}\n ";
|
|
20835
|
-
export declare const GetFindingsBeforeDocument = "\n query getFindingsBefore($before: String!, $last: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(before: $before, last: $last, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
20836
|
-
export declare const GetFindingsAfterDocument = "\n query getFindingsAfter($after: String!, $first: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(after: $after, first: $first, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
20837
|
-
export declare const GetFindingsByOffsetDocument = "\n query getFindingsByOffset($offset: Int!, $limit: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findingsByOffset(offset: $offset, limit: $limit, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
21499
|
+
export declare const GetFindingsBeforeDocument = "\n query getFindingsBefore($before: String!, $last: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(before: $before, last: $last, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21500
|
+
export declare const GetFindingsAfterDocument = "\n query getFindingsAfter($after: String!, $first: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findings(after: $after, first: $first, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21501
|
+
export declare const GetFindingsByOffsetDocument = "\n query getFindingsByOffset($offset: Int!, $limit: Int!, $filter: FilterClauseFindingInput!, $order: FindingOrderInput!) {\n findingsByOffset(offset: $offset, limit: $limit, filter: $filter, order: $order) {\n edges {\n ...findingEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
20838
21502
|
export declare const GetFindingsCountDocument = "\n query getFindingsCount($filter: FilterClauseFindingInput!) {\n findings(first: 0, filter: $filter) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
20839
21503
|
export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
|
|
20840
|
-
export declare const CreatedFindingDocument = "\n subscription createdFinding($order: FindingOrderInput) {\n createdFinding {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
21504
|
+
export declare const CreatedFindingDocument = "\n subscription createdFinding($order: FindingOrderInput) {\n createdFinding {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\n}\n \n fragment findingEdgeMeta on FindingEdge {\n cursor\n node {\n ...findingMeta\n }\n}\n \n\n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
20841
21505
|
export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
|
|
20842
|
-
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
21506
|
+
export declare const CreateFindingDocument = "\n mutation createFinding($requestId: ID!, $input: CreateFindingInput!) {\n createFinding(requestId: $requestId, input: $input) {\n finding {\n ...findingMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n }\n }\n}\n \n fragment findingMeta on Finding {\n id\n title\n description\n reporter\n host\n path\n createdAt\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n ";
|
|
20843
21507
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($ids: [ID!]!) {\n deleteFindings(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
20844
|
-
export declare const InterceptEntriesDocument = "\n query interceptEntries($after: String, $first: Int, $before: String, $last: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntries(\n after: $after\n first: $first\n before: $before\n last: $last\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
20845
|
-
export declare const InterceptEntriesByOffsetDocument = "\n query interceptEntriesByOffset($limit: Int, $offset: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntriesByOffset(\n limit: $limit\n offset: $offset\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
20846
|
-
export declare const InterceptEntryDocument = "\n query interceptEntry($id: ID!) {\n interceptEntry(id: $id) {\n ...interceptEntryFull\n }\n}\n \n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
21508
|
+
export declare const InterceptEntriesDocument = "\n query interceptEntries($after: String, $first: Int, $before: String, $last: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntries(\n after: $after\n first: $first\n before: $before\n last: $last\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21509
|
+
export declare const InterceptEntriesByOffsetDocument = "\n query interceptEntriesByOffset($limit: Int, $offset: Int, $order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n interceptEntriesByOffset(\n limit: $limit\n offset: $offset\n order: $order\n filter: $filter\n scopeId: $scopeId\n ) {\n edges {\n ...interceptEntryEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21510
|
+
export declare const InterceptEntryDocument = "\n query interceptEntry($id: ID!) {\n interceptEntry(id: $id) {\n ...interceptEntryFull\n }\n}\n \n fragment interceptEntryFull on InterceptEntry {\n ...interceptEntryMeta\n request {\n ...requestFull\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
20847
21511
|
export declare const InterceptEntryCountDocument = "\n query interceptEntryCount($filter: HTTPQL, $scopeId: ID) {\n interceptEntries(first: 0, filter: $filter, scopeId: $scopeId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
20848
21512
|
export declare const DeleteInterceptEntriesDocument = "\n mutation deleteInterceptEntries($filter: HTTPQL, $scopeId: ID) {\n deleteInterceptEntries(filter: $filter, scopeId: $scopeId) {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n error: userError {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
20849
21513
|
export declare const DeleteInterceptEntryDocument = "\n mutation deleteInterceptEntry($id: ID!) {\n deleteInterceptEntry(id: $id) {\n deletedId\n error: userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
20850
|
-
export declare const CreatedInterceptEntryDocument = "\n subscription createdInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n createdInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
20851
|
-
export declare const UpdatedInterceptEntryDocument = "\n subscription updatedInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n updatedInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 ";
|
|
21514
|
+
export declare const CreatedInterceptEntryDocument = "\n subscription createdInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n createdInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
21515
|
+
export declare const UpdatedInterceptEntryDocument = "\n subscription updatedInterceptEntry($order: InterceptEntryOrderInput, $filter: HTTPQL, $scopeId: ID) {\n updatedInterceptEntry(filter: $filter, scopeId: $scopeId) {\n interceptEntryEdge(order: $order) {\n ...interceptEntryEdgeMeta\n }\n snapshot\n }\n}\n \n fragment interceptEntryEdgeMeta on InterceptEntryEdge {\n __typename\n cursor\n node {\n ...interceptEntryMeta\n }\n}\n \n\n fragment interceptEntryMeta on InterceptEntry {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
20852
21516
|
export declare const DeletedInterceptEntryDocument = "\n subscription deletedInterceptEntry {\n deletedInterceptEntry {\n deletedEntryId\n snapshot\n }\n}\n ";
|
|
20853
21517
|
export declare const StartedDeleteInterceptEntriesTaskDocument = "\n subscription startedDeleteInterceptEntriesTask {\n startedDeleteInterceptEntriesTask {\n task {\n ...deleteInterceptEntriesTaskFull\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
20854
21518
|
export declare const UpdatedDeleteInterceptEntriesTaskDocument = "\n subscription updatedDeleteInterceptEntriesTask {\n updatedDeleteInterceptEntriesTask {\n snapshot\n task {\n ...deleteInterceptEntriesTaskFull\n }\n }\n}\n \n fragment deleteInterceptEntriesTaskFull on DeleteInterceptEntriesTask {\n __typename\n id\n deletedEntryIds\n}\n ";
|
|
@@ -20859,15 +21523,17 @@ export declare const UploadHostedFileDocument = "\n mutation uploadHostedFile
|
|
|
20859
21523
|
export declare const HostedFilesDocument = "\n query hostedFiles {\n hostedFiles {\n ...hostedFileFull\n }\n}\n \n fragment hostedFileFull on HostedFile {\n __typename\n id\n name\n path\n size\n updatedAt\n createdAt\n}\n ";
|
|
20860
21524
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
20861
21525
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
20862
|
-
export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
21526
|
+
export declare const SetInterceptOptionsDocument = "\n mutation setInterceptOptions($input: InterceptOptionsInput!) {\n setInterceptOptions(input: $input) {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
20863
21527
|
export declare const PauseInterceptDocument = "\n mutation pauseIntercept {\n pauseIntercept {\n status\n }\n}\n ";
|
|
20864
21528
|
export declare const ResumeInterceptDocument = "\n mutation resumeIntercept {\n resumeIntercept {\n status\n }\n}\n ";
|
|
20865
|
-
export declare const InterceptRequestMessagesDocument = "\n query interceptRequestMessages($first: Int!) {\n interceptMessages(first: $first, kind: REQUEST) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
20866
|
-
export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n}\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 interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
20867
|
-
export declare const
|
|
21529
|
+
export declare const InterceptRequestMessagesDocument = "\n query interceptRequestMessages($first: Int!) {\n interceptMessages(first: $first, kind: REQUEST) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\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 ";
|
|
21530
|
+
export declare const InterceptResponseMessagesDocument = "\n query interceptResponseMessages($first: Int!) {\n interceptMessages(first: $first, kind: RESPONSE) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\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 ";
|
|
21531
|
+
export declare const InterceptStreamWsMessagesDocument = "\n query interceptStreamWsMessages($first: Int!) {\n interceptMessages(first: $first, kind: STREAM_WS) {\n nodes {\n ...interceptMessageMeta\n }\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\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 ";
|
|
21532
|
+
export declare const InterceptOptionsDocument = "\n query interceptOptions {\n interceptOptions {\n ...interceptOptionsMeta\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
20868
21533
|
export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
|
|
20869
|
-
export declare const
|
|
20870
|
-
export declare const
|
|
21534
|
+
export declare const UpdatedInterceptStatusDocument = "\n subscription updatedInterceptStatus {\n updatedInterceptStatus {\n status\n }\n}\n ";
|
|
21535
|
+
export declare const CreatedInterceptMessageDocument = "\n subscription createdInterceptMessage {\n createdInterceptMessage {\n messageEdge {\n node {\n ...interceptMessageMeta\n }\n }\n snapshot\n }\n}\n \n fragment interceptMessageMeta on InterceptMessage {\n __typename\n ... on InterceptRequestMessage {\n ...interceptRequestMessageMeta\n }\n ... on InterceptResponseMessage {\n ...interceptResponseMessageMeta\n }\n ... on InterceptStreamWsMessage {\n ...interceptStreamWsMessageMeta\n }\n}\n \n\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment interceptResponseMessageMeta on InterceptResponseMessage {\n __typename\n id\n response {\n ...responseMeta\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment interceptStreamWsMessageMeta on InterceptStreamWsMessage {\n __typename\n id\n message {\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 ";
|
|
21536
|
+
export declare const UpdatedInterceptOptionsDocument = "\n subscription updatedInterceptOptions {\n updatedInterceptOptions {\n options {\n ...interceptOptionsMeta\n }\n }\n}\n \n fragment interceptOptionsMeta on InterceptOptions {\n request {\n ...interceptRequestOptionsMeta\n }\n response {\n ...interceptResponseOptionsMeta\n }\n streamWs {\n ...interceptStreamWsOptionsMeta\n }\n scope {\n ...interceptScopeOptionsMeta\n }\n}\n \n\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n \n\n fragment interceptResponseOptionsMeta on InterceptResponseOptions {\n enabled\n filter\n}\n \n\n fragment interceptStreamWsOptionsMeta on InterceptStreamWsOptions {\n enabled\n}\n \n\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
20871
21537
|
export declare const TamperRuleCollectionsDocument = "\n query tamperRuleCollections {\n tamperRuleCollections {\n ...tamperRuleCollectionFull\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\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 \n\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 \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
20872
21538
|
export declare const RenameTamperRuleCollectionDocument = "\n mutation renameTamperRuleCollection($id: ID!, $name: String!) {\n renameTamperRuleCollection(id: $id, name: $name) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\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 \n\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 \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
20873
21539
|
export declare const CreateTamperRuleCollectionDocument = "\n mutation createTamperRuleCollection($input: CreateTamperRuleCollectionInput!) {\n createTamperRuleCollection(input: $input) {\n collection {\n ...tamperRuleCollectionFull\n }\n }\n}\n \n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n \n\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 \n\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 \n\n fragment tamperOperationPathFull on TamperOperationPath {\n __typename\n ... on TamperOperationPathRaw {\n ...tamperOperationPathRawFull\n }\n}\n \n\n fragment tamperOperationPathRawFull on TamperOperationPathRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherRawFull on TamperMatcherRaw {\n __typename\n ... on TamperMatcherValue {\n ...tamperMatcherValueFull\n }\n ... on TamperMatcherRegex {\n ...tamperMatcherRegexFull\n }\n}\n \n\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n \n\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n \n\n fragment tamperReplacerFull on TamperReplacer {\n __typename\n ... on TamperReplacerTerm {\n ...tamperReplacerTermFull\n }\n ... on TamperReplacerWorkflow {\n ...tamperReplacerWorkflowFull\n }\n}\n \n\n fragment tamperReplacerTermFull on TamperReplacerTerm {\n __typename\n term\n}\n \n\n fragment tamperReplacerWorkflowFull on TamperReplacerWorkflow {\n __typename\n id\n}\n \n\n fragment tamperOperationMethodFull on TamperOperationMethod {\n __typename\n ... on TamperOperationMethodUpdate {\n ...tamperOperationMethodUpdateFull\n }\n}\n \n\n fragment tamperOperationMethodUpdateFull on TamperOperationMethodUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryFull on TamperOperationQuery {\n __typename\n ... on TamperOperationQueryRaw {\n ...tamperOperationQueryRawFull\n }\n ... on TamperOperationQueryUpdate {\n ...tamperOperationQueryUpdateFull\n }\n ... on TamperOperationQueryAdd {\n ...tamperOperationQueryAddFull\n }\n ... on TamperOperationQueryRemove {\n ...tamperOperationQueryRemoveFull\n }\n}\n \n\n fragment tamperOperationQueryRawFull on TamperOperationQueryRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryUpdateFull on TamperOperationQueryUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperMatcherNameFull on TamperMatcherName {\n __typename\n name\n}\n \n\n fragment tamperOperationQueryAddFull on TamperOperationQueryAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationQueryRemoveFull on TamperOperationQueryRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationFirstLineFull on TamperOperationFirstLine {\n __typename\n ... on TamperOperationFirstLineRaw {\n ...tamperOperationFirstLineRawFull\n }\n}\n \n\n fragment tamperOperationFirstLineRawFull on TamperOperationFirstLineRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderFull on TamperOperationHeader {\n __typename\n ... on TamperOperationHeaderRaw {\n ...tamperOperationHeaderRawFull\n }\n ... on TamperOperationHeaderUpdate {\n ...tamperOperationHeaderUpdateFull\n }\n ... on TamperOperationHeaderAdd {\n ...tamperOperationHeaderAddFull\n }\n ... on TamperOperationHeaderRemove {\n ...tamperOperationHeaderRemoveFull\n }\n}\n \n\n fragment tamperOperationHeaderRawFull on TamperOperationHeaderRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderUpdateFull on TamperOperationHeaderUpdate {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderAddFull on TamperOperationHeaderAdd {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationHeaderRemoveFull on TamperOperationHeaderRemove {\n __typename\n matcher {\n ...tamperMatcherNameFull\n }\n}\n \n\n fragment tamperOperationBodyFull on TamperOperationBody {\n __typename\n ... on TamperOperationBodyRaw {\n ...tamperOperationBodyRawFull\n }\n}\n \n\n fragment tamperOperationBodyRawFull on TamperOperationBodyRaw {\n __typename\n matcher {\n ...tamperMatcherRawFull\n }\n replacer {\n ...tamperReplacerFull\n }\n}\n \n\n fragment tamperOperationStatusCodeFull on TamperOperationStatusCode {\n __typename\n ... on TamperOperationStatusCodeUpdate {\n ...tamperOperationStatusCodeUpdateFull\n }\n}\n \n\n fragment tamperOperationStatusCodeUpdateFull on TamperOperationStatusCodeUpdate {\n __typename\n replacer {\n ...tamperReplacerFull\n }\n}\n ";
|
|
@@ -20900,36 +21566,36 @@ export declare const RenameProjectDocument = "\n mutation renameProject($id:
|
|
|
20900
21566
|
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 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 ";
|
|
20901
21567
|
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 size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
20902
21568
|
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 ";
|
|
20903
|
-
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}\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 ";
|
|
20904
|
-
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}\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 ";
|
|
20905
|
-
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}\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 ";
|
|
20906
|
-
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}\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 ";
|
|
20907
|
-
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}\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 ";
|
|
20908
|
-
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}\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 ";
|
|
20909
|
-
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}\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 ";
|
|
21569
|
+
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 ";
|
|
21570
|
+
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 ";
|
|
21571
|
+
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 ";
|
|
21572
|
+
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 ";
|
|
21573
|
+
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 ";
|
|
21574
|
+
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 ";
|
|
21575
|
+
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 ";
|
|
20910
21576
|
export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
20911
|
-
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}\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 ";
|
|
20912
|
-
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}\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 ";
|
|
21577
|
+
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 ";
|
|
21578
|
+
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 ";
|
|
20913
21579
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
20914
|
-
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}\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 ";
|
|
20915
|
-
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}\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 ";
|
|
20916
|
-
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}\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 ";
|
|
20917
|
-
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}\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 ";
|
|
20918
|
-
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}\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 ";
|
|
21580
|
+
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 ";
|
|
21581
|
+
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 ";
|
|
21582
|
+
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 ";
|
|
21583
|
+
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 ";
|
|
21584
|
+
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 ";
|
|
20919
21585
|
export declare const DeletedReplaySessionDocument = "\n subscription deletedReplaySession {\n deletedReplaySession {\n deletedSessionId\n }\n}\n ";
|
|
20920
|
-
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}\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 ";
|
|
20921
|
-
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}\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 ";
|
|
21586
|
+
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 ";
|
|
21587
|
+
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 ";
|
|
20922
21588
|
export declare const DeletedReplaySessionCollectionDocument = "\n subscription deletedReplaySessionCollection {\n deletedReplaySessionCollection {\n deletedCollectionId\n }\n}\n ";
|
|
20923
|
-
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}\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 ";
|
|
21589
|
+
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 ";
|
|
20924
21590
|
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 ";
|
|
20925
|
-
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\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 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}\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 ";
|
|
21591
|
+
export declare const RequestDocument = "\n query request($id: ID!) {\n request(id: $id) {\n ...requestFull\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 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 ";
|
|
20926
21592
|
export declare const RequestBrowserUrlDocument = "\n query requestBrowserUrl($id: ID!) {\n request(id: $id) {\n browser {\n replay\n showResponse\n }\n }\n}\n ";
|
|
20927
|
-
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\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}\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 ";
|
|
21593
|
+
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\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 ";
|
|
20928
21594
|
export declare const UpdateRequestMetadataDocument = "\n mutation updateRequestMetadata($id: ID!, $input: UpdateRequestMetadataInput!) {\n updateRequestMetadata(id: $id, input: $input) {\n snapshot\n metadata {\n ...requestMetadataFull\n }\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
20929
21595
|
export declare const StartExportRequestsTaskDocument = "\n mutation startExportRequestsTask($input: StartExportRequestsTaskInput!) {\n startExportRequestsTask(input: $input) {\n task {\n ...dataExportTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
20930
21596
|
export declare const RenderRequestDocument = "\n mutation renderRequest($id: ID!, $input: RenderRequestInput!) {\n renderRequest(id: $id, input: $input) {\n render\n error {\n ... on RenderFailedUserError {\n ...renderFailedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment renderFailedUserErrorFull on RenderFailedUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
20931
|
-
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\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}\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 ";
|
|
20932
|
-
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\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}\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 ";
|
|
21597
|
+
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\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 ";
|
|
21598
|
+
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\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 ";
|
|
20933
21599
|
export declare const UpdatedRequestMetadataDocument = "\n subscription updatedRequestMetadata {\n updatedRequestMetadata {\n metadata {\n ...requestMetadataFull\n }\n snapshot\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
20934
21600
|
export declare const ResponseDocument = "\n query response($id: ID!) {\n response(id: $id) {\n ...responseFull\n }\n}\n \n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\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 ";
|
|
20935
21601
|
export declare const GetUpdateStateDocument = "\n query getUpdateState {\n runtime {\n availableUpdate {\n ...releaseFull\n }\n }\n}\n \n fragment releaseFull on Release {\n __typename\n links {\n __typename\n display\n link\n platform\n }\n releasedAt\n version\n}\n ";
|
|
@@ -20948,24 +21614,26 @@ export declare const UpdatedScopeDocument = "\n subscription updatedScope {\n
|
|
|
20948
21614
|
export declare const DeletedScopeDocument = "\n subscription deletedScope {\n deletedScope {\n deletedScopeId\n }\n}\n ";
|
|
20949
21615
|
export declare const SitemapRootEntriesDocument = "\n query sitemapRootEntries($scopeId: ID) {\n sitemapRootEntries(scopeId: $scopeId) {\n edges {\n ...sitemapEntryEdgeMeta\n }\n }\n}\n \n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
20950
21616
|
export declare const SitemapEntryChildrenDocument = "\n query sitemapEntryChildren($id: ID!) {\n sitemapDescendantEntries(parentId: $id, depth: DIRECT) {\n edges {\n cursor\n node {\n ...sitemapEntryMeta\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
20951
|
-
export declare const SitemapEntryRequestsDocument = "\n query sitemapEntryRequests($id: ID!, $after: String, $before: String, $first: Int, $last: Int) {\n sitemapEntry(id: $id) {\n ...sitemapEntryMeta\n requests(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n ...requestMeta\n }\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\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}\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 ";
|
|
20952
|
-
export declare const CreatedSitemapEntryDocument = "\n subscription createdSitemapEntry($scopeId: ID) {\n createdSitemapEntry(scopeId: $scopeId) {\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\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}\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
20953
|
-
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\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}\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21617
|
+
export declare const SitemapEntryRequestsDocument = "\n query sitemapEntryRequests($id: ID!, $after: String, $before: String, $first: Int, $last: Int) {\n sitemapEntry(id: $id) {\n ...sitemapEntryMeta\n requests(after: $after, before: $before, first: $first, last: $last) {\n edges {\n cursor\n node {\n ...requestMeta\n }\n }\n }\n }\n}\n \n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\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 ";
|
|
21618
|
+
export declare const CreatedSitemapEntryDocument = "\n subscription createdSitemapEntry($scopeId: ID) {\n createdSitemapEntry(scopeId: $scopeId) {\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
21619
|
+
export declare const UpdatedSitemapEntryDocument = "\n subscription updatedSitemapEntry($scopeId: ID) {\n updatedSitemapEntry(scopeId: $scopeId) {\n oldRequest {\n id\n }\n requestEdge {\n ...requestEdgeMeta\n }\n sitemapEntryEdge {\n ...sitemapEntryEdgeMeta\n }\n ancestorIds\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 sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n \n\n fragment sitemapEntryMeta on SitemapEntry {\n __typename\n id\n label\n kind\n parentId\n metadata {\n ... on SitemapEntryMetadataDomain {\n isTls\n port\n }\n }\n hasDescendants\n}\n ";
|
|
20954
21620
|
export declare const WebsocketStreamsBeforeDocument = "\n query websocketStreamsBefore($before: String, $last: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n before: $before\n last: $last\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
20955
21621
|
export declare const WebsocketStreamsAfterDocument = "\n query websocketStreamsAfter($after: String, $first: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streams(\n after: $after\n first: $first\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
20956
21622
|
export declare const WebsocketStreamsByOffsetDocument = "\n query websocketStreamsByOffset($offset: Int!, $limit: Int!, $scopeId: ID, $order: StreamOrderInput!) {\n streamsByOffset(\n offset: $offset\n limit: $limit\n scopeId: $scopeId\n order: $order\n protocol: WS\n ) {\n edges {\n ...streamEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
20957
21623
|
export declare const WebsocketStreamCountDocument = "\n query websocketStreamCount($scopeId: ID) {\n streams(first: 0, scopeId: $scopeId, protocol: WS) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
20958
|
-
export declare const WebsocketMessagesAfterDocument = "\n query websocketMessagesAfter($after: String, $first: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n after: $after\n first: $first\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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
|
|
20959
|
-
export declare const WebsocketMessagesBeforeDocument = "\n query websocketMessagesBefore($before: String, $last: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n before: $before\n last: $last\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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
|
|
20960
|
-
export declare const WebsocketMessagesByOffsetDocument = "\n query websocketMessagesByOffset($offset: Int!, $limit: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessagesByOffset(\n offset: $offset\n limit: $limit\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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
|
|
21624
|
+
export declare const WebsocketMessagesAfterDocument = "\n query websocketMessagesAfter($after: String, $first: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n after: $after\n first: $first\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21625
|
+
export declare const WebsocketMessagesBeforeDocument = "\n query websocketMessagesBefore($before: String, $last: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessages(\n before: $before\n last: $last\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21626
|
+
export declare const WebsocketMessagesByOffsetDocument = "\n query websocketMessagesByOffset($offset: Int!, $limit: Int!, $order: StreamWsMessageOrderInput!, $streamId: ID!) {\n streamWsMessagesByOffset(\n offset: $offset\n limit: $limit\n order: $order\n streamId: $streamId\n ) {\n edges {\n ...streamWsMessageEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\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 \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
20961
21627
|
export declare const WebsocketMessageCountDocument = "\n query websocketMessageCount($streamId: ID!) {\n streamWsMessages(first: 0, streamId: $streamId) {\n count {\n ...countFull\n }\n }\n}\n \n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
20962
|
-
export declare const WebsocketMessageDocument = "\n query websocketMessage($id: ID!) {\n streamWsMessage(id: $id) {\n ...
|
|
21628
|
+
export declare const WebsocketMessageDocument = "\n query websocketMessage($id: ID!) {\n streamWsMessage(id: $id) {\n ...streamWsMessageMeta\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 ";
|
|
21629
|
+
export declare const WebsocketMessageEditDocument = "\n query websocketMessageEdit($id: ID!) {\n streamWsMessageEdit(id: $id) {\n ...streamWsMessageEditFull\n }\n}\n \n fragment streamWsMessageEditFull on StreamWsMessageEdit {\n ...streamWsMessageEditMeta\n raw\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
20963
21630
|
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 ";
|
|
20964
|
-
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
|
|
20965
|
-
export declare const
|
|
21631
|
+
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 ";
|
|
21632
|
+
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 ";
|
|
21633
|
+
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 ";
|
|
20966
21634
|
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 ";
|
|
20967
|
-
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}\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 ";
|
|
20968
|
-
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}\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 ";
|
|
21635
|
+
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 ";
|
|
21636
|
+
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 ";
|
|
20969
21637
|
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 ";
|
|
20970
21638
|
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 ";
|
|
20971
21639
|
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 ";
|
|
@@ -21153,8 +21821,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21153
21821
|
resumeIntercept(variables?: ResumeInterceptMutationVariables, options?: C): Promise<ResumeInterceptMutation>;
|
|
21154
21822
|
interceptRequestMessages(variables: InterceptRequestMessagesQueryVariables, options?: C): Promise<InterceptRequestMessagesQuery>;
|
|
21155
21823
|
interceptResponseMessages(variables: InterceptResponseMessagesQueryVariables, options?: C): Promise<InterceptResponseMessagesQuery>;
|
|
21824
|
+
interceptStreamWsMessages(variables: InterceptStreamWsMessagesQueryVariables, options?: C): Promise<InterceptStreamWsMessagesQuery>;
|
|
21156
21825
|
interceptOptions(variables?: InterceptOptionsQueryVariables, options?: C): Promise<InterceptOptionsQuery>;
|
|
21157
21826
|
interceptStatus(variables?: InterceptStatusQueryVariables, options?: C): Promise<InterceptStatusQuery>;
|
|
21827
|
+
updatedInterceptStatus(variables?: UpdatedInterceptStatusSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptStatusSubscription>;
|
|
21158
21828
|
createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
|
|
21159
21829
|
updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
|
|
21160
21830
|
tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
|
|
@@ -21249,8 +21919,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21249
21919
|
websocketMessagesByOffset(variables: WebsocketMessagesByOffsetQueryVariables, options?: C): Promise<WebsocketMessagesByOffsetQuery>;
|
|
21250
21920
|
websocketMessageCount(variables: WebsocketMessageCountQueryVariables, options?: C): Promise<WebsocketMessageCountQuery>;
|
|
21251
21921
|
websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
|
|
21922
|
+
websocketMessageEdit(variables: WebsocketMessageEditQueryVariables, options?: C): Promise<WebsocketMessageEditQuery>;
|
|
21252
21923
|
createdWsStream(variables: CreatedWsStreamSubscriptionVariables, options?: C): AsyncIterable<CreatedWsStreamSubscription>;
|
|
21253
21924
|
createdStreamWsMessage(variables: CreatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedStreamWsMessageSubscription>;
|
|
21925
|
+
updatedStreamWsMessage(variables: UpdatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<UpdatedStreamWsMessageSubscription>;
|
|
21254
21926
|
getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
|
|
21255
21927
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
21256
21928
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|