@caido/sdk-frontend 0.47.2-beta.0 → 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.
package/package.json
CHANGED
|
@@ -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"];
|
|
@@ -9685,6 +9727,28 @@ export type InterceptResponseMessageMetaFragment = {
|
|
|
9685
9727
|
} | undefined | null;
|
|
9686
9728
|
};
|
|
9687
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
|
+
};
|
|
9750
|
+
};
|
|
9751
|
+
};
|
|
9688
9752
|
type InterceptMessageMeta_InterceptRequestMessage_Fragment = {
|
|
9689
9753
|
__typename: "InterceptRequestMessage";
|
|
9690
9754
|
id: string;
|
|
@@ -9773,7 +9837,29 @@ type InterceptMessageMeta_InterceptResponseMessage_Fragment = {
|
|
|
9773
9837
|
} | undefined | null;
|
|
9774
9838
|
};
|
|
9775
9839
|
};
|
|
9776
|
-
|
|
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
|
+
};
|
|
9860
|
+
};
|
|
9861
|
+
};
|
|
9862
|
+
export type InterceptMessageMetaFragment = InterceptMessageMeta_InterceptRequestMessage_Fragment | InterceptMessageMeta_InterceptResponseMessage_Fragment | InterceptMessageMeta_InterceptStreamWsMessage_Fragment;
|
|
9777
9863
|
export type InterceptOptionsMetaFragment = {
|
|
9778
9864
|
request: {
|
|
9779
9865
|
enabled: boolean;
|
|
@@ -9783,6 +9869,9 @@ export type InterceptOptionsMetaFragment = {
|
|
|
9783
9869
|
enabled: boolean;
|
|
9784
9870
|
filter?: string | undefined | null;
|
|
9785
9871
|
};
|
|
9872
|
+
streamWs: {
|
|
9873
|
+
enabled: boolean;
|
|
9874
|
+
};
|
|
9786
9875
|
scope?: {
|
|
9787
9876
|
scopeId: string;
|
|
9788
9877
|
} | undefined | null;
|
|
@@ -9795,6 +9884,9 @@ export type InterceptResponseOptionsMetaFragment = {
|
|
|
9795
9884
|
enabled: boolean;
|
|
9796
9885
|
filter?: string | undefined | null;
|
|
9797
9886
|
};
|
|
9887
|
+
export type InterceptStreamWsOptionsMetaFragment = {
|
|
9888
|
+
enabled: boolean;
|
|
9889
|
+
};
|
|
9798
9890
|
export type InterceptScopeOptionsMetaFragment = {
|
|
9799
9891
|
scopeId: string;
|
|
9800
9892
|
};
|
|
@@ -9829,6 +9921,9 @@ export type SetInterceptOptionsMutation = {
|
|
|
9829
9921
|
enabled: boolean;
|
|
9830
9922
|
filter?: string | undefined | null;
|
|
9831
9923
|
};
|
|
9924
|
+
streamWs: {
|
|
9925
|
+
enabled: boolean;
|
|
9926
|
+
};
|
|
9832
9927
|
scope?: {
|
|
9833
9928
|
scopeId: string;
|
|
9834
9929
|
} | undefined | null;
|
|
@@ -9942,6 +10037,27 @@ export type InterceptRequestMessagesQuery = {
|
|
|
9942
10037
|
id: string;
|
|
9943
10038
|
} | undefined | null;
|
|
9944
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
|
+
};
|
|
10060
|
+
};
|
|
9945
10061
|
}>;
|
|
9946
10062
|
};
|
|
9947
10063
|
};
|
|
@@ -10036,6 +10152,136 @@ export type InterceptResponseMessagesQuery = {
|
|
|
10036
10152
|
id: string;
|
|
10037
10153
|
} | undefined | null;
|
|
10038
10154
|
};
|
|
10155
|
+
} | {
|
|
10156
|
+
__typename: "InterceptStreamWsMessage";
|
|
10157
|
+
id: string;
|
|
10158
|
+
message: {
|
|
10159
|
+
id: string;
|
|
10160
|
+
stream: {
|
|
10161
|
+
id: string;
|
|
10162
|
+
};
|
|
10163
|
+
edits: Array<{
|
|
10164
|
+
id: string;
|
|
10165
|
+
alteration: Alteration;
|
|
10166
|
+
}>;
|
|
10167
|
+
head: {
|
|
10168
|
+
id: string;
|
|
10169
|
+
length: number;
|
|
10170
|
+
alteration: Alteration;
|
|
10171
|
+
direction: StreamMessageDirection;
|
|
10172
|
+
format: StreamWsMessageFormat;
|
|
10173
|
+
createdAt: Date;
|
|
10174
|
+
};
|
|
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";
|
|
10189
|
+
id: string;
|
|
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?: {
|
|
10209
|
+
__typename: "Response";
|
|
10210
|
+
id: string;
|
|
10211
|
+
statusCode: number;
|
|
10212
|
+
roundtripTime: number;
|
|
10213
|
+
length: number;
|
|
10214
|
+
createdAt: Date;
|
|
10215
|
+
alteration: Alteration;
|
|
10216
|
+
edited: boolean;
|
|
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
|
+
};
|
|
10039
10285
|
}>;
|
|
10040
10286
|
};
|
|
10041
10287
|
};
|
|
@@ -10052,6 +10298,9 @@ export type InterceptOptionsQuery = {
|
|
|
10052
10298
|
enabled: boolean;
|
|
10053
10299
|
filter?: string | undefined | null;
|
|
10054
10300
|
};
|
|
10301
|
+
streamWs: {
|
|
10302
|
+
enabled: boolean;
|
|
10303
|
+
};
|
|
10055
10304
|
scope?: {
|
|
10056
10305
|
scopeId: string;
|
|
10057
10306
|
} | undefined | null;
|
|
@@ -10063,6 +10312,14 @@ export type InterceptStatusQueryVariables = Exact<{
|
|
|
10063
10312
|
export type InterceptStatusQuery = {
|
|
10064
10313
|
interceptStatus: InterceptStatus;
|
|
10065
10314
|
};
|
|
10315
|
+
export type UpdatedInterceptStatusSubscriptionVariables = Exact<{
|
|
10316
|
+
[key: string]: never;
|
|
10317
|
+
}>;
|
|
10318
|
+
export type UpdatedInterceptStatusSubscription = {
|
|
10319
|
+
updatedInterceptStatus: {
|
|
10320
|
+
status: InterceptStatus;
|
|
10321
|
+
};
|
|
10322
|
+
};
|
|
10066
10323
|
export type CreatedInterceptMessageSubscriptionVariables = Exact<{
|
|
10067
10324
|
[key: string]: never;
|
|
10068
10325
|
}>;
|
|
@@ -10156,6 +10413,27 @@ export type CreatedInterceptMessageSubscription = {
|
|
|
10156
10413
|
id: string;
|
|
10157
10414
|
} | undefined | null;
|
|
10158
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
|
+
};
|
|
10436
|
+
};
|
|
10159
10437
|
};
|
|
10160
10438
|
};
|
|
10161
10439
|
};
|
|
@@ -10174,6 +10452,9 @@ export type UpdatedInterceptOptionsSubscription = {
|
|
|
10174
10452
|
enabled: boolean;
|
|
10175
10453
|
filter?: string | undefined | null;
|
|
10176
10454
|
};
|
|
10455
|
+
streamWs: {
|
|
10456
|
+
enabled: boolean;
|
|
10457
|
+
};
|
|
10177
10458
|
scope?: {
|
|
10178
10459
|
scopeId: string;
|
|
10179
10460
|
} | undefined | null;
|
|
@@ -19222,38 +19503,64 @@ export type StreamEdgeMetaFragment = {
|
|
|
19222
19503
|
};
|
|
19223
19504
|
};
|
|
19224
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 = {
|
|
19225
19528
|
id: string;
|
|
19226
19529
|
length: number;
|
|
19227
|
-
createdAt: Date;
|
|
19228
|
-
direction: StreamMessageDirection;
|
|
19229
|
-
edited: boolean;
|
|
19230
19530
|
alteration: Alteration;
|
|
19531
|
+
direction: StreamMessageDirection;
|
|
19231
19532
|
format: StreamWsMessageFormat;
|
|
19232
|
-
|
|
19533
|
+
createdAt: Date;
|
|
19233
19534
|
};
|
|
19234
|
-
export type
|
|
19535
|
+
export type StreamWsMessageEditFullFragment = {
|
|
19235
19536
|
raw: string;
|
|
19236
19537
|
id: string;
|
|
19237
19538
|
length: number;
|
|
19238
|
-
createdAt: Date;
|
|
19239
|
-
direction: StreamMessageDirection;
|
|
19240
|
-
edited: boolean;
|
|
19241
19539
|
alteration: Alteration;
|
|
19540
|
+
direction: StreamMessageDirection;
|
|
19242
19541
|
format: StreamWsMessageFormat;
|
|
19243
|
-
|
|
19542
|
+
createdAt: Date;
|
|
19244
19543
|
};
|
|
19245
19544
|
export type StreamWsMessageEdgeMetaFragment = {
|
|
19246
19545
|
__typename: "StreamWsMessageEdge";
|
|
19247
19546
|
cursor: string;
|
|
19248
19547
|
node: {
|
|
19249
19548
|
id: string;
|
|
19250
|
-
|
|
19251
|
-
|
|
19252
|
-
|
|
19253
|
-
|
|
19254
|
-
|
|
19255
|
-
|
|
19256
|
-
|
|
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
|
+
};
|
|
19257
19564
|
};
|
|
19258
19565
|
};
|
|
19259
19566
|
export type WebsocketStreamsBeforeQueryVariables = Exact<{
|
|
@@ -19384,13 +19691,21 @@ export type WebsocketMessagesAfterQuery = {
|
|
|
19384
19691
|
cursor: string;
|
|
19385
19692
|
node: {
|
|
19386
19693
|
id: string;
|
|
19387
|
-
|
|
19388
|
-
|
|
19389
|
-
|
|
19390
|
-
|
|
19391
|
-
|
|
19392
|
-
|
|
19393
|
-
|
|
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
|
+
};
|
|
19394
19709
|
};
|
|
19395
19710
|
}>;
|
|
19396
19711
|
pageInfo: {
|
|
@@ -19416,13 +19731,21 @@ export type WebsocketMessagesBeforeQuery = {
|
|
|
19416
19731
|
cursor: string;
|
|
19417
19732
|
node: {
|
|
19418
19733
|
id: string;
|
|
19419
|
-
|
|
19420
|
-
|
|
19421
|
-
|
|
19422
|
-
|
|
19423
|
-
|
|
19424
|
-
|
|
19425
|
-
|
|
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
|
+
};
|
|
19426
19749
|
};
|
|
19427
19750
|
}>;
|
|
19428
19751
|
pageInfo: {
|
|
@@ -19448,13 +19771,21 @@ export type WebsocketMessagesByOffsetQuery = {
|
|
|
19448
19771
|
cursor: string;
|
|
19449
19772
|
node: {
|
|
19450
19773
|
id: string;
|
|
19451
|
-
|
|
19452
|
-
|
|
19453
|
-
|
|
19454
|
-
|
|
19455
|
-
|
|
19456
|
-
|
|
19457
|
-
|
|
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
|
+
};
|
|
19458
19789
|
};
|
|
19459
19790
|
}>;
|
|
19460
19791
|
pageInfo: {
|
|
@@ -19483,15 +19814,36 @@ export type WebsocketMessageQueryVariables = Exact<{
|
|
|
19483
19814
|
}>;
|
|
19484
19815
|
export type WebsocketMessageQuery = {
|
|
19485
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?: {
|
|
19486
19840
|
raw: string;
|
|
19487
19841
|
id: string;
|
|
19488
19842
|
length: number;
|
|
19489
|
-
createdAt: Date;
|
|
19490
|
-
direction: StreamMessageDirection;
|
|
19491
|
-
edited: boolean;
|
|
19492
19843
|
alteration: Alteration;
|
|
19844
|
+
direction: StreamMessageDirection;
|
|
19493
19845
|
format: StreamWsMessageFormat;
|
|
19494
|
-
|
|
19846
|
+
createdAt: Date;
|
|
19495
19847
|
} | undefined | null;
|
|
19496
19848
|
};
|
|
19497
19849
|
export type CreatedWsStreamSubscriptionVariables = Exact<{
|
|
@@ -19530,13 +19882,51 @@ export type CreatedStreamWsMessageSubscription = {
|
|
|
19530
19882
|
cursor: string;
|
|
19531
19883
|
node: {
|
|
19532
19884
|
id: string;
|
|
19533
|
-
|
|
19534
|
-
|
|
19535
|
-
|
|
19536
|
-
|
|
19537
|
-
|
|
19538
|
-
|
|
19539
|
-
|
|
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
|
+
};
|
|
19540
19930
|
};
|
|
19541
19931
|
};
|
|
19542
19932
|
};
|
|
@@ -20900,11 +21290,16 @@ export declare const DeleteInterceptEntriesTaskFullFragmentDoc = "\n fragment
|
|
|
20900
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 ";
|
|
20901
21291
|
export declare const InterceptRequestMessageMetaFragmentDoc = "\n fragment interceptRequestMessageMeta on InterceptRequestMessage {\n __typename\n id\n request {\n ...requestMeta\n }\n}\n ";
|
|
20902
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 ";
|
|
20903
|
-
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 ";
|
|
20904
21298
|
export declare const InterceptRequestOptionsMetaFragmentDoc = "\n fragment interceptRequestOptionsMeta on InterceptRequestOptions {\n enabled\n filter\n}\n ";
|
|
20905
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 ";
|
|
20906
21301
|
export declare const InterceptScopeOptionsMetaFragmentDoc = "\n fragment interceptScopeOptionsMeta on InterceptScopeOptions {\n scopeId\n}\n ";
|
|
20907
|
-
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 ";
|
|
20908
21303
|
export declare const TamperMatcherValueFullFragmentDoc = "\n fragment tamperMatcherValueFull on TamperMatcherValue {\n __typename\n value\n}\n ";
|
|
20909
21304
|
export declare const TamperMatcherRegexFullFragmentDoc = "\n fragment tamperMatcherRegexFull on TamperMatcherRegex {\n __typename\n regex\n}\n ";
|
|
20910
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 ";
|
|
@@ -20974,8 +21369,7 @@ export declare const SitemapEntryMetaFragmentDoc = "\n fragment sitemapEntryM
|
|
|
20974
21369
|
export declare const SitemapEntryEdgeMetaFragmentDoc = "\n fragment sitemapEntryEdgeMeta on SitemapEntryEdge {\n __typename\n cursor\n node {\n ...sitemapEntryMeta\n }\n}\n ";
|
|
20975
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 ";
|
|
20976
21371
|
export declare const StreamEdgeMetaFragmentDoc = "\n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n ";
|
|
20977
|
-
export declare const
|
|
20978
|
-
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 ";
|
|
20979
21373
|
export declare const StreamWsMessageEdgeMetaFragmentDoc = "\n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n ";
|
|
20980
21374
|
export declare const UpstreamProxyAuthBasicFullFragmentDoc = "\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n ";
|
|
20981
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 ";
|
|
@@ -21129,15 +21523,17 @@ export declare const UploadHostedFileDocument = "\n mutation uploadHostedFile
|
|
|
21129
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 ";
|
|
21130
21524
|
export declare const ForwardInterceptMessageDocument = "\n mutation forwardInterceptMessage($id: ID!, $input: ForwardInterceptMessageInput) {\n forwardInterceptMessage(id: $id, input: $input) {\n forwardedId\n }\n}\n ";
|
|
21131
21525
|
export declare const DropInterceptMesageDocument = "\n mutation dropInterceptMesage($id: ID!) {\n dropInterceptMessage(id: $id) {\n droppedId\n }\n}\n ";
|
|
21132
|
-
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 ";
|
|
21133
21527
|
export declare const PauseInterceptDocument = "\n mutation pauseIntercept {\n pauseIntercept {\n status\n }\n}\n ";
|
|
21134
21528
|
export declare const ResumeInterceptDocument = "\n mutation resumeIntercept {\n resumeIntercept {\n status\n }\n}\n ";
|
|
21135
|
-
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 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 ";
|
|
21136
|
-
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 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 ";
|
|
21137
|
-
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 ";
|
|
21138
21533
|
export declare const InterceptStatusDocument = "\n query interceptStatus {\n interceptStatus\n}\n ";
|
|
21139
|
-
export declare const
|
|
21140
|
-
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 ";
|
|
21141
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 ";
|
|
21142
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 ";
|
|
21143
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 ";
|
|
@@ -21225,13 +21621,15 @@ export declare const WebsocketStreamsBeforeDocument = "\n query websocketStre
|
|
|
21225
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 ";
|
|
21226
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 ";
|
|
21227
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 ";
|
|
21228
|
-
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
|
|
21229
|
-
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
|
|
21230
|
-
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 ";
|
|
21231
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 ";
|
|
21232
|
-
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 ";
|
|
21233
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 ";
|
|
21234
|
-
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
|
|
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 ";
|
|
21235
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 ";
|
|
21236
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 ";
|
|
21237
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 ";
|
|
@@ -21423,8 +21821,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21423
21821
|
resumeIntercept(variables?: ResumeInterceptMutationVariables, options?: C): Promise<ResumeInterceptMutation>;
|
|
21424
21822
|
interceptRequestMessages(variables: InterceptRequestMessagesQueryVariables, options?: C): Promise<InterceptRequestMessagesQuery>;
|
|
21425
21823
|
interceptResponseMessages(variables: InterceptResponseMessagesQueryVariables, options?: C): Promise<InterceptResponseMessagesQuery>;
|
|
21824
|
+
interceptStreamWsMessages(variables: InterceptStreamWsMessagesQueryVariables, options?: C): Promise<InterceptStreamWsMessagesQuery>;
|
|
21426
21825
|
interceptOptions(variables?: InterceptOptionsQueryVariables, options?: C): Promise<InterceptOptionsQuery>;
|
|
21427
21826
|
interceptStatus(variables?: InterceptStatusQueryVariables, options?: C): Promise<InterceptStatusQuery>;
|
|
21827
|
+
updatedInterceptStatus(variables?: UpdatedInterceptStatusSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptStatusSubscription>;
|
|
21428
21828
|
createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
|
|
21429
21829
|
updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
|
|
21430
21830
|
tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
|
|
@@ -21519,8 +21919,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
21519
21919
|
websocketMessagesByOffset(variables: WebsocketMessagesByOffsetQueryVariables, options?: C): Promise<WebsocketMessagesByOffsetQuery>;
|
|
21520
21920
|
websocketMessageCount(variables: WebsocketMessageCountQueryVariables, options?: C): Promise<WebsocketMessageCountQuery>;
|
|
21521
21921
|
websocketMessage(variables: WebsocketMessageQueryVariables, options?: C): Promise<WebsocketMessageQuery>;
|
|
21922
|
+
websocketMessageEdit(variables: WebsocketMessageEditQueryVariables, options?: C): Promise<WebsocketMessageEditQuery>;
|
|
21522
21923
|
createdWsStream(variables: CreatedWsStreamSubscriptionVariables, options?: C): AsyncIterable<CreatedWsStreamSubscription>;
|
|
21523
21924
|
createdStreamWsMessage(variables: CreatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedStreamWsMessageSubscription>;
|
|
21925
|
+
updatedStreamWsMessage(variables: UpdatedStreamWsMessageSubscriptionVariables, options?: C): AsyncIterable<UpdatedStreamWsMessageSubscription>;
|
|
21524
21926
|
getTasks(variables?: GetTasksQueryVariables, options?: C): Promise<GetTasksQuery>;
|
|
21525
21927
|
cancelTask(variables: CancelTaskMutationVariables, options?: C): Promise<CancelTaskMutation>;
|
|
21526
21928
|
startedTask(variables?: StartedTaskSubscriptionVariables, options?: C): AsyncIterable<StartedTaskSubscription>;
|