@caido/sdk-frontend 0.48.2-beta.0 → 0.48.2-beta.10
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 +3 -2
- package/src/types/__generated__/graphql-sdk.d.ts +799 -289
- package/src/types/commandPalette.d.ts +1 -0
- package/src/types/index.d.ts +3 -1
- package/src/types/replay.d.ts +45 -0
- package/src/types/slots.d.ts +22 -0
- package/src/types/window.d.ts +21 -0
|
@@ -649,6 +649,9 @@ export declare const CloudErrorReason: {
|
|
|
649
649
|
readonly Unexpected: "UNEXPECTED";
|
|
650
650
|
};
|
|
651
651
|
export type CloudErrorReason = (typeof CloudErrorReason)[keyof typeof CloudErrorReason];
|
|
652
|
+
export type CloudStatus = {
|
|
653
|
+
sync: Scalars["Boolean"]["output"];
|
|
654
|
+
};
|
|
652
655
|
export type CloudUser = {
|
|
653
656
|
assistantUsage: AssistantUsage;
|
|
654
657
|
id: Scalars["ID"]["output"];
|
|
@@ -1095,6 +1098,13 @@ export type DeleteEnvironmentPayload = {
|
|
|
1095
1098
|
export type DeleteFilterPresetPayload = {
|
|
1096
1099
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1097
1100
|
};
|
|
1101
|
+
export type DeleteFindingsInput = {
|
|
1102
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1103
|
+
reporter?: never;
|
|
1104
|
+
} | {
|
|
1105
|
+
ids?: never;
|
|
1106
|
+
reporter: Scalars["String"]["input"];
|
|
1107
|
+
};
|
|
1098
1108
|
export type DeleteFindingsPayload = {
|
|
1099
1109
|
deletedIds?: Maybe<Array<Scalars["ID"]["output"]>>;
|
|
1100
1110
|
};
|
|
@@ -1301,6 +1311,7 @@ export type Finding = {
|
|
|
1301
1311
|
createdAt: Scalars["Timestamp"]["output"];
|
|
1302
1312
|
dedupeKey?: Maybe<Scalars["String"]["output"]>;
|
|
1303
1313
|
description?: Maybe<Scalars["String"]["output"]>;
|
|
1314
|
+
hidden: Scalars["Boolean"]["output"];
|
|
1304
1315
|
host: Scalars["String"]["output"];
|
|
1305
1316
|
id: Scalars["ID"]["output"];
|
|
1306
1317
|
path: Scalars["String"]["output"];
|
|
@@ -1419,6 +1430,16 @@ export type GuestUser = {
|
|
|
1419
1430
|
plugins: Array<PluginFrontend>;
|
|
1420
1431
|
settings?: Maybe<UserSettings>;
|
|
1421
1432
|
};
|
|
1433
|
+
export type HideFindingsInput = {
|
|
1434
|
+
ids: Array<Scalars["ID"]["input"]>;
|
|
1435
|
+
reporter?: never;
|
|
1436
|
+
} | {
|
|
1437
|
+
ids?: never;
|
|
1438
|
+
reporter: Scalars["String"]["input"];
|
|
1439
|
+
};
|
|
1440
|
+
export type HideFindingsPayload = {
|
|
1441
|
+
findings?: Maybe<Array<Finding>>;
|
|
1442
|
+
};
|
|
1422
1443
|
export type HostedFile = {
|
|
1423
1444
|
createdAt: Scalars["DateTime"]["output"];
|
|
1424
1445
|
id: Scalars["ID"]["output"];
|
|
@@ -1441,6 +1462,7 @@ export type InstallBrowserPayload = {
|
|
|
1441
1462
|
};
|
|
1442
1463
|
export type InstallPluginPackageError = CloudUserError | OtherUserError | PluginUserError | StoreUserError;
|
|
1443
1464
|
export type InstallPluginPackageInput = {
|
|
1465
|
+
force?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
1444
1466
|
source: PluginPackageSource;
|
|
1445
1467
|
};
|
|
1446
1468
|
export type InstallPluginPackagePayload = {
|
|
@@ -1468,6 +1490,10 @@ export type InterceptEntryEdge = {
|
|
|
1468
1490
|
/** The item at the end of the edge */
|
|
1469
1491
|
node: InterceptEntry;
|
|
1470
1492
|
};
|
|
1493
|
+
export type InterceptEntryOffset = {
|
|
1494
|
+
offset: Scalars["Int"]["output"];
|
|
1495
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
1496
|
+
};
|
|
1471
1497
|
export declare const InterceptEntryOrderBy: {
|
|
1472
1498
|
readonly Id: "ID";
|
|
1473
1499
|
readonly ReqCreatedAt: "REQ_CREATED_AT";
|
|
@@ -1668,6 +1694,7 @@ export type MutationRoot = {
|
|
|
1668
1694
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
1669
1695
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
1670
1696
|
globalizeWorkflow: GlobalizeWorkflowPayload;
|
|
1697
|
+
hideFindings: HideFindingsPayload;
|
|
1671
1698
|
importCertificate: ImportCertificatePayload;
|
|
1672
1699
|
installBrowser: InstallBrowserPayload;
|
|
1673
1700
|
installPluginPackage: InstallPluginPackagePayload;
|
|
@@ -1738,6 +1765,7 @@ export type MutationRoot = {
|
|
|
1738
1765
|
updateDnsUpstream: UpdateDnsUpstreamPayload;
|
|
1739
1766
|
updateEnvironment: UpdateEnvironmentPayload;
|
|
1740
1767
|
updateFilterPreset: UpdateFilterPresetPayload;
|
|
1768
|
+
updateFinding: UpdateFindingPayload;
|
|
1741
1769
|
updateRequestMetadata: UpdateRequestMetadataPayload;
|
|
1742
1770
|
updateScope: UpdateScopePayload;
|
|
1743
1771
|
updateTamperRule: UpdateTamperRulePayload;
|
|
@@ -1845,7 +1873,7 @@ export type MutationRootDeleteFilterPresetArgs = {
|
|
|
1845
1873
|
id: Scalars["ID"]["input"];
|
|
1846
1874
|
};
|
|
1847
1875
|
export type MutationRootDeleteFindingsArgs = {
|
|
1848
|
-
|
|
1876
|
+
input?: InputMaybe<DeleteFindingsInput>;
|
|
1849
1877
|
};
|
|
1850
1878
|
export type MutationRootDeleteHostedFileArgs = {
|
|
1851
1879
|
id: Scalars["ID"]["input"];
|
|
@@ -1900,6 +1928,9 @@ export type MutationRootForwardInterceptMessageArgs = {
|
|
|
1900
1928
|
export type MutationRootGlobalizeWorkflowArgs = {
|
|
1901
1929
|
id: Scalars["ID"]["input"];
|
|
1902
1930
|
};
|
|
1931
|
+
export type MutationRootHideFindingsArgs = {
|
|
1932
|
+
input?: InputMaybe<HideFindingsInput>;
|
|
1933
|
+
};
|
|
1903
1934
|
export type MutationRootImportCertificateArgs = {
|
|
1904
1935
|
input: ImportCertificateInput;
|
|
1905
1936
|
};
|
|
@@ -2120,6 +2151,10 @@ export type MutationRootUpdateFilterPresetArgs = {
|
|
|
2120
2151
|
id: Scalars["ID"]["input"];
|
|
2121
2152
|
input: UpdateFilterPresetInput;
|
|
2122
2153
|
};
|
|
2154
|
+
export type MutationRootUpdateFindingArgs = {
|
|
2155
|
+
id: Scalars["ID"]["input"];
|
|
2156
|
+
input: UpdateFindingInput;
|
|
2157
|
+
};
|
|
2123
2158
|
export type MutationRootUpdateRequestMetadataArgs = {
|
|
2124
2159
|
id: Scalars["ID"]["input"];
|
|
2125
2160
|
input: UpdateRequestMetadataInput;
|
|
@@ -2364,6 +2399,7 @@ export type QueryRoot = {
|
|
|
2364
2399
|
interceptEntries: InterceptEntryConnection;
|
|
2365
2400
|
interceptEntriesByOffset: InterceptEntryConnection;
|
|
2366
2401
|
interceptEntry?: Maybe<InterceptEntry>;
|
|
2402
|
+
interceptEntryOffset?: Maybe<InterceptEntryOffset>;
|
|
2367
2403
|
interceptMessages: InterceptMessageConnection;
|
|
2368
2404
|
interceptOptions: InterceptOptions;
|
|
2369
2405
|
interceptStatus: InterceptStatus;
|
|
@@ -2374,6 +2410,7 @@ export type QueryRoot = {
|
|
|
2374
2410
|
replaySessionCollections: ReplaySessionCollectionConnection;
|
|
2375
2411
|
replaySessions: ReplaySessionConnection;
|
|
2376
2412
|
request?: Maybe<Request>;
|
|
2413
|
+
requestOffset?: Maybe<RequestOffset>;
|
|
2377
2414
|
requests: RequestConnection;
|
|
2378
2415
|
requestsByOffset: RequestConnection;
|
|
2379
2416
|
response?: Maybe<Response>;
|
|
@@ -2472,6 +2509,12 @@ export type QueryRootInterceptEntriesByOffsetArgs = {
|
|
|
2472
2509
|
export type QueryRootInterceptEntryArgs = {
|
|
2473
2510
|
id: Scalars["ID"]["input"];
|
|
2474
2511
|
};
|
|
2512
|
+
export type QueryRootInterceptEntryOffsetArgs = {
|
|
2513
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2514
|
+
id: Scalars["ID"]["input"];
|
|
2515
|
+
order?: InputMaybe<InterceptEntryOrderInput>;
|
|
2516
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2517
|
+
};
|
|
2475
2518
|
export type QueryRootInterceptMessagesArgs = {
|
|
2476
2519
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2477
2520
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -2500,6 +2543,12 @@ export type QueryRootReplaySessionsArgs = {
|
|
|
2500
2543
|
export type QueryRootRequestArgs = {
|
|
2501
2544
|
id: Scalars["ID"]["input"];
|
|
2502
2545
|
};
|
|
2546
|
+
export type QueryRootRequestOffsetArgs = {
|
|
2547
|
+
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
2548
|
+
id: Scalars["ID"]["input"];
|
|
2549
|
+
order?: InputMaybe<RequestResponseOrderInput>;
|
|
2550
|
+
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
2551
|
+
};
|
|
2503
2552
|
export type QueryRootRequestsArgs = {
|
|
2504
2553
|
after?: InputMaybe<Scalars["String"]["input"]>;
|
|
2505
2554
|
before?: InputMaybe<Scalars["String"]["input"]>;
|
|
@@ -2927,6 +2976,10 @@ export type RequestMetadata = {
|
|
|
2927
2976
|
color?: Maybe<Scalars["String"]["output"]>;
|
|
2928
2977
|
id: Scalars["ID"]["output"];
|
|
2929
2978
|
};
|
|
2979
|
+
export type RequestOffset = {
|
|
2980
|
+
offset: Scalars["Int"]["output"];
|
|
2981
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
2982
|
+
};
|
|
2930
2983
|
export type RequestRawInput = {
|
|
2931
2984
|
connectionInfo: ConnectionInfoInput;
|
|
2932
2985
|
raw: Scalars["Blob"]["input"];
|
|
@@ -3009,6 +3062,7 @@ export type RunConvertWorkflowPayload = {
|
|
|
3009
3062
|
export type Runtime = {
|
|
3010
3063
|
availableUpdate?: Maybe<Release>;
|
|
3011
3064
|
certificate: Certificate;
|
|
3065
|
+
cloudStatus: CloudStatus;
|
|
3012
3066
|
logs: Scalars["Uri"]["output"];
|
|
3013
3067
|
platform: Scalars["String"]["output"];
|
|
3014
3068
|
version: Scalars["String"]["output"];
|
|
@@ -3392,6 +3446,7 @@ export type SubscriptionRoot = {
|
|
|
3392
3446
|
updatedEnvironment: UpdatedEnvironmentPayload;
|
|
3393
3447
|
updatedEnvironmentContext: UpdatedEnvironmentContextPayload;
|
|
3394
3448
|
updatedFilterPreset: UpdatedFilterPresetPayload;
|
|
3449
|
+
updatedFindings: UpdatedFindingsPayload;
|
|
3395
3450
|
updatedHostedFile: UpdatedHostedFilePayload;
|
|
3396
3451
|
updatedInterceptEntry: UpdatedInterceptEntryPayload;
|
|
3397
3452
|
updatedInterceptOptions: UpdatedInterceptOptionsPayload;
|
|
@@ -3411,6 +3466,7 @@ export type SubscriptionRoot = {
|
|
|
3411
3466
|
updatedUpstreamProxyHttp: UpdatedUpstreamProxyHttpPayload;
|
|
3412
3467
|
updatedUpstreamProxySocks: UpdatedUpstreamProxySocksPayload;
|
|
3413
3468
|
updatedViewerAssistantUsage: UpdatedViewerAssistantUsagePayload;
|
|
3469
|
+
updatedViewerProfile: UpdatedViewerProfilePayload;
|
|
3414
3470
|
updatedViewerSettings: UpdatedViewerSettingsPayload;
|
|
3415
3471
|
updatedWorkflow: UpdatedWorkflowPayload;
|
|
3416
3472
|
uploadedHostedFile: UploadedHostedFilePayload;
|
|
@@ -4013,6 +4069,16 @@ export type UpdateFilterPresetPayload = {
|
|
|
4013
4069
|
error?: Maybe<UpdateFilterPresetError>;
|
|
4014
4070
|
filter?: Maybe<FilterPreset>;
|
|
4015
4071
|
};
|
|
4072
|
+
export type UpdateFindingError = OtherUserError | UnknownIdUserError;
|
|
4073
|
+
export type UpdateFindingInput = {
|
|
4074
|
+
description?: InputMaybe<Scalars["String"]["input"]>;
|
|
4075
|
+
hidden?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
4076
|
+
title?: InputMaybe<Scalars["String"]["input"]>;
|
|
4077
|
+
};
|
|
4078
|
+
export type UpdateFindingPayload = {
|
|
4079
|
+
error?: Maybe<UpdateFindingError>;
|
|
4080
|
+
finding?: Maybe<Finding>;
|
|
4081
|
+
};
|
|
4016
4082
|
export type UpdateRequestMetadataInput = {
|
|
4017
4083
|
color?: InputMaybe<Scalars["String"]["input"]>;
|
|
4018
4084
|
};
|
|
@@ -4125,6 +4191,16 @@ export type UpdatedEnvironmentPayload = {
|
|
|
4125
4191
|
export type UpdatedFilterPresetPayload = {
|
|
4126
4192
|
filterEdge: FilterPresetEdge;
|
|
4127
4193
|
};
|
|
4194
|
+
export type UpdatedFindingPayload = {
|
|
4195
|
+
findingEdge: FindingEdge;
|
|
4196
|
+
snapshot: Scalars["Snapshot"]["output"];
|
|
4197
|
+
};
|
|
4198
|
+
export type UpdatedFindingPayloadFindingEdgeArgs = {
|
|
4199
|
+
order?: InputMaybe<FindingOrderInput>;
|
|
4200
|
+
};
|
|
4201
|
+
export type UpdatedFindingsPayload = {
|
|
4202
|
+
findings: Array<UpdatedFindingPayload>;
|
|
4203
|
+
};
|
|
4128
4204
|
export type UpdatedHostedFilePayload = {
|
|
4129
4205
|
hostedFile: HostedFile;
|
|
4130
4206
|
};
|
|
@@ -4207,6 +4283,9 @@ export type UpdatedUpstreamProxySocksPayload = {
|
|
|
4207
4283
|
export type UpdatedViewerAssistantUsagePayload = {
|
|
4208
4284
|
usage: AssistantUsage;
|
|
4209
4285
|
};
|
|
4286
|
+
export type UpdatedViewerProfilePayload = {
|
|
4287
|
+
profile: UserProfile;
|
|
4288
|
+
};
|
|
4210
4289
|
export type UpdatedViewerSettingsPayload = {
|
|
4211
4290
|
settings: UserSettings;
|
|
4212
4291
|
};
|
|
@@ -9044,6 +9123,63 @@ export type DeletedFindingsSubscription = {
|
|
|
9044
9123
|
snapshot: number;
|
|
9045
9124
|
};
|
|
9046
9125
|
};
|
|
9126
|
+
export type UpdatedFindingsSubscriptionVariables = Exact<{
|
|
9127
|
+
order?: InputMaybe<FindingOrderInput>;
|
|
9128
|
+
}>;
|
|
9129
|
+
export type UpdatedFindingsSubscription = {
|
|
9130
|
+
updatedFindings: {
|
|
9131
|
+
findings: Array<{
|
|
9132
|
+
snapshot: number;
|
|
9133
|
+
findingEdge: {
|
|
9134
|
+
cursor: string;
|
|
9135
|
+
node: {
|
|
9136
|
+
id: string;
|
|
9137
|
+
title: string;
|
|
9138
|
+
description?: string | undefined | null;
|
|
9139
|
+
reporter: string;
|
|
9140
|
+
host: string;
|
|
9141
|
+
path: string;
|
|
9142
|
+
createdAt: Date;
|
|
9143
|
+
request: {
|
|
9144
|
+
__typename: "Request";
|
|
9145
|
+
id: string;
|
|
9146
|
+
host: string;
|
|
9147
|
+
port: number;
|
|
9148
|
+
path: string;
|
|
9149
|
+
query: string;
|
|
9150
|
+
method: string;
|
|
9151
|
+
edited: boolean;
|
|
9152
|
+
isTls: boolean;
|
|
9153
|
+
sni?: string | undefined | null;
|
|
9154
|
+
length: number;
|
|
9155
|
+
alteration: Alteration;
|
|
9156
|
+
fileExtension?: string | undefined | null;
|
|
9157
|
+
source: Source;
|
|
9158
|
+
createdAt: Date;
|
|
9159
|
+
metadata: {
|
|
9160
|
+
__typename: "RequestMetadata";
|
|
9161
|
+
id: string;
|
|
9162
|
+
color?: string | undefined | null;
|
|
9163
|
+
};
|
|
9164
|
+
response?: {
|
|
9165
|
+
__typename: "Response";
|
|
9166
|
+
id: string;
|
|
9167
|
+
statusCode: number;
|
|
9168
|
+
roundtripTime: number;
|
|
9169
|
+
length: number;
|
|
9170
|
+
createdAt: Date;
|
|
9171
|
+
alteration: Alteration;
|
|
9172
|
+
edited: boolean;
|
|
9173
|
+
} | undefined | null;
|
|
9174
|
+
stream?: {
|
|
9175
|
+
id: string;
|
|
9176
|
+
} | undefined | null;
|
|
9177
|
+
};
|
|
9178
|
+
};
|
|
9179
|
+
};
|
|
9180
|
+
}>;
|
|
9181
|
+
};
|
|
9182
|
+
};
|
|
9047
9183
|
export type CreateFindingMutationVariables = Exact<{
|
|
9048
9184
|
requestId: Scalars["ID"]["input"];
|
|
9049
9185
|
input: CreateFindingInput;
|
|
@@ -9105,13 +9241,73 @@ export type CreateFindingMutation = {
|
|
|
9105
9241
|
};
|
|
9106
9242
|
};
|
|
9107
9243
|
export type DeleteFindingsMutationVariables = Exact<{
|
|
9108
|
-
|
|
9244
|
+
input: DeleteFindingsInput;
|
|
9109
9245
|
}>;
|
|
9110
9246
|
export type DeleteFindingsMutation = {
|
|
9111
9247
|
deleteFindings: {
|
|
9112
9248
|
deletedIds?: Array<string> | undefined | null;
|
|
9113
9249
|
};
|
|
9114
9250
|
};
|
|
9251
|
+
export type UpdateFindingMutationVariables = Exact<{
|
|
9252
|
+
id: Scalars["ID"]["input"];
|
|
9253
|
+
input: UpdateFindingInput;
|
|
9254
|
+
}>;
|
|
9255
|
+
export type UpdateFindingMutation = {
|
|
9256
|
+
updateFinding: {
|
|
9257
|
+
finding?: {
|
|
9258
|
+
id: string;
|
|
9259
|
+
title: string;
|
|
9260
|
+
description?: string | undefined | null;
|
|
9261
|
+
reporter: string;
|
|
9262
|
+
host: string;
|
|
9263
|
+
path: string;
|
|
9264
|
+
createdAt: Date;
|
|
9265
|
+
request: {
|
|
9266
|
+
__typename: "Request";
|
|
9267
|
+
id: string;
|
|
9268
|
+
host: string;
|
|
9269
|
+
port: number;
|
|
9270
|
+
path: string;
|
|
9271
|
+
query: string;
|
|
9272
|
+
method: string;
|
|
9273
|
+
edited: boolean;
|
|
9274
|
+
isTls: boolean;
|
|
9275
|
+
sni?: string | undefined | null;
|
|
9276
|
+
length: number;
|
|
9277
|
+
alteration: Alteration;
|
|
9278
|
+
fileExtension?: string | undefined | null;
|
|
9279
|
+
source: Source;
|
|
9280
|
+
createdAt: Date;
|
|
9281
|
+
metadata: {
|
|
9282
|
+
__typename: "RequestMetadata";
|
|
9283
|
+
id: string;
|
|
9284
|
+
color?: string | undefined | null;
|
|
9285
|
+
};
|
|
9286
|
+
response?: {
|
|
9287
|
+
__typename: "Response";
|
|
9288
|
+
id: string;
|
|
9289
|
+
statusCode: number;
|
|
9290
|
+
roundtripTime: number;
|
|
9291
|
+
length: number;
|
|
9292
|
+
createdAt: Date;
|
|
9293
|
+
alteration: Alteration;
|
|
9294
|
+
edited: boolean;
|
|
9295
|
+
} | undefined | null;
|
|
9296
|
+
stream?: {
|
|
9297
|
+
id: string;
|
|
9298
|
+
} | undefined | null;
|
|
9299
|
+
};
|
|
9300
|
+
} | undefined | null;
|
|
9301
|
+
error?: {
|
|
9302
|
+
__typename: "OtherUserError";
|
|
9303
|
+
code: string;
|
|
9304
|
+
} | {
|
|
9305
|
+
__typename: "UnknownIdUserError";
|
|
9306
|
+
id: string;
|
|
9307
|
+
code: string;
|
|
9308
|
+
} | undefined | null;
|
|
9309
|
+
};
|
|
9310
|
+
};
|
|
9115
9311
|
export type InterceptEntryFullFragment = {
|
|
9116
9312
|
__typename: "InterceptEntry";
|
|
9117
9313
|
id: string;
|
|
@@ -10582,6 +10778,14 @@ export type UpdatedInterceptOptionsSubscription = {
|
|
|
10582
10778
|
};
|
|
10583
10779
|
};
|
|
10584
10780
|
};
|
|
10781
|
+
export type DeletedInterceptMessageSubscriptionVariables = Exact<{
|
|
10782
|
+
[key: string]: never;
|
|
10783
|
+
}>;
|
|
10784
|
+
export type DeletedInterceptMessageSubscription = {
|
|
10785
|
+
deletedInterceptMessage: {
|
|
10786
|
+
deletedMessageId: string;
|
|
10787
|
+
};
|
|
10788
|
+
};
|
|
10585
10789
|
export type TamperReplacerTermFullFragment = {
|
|
10586
10790
|
__typename: "TamperReplacerTerm";
|
|
10587
10791
|
term: string;
|
|
@@ -15846,16 +16050,6 @@ export type ReplayEntryFullFragment = {
|
|
|
15846
16050
|
}>;
|
|
15847
16051
|
}>;
|
|
15848
16052
|
};
|
|
15849
|
-
connection: {
|
|
15850
|
-
__typename: "ConnectionInfo";
|
|
15851
|
-
host: string;
|
|
15852
|
-
port: number;
|
|
15853
|
-
isTLS: boolean;
|
|
15854
|
-
SNI?: string | undefined | null;
|
|
15855
|
-
};
|
|
15856
|
-
session: {
|
|
15857
|
-
id: string;
|
|
15858
|
-
};
|
|
15859
16053
|
request?: {
|
|
15860
16054
|
__typename: "Request";
|
|
15861
16055
|
id: string;
|
|
@@ -15872,6 +16066,7 @@ export type ReplayEntryFullFragment = {
|
|
|
15872
16066
|
fileExtension?: string | undefined | null;
|
|
15873
16067
|
source: Source;
|
|
15874
16068
|
createdAt: Date;
|
|
16069
|
+
raw: string;
|
|
15875
16070
|
metadata: {
|
|
15876
16071
|
__typename: "RequestMetadata";
|
|
15877
16072
|
id: string;
|
|
@@ -15890,7 +16085,52 @@ export type ReplayEntryFullFragment = {
|
|
|
15890
16085
|
stream?: {
|
|
15891
16086
|
id: string;
|
|
15892
16087
|
} | undefined | null;
|
|
16088
|
+
edits: Array<{
|
|
16089
|
+
__typename: "Request";
|
|
16090
|
+
id: string;
|
|
16091
|
+
host: string;
|
|
16092
|
+
port: number;
|
|
16093
|
+
path: string;
|
|
16094
|
+
query: string;
|
|
16095
|
+
method: string;
|
|
16096
|
+
edited: boolean;
|
|
16097
|
+
isTls: boolean;
|
|
16098
|
+
sni?: string | undefined | null;
|
|
16099
|
+
length: number;
|
|
16100
|
+
alteration: Alteration;
|
|
16101
|
+
fileExtension?: string | undefined | null;
|
|
16102
|
+
source: Source;
|
|
16103
|
+
createdAt: Date;
|
|
16104
|
+
metadata: {
|
|
16105
|
+
__typename: "RequestMetadata";
|
|
16106
|
+
id: string;
|
|
16107
|
+
color?: string | undefined | null;
|
|
16108
|
+
};
|
|
16109
|
+
response?: {
|
|
16110
|
+
__typename: "Response";
|
|
16111
|
+
id: string;
|
|
16112
|
+
statusCode: number;
|
|
16113
|
+
roundtripTime: number;
|
|
16114
|
+
length: number;
|
|
16115
|
+
createdAt: Date;
|
|
16116
|
+
alteration: Alteration;
|
|
16117
|
+
edited: boolean;
|
|
16118
|
+
} | undefined | null;
|
|
16119
|
+
stream?: {
|
|
16120
|
+
id: string;
|
|
16121
|
+
} | undefined | null;
|
|
16122
|
+
}>;
|
|
15893
16123
|
} | undefined | null;
|
|
16124
|
+
connection: {
|
|
16125
|
+
__typename: "ConnectionInfo";
|
|
16126
|
+
host: string;
|
|
16127
|
+
port: number;
|
|
16128
|
+
isTLS: boolean;
|
|
16129
|
+
SNI?: string | undefined | null;
|
|
16130
|
+
};
|
|
16131
|
+
session: {
|
|
16132
|
+
id: string;
|
|
16133
|
+
};
|
|
15894
16134
|
};
|
|
15895
16135
|
export type ReplaySessionMetaFragment = {
|
|
15896
16136
|
__typename: "ReplaySession";
|
|
@@ -16000,18 +16240,6 @@ export type ReplaySessionMetaFragment = {
|
|
|
16000
16240
|
} | undefined | null;
|
|
16001
16241
|
} | undefined | null;
|
|
16002
16242
|
}>;
|
|
16003
|
-
pageInfo: {
|
|
16004
|
-
__typename: "PageInfo";
|
|
16005
|
-
hasPreviousPage: boolean;
|
|
16006
|
-
hasNextPage: boolean;
|
|
16007
|
-
startCursor?: string | undefined | null;
|
|
16008
|
-
endCursor?: string | undefined | null;
|
|
16009
|
-
};
|
|
16010
|
-
count: {
|
|
16011
|
-
__typename: "Count";
|
|
16012
|
-
value: number;
|
|
16013
|
-
snapshot: number;
|
|
16014
|
-
};
|
|
16015
16243
|
};
|
|
16016
16244
|
};
|
|
16017
16245
|
export type ReplaySessionCollectionMetaFragment = {
|
|
@@ -16126,18 +16354,6 @@ export type ReplaySessionCollectionMetaFragment = {
|
|
|
16126
16354
|
} | undefined | null;
|
|
16127
16355
|
} | undefined | null;
|
|
16128
16356
|
}>;
|
|
16129
|
-
pageInfo: {
|
|
16130
|
-
__typename: "PageInfo";
|
|
16131
|
-
hasPreviousPage: boolean;
|
|
16132
|
-
hasNextPage: boolean;
|
|
16133
|
-
startCursor?: string | undefined | null;
|
|
16134
|
-
endCursor?: string | undefined | null;
|
|
16135
|
-
};
|
|
16136
|
-
count: {
|
|
16137
|
-
__typename: "Count";
|
|
16138
|
-
value: number;
|
|
16139
|
-
snapshot: number;
|
|
16140
|
-
};
|
|
16141
16357
|
};
|
|
16142
16358
|
}>;
|
|
16143
16359
|
};
|
|
@@ -16147,34 +16363,59 @@ export type ReplayTaskMetaFragment = {
|
|
|
16147
16363
|
createdAt: Date;
|
|
16148
16364
|
replayEntry: {
|
|
16149
16365
|
__typename: "ReplayEntry";
|
|
16366
|
+
raw: string;
|
|
16150
16367
|
id: string;
|
|
16151
16368
|
error?: string | undefined | null;
|
|
16152
|
-
|
|
16153
|
-
|
|
16154
|
-
|
|
16155
|
-
|
|
16156
|
-
|
|
16157
|
-
|
|
16158
|
-
|
|
16159
|
-
|
|
16160
|
-
|
|
16161
|
-
|
|
16162
|
-
|
|
16163
|
-
|
|
16164
|
-
|
|
16165
|
-
|
|
16166
|
-
|
|
16167
|
-
|
|
16168
|
-
|
|
16169
|
-
|
|
16170
|
-
|
|
16171
|
-
|
|
16172
|
-
|
|
16173
|
-
|
|
16174
|
-
|
|
16175
|
-
|
|
16176
|
-
|
|
16369
|
+
settings: {
|
|
16370
|
+
placeholders: Array<{
|
|
16371
|
+
__typename: "ReplayPlaceholder";
|
|
16372
|
+
inputRange: {
|
|
16373
|
+
start: number;
|
|
16374
|
+
end: number;
|
|
16375
|
+
};
|
|
16376
|
+
outputRange: {
|
|
16377
|
+
start: number;
|
|
16378
|
+
end: number;
|
|
16379
|
+
};
|
|
16380
|
+
preprocessors: Array<{
|
|
16381
|
+
__typename: "ReplayPreprocessor";
|
|
16382
|
+
options: {
|
|
16383
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
16384
|
+
variableName: string;
|
|
16385
|
+
} | {
|
|
16386
|
+
__typename: "ReplayPrefixPreprocessor";
|
|
16387
|
+
value: string;
|
|
16388
|
+
} | {
|
|
16389
|
+
__typename: "ReplaySuffixPreprocessor";
|
|
16390
|
+
value: string;
|
|
16391
|
+
} | {
|
|
16392
|
+
__typename: "ReplayUrlEncodePreprocessor";
|
|
16393
|
+
charset?: string | undefined | null;
|
|
16394
|
+
nonAscii: boolean;
|
|
16395
|
+
} | {
|
|
16396
|
+
__typename: "ReplayWorkflowPreprocessor";
|
|
16397
|
+
id: string;
|
|
16398
|
+
};
|
|
16399
|
+
}>;
|
|
16400
|
+
}>;
|
|
16401
|
+
};
|
|
16402
|
+
request?: {
|
|
16403
|
+
__typename: "Request";
|
|
16404
|
+
id: string;
|
|
16405
|
+
host: string;
|
|
16406
|
+
port: number;
|
|
16407
|
+
path: string;
|
|
16408
|
+
query: string;
|
|
16409
|
+
method: string;
|
|
16410
|
+
edited: boolean;
|
|
16411
|
+
isTls: boolean;
|
|
16412
|
+
sni?: string | undefined | null;
|
|
16413
|
+
length: number;
|
|
16414
|
+
alteration: Alteration;
|
|
16415
|
+
fileExtension?: string | undefined | null;
|
|
16416
|
+
source: Source;
|
|
16177
16417
|
createdAt: Date;
|
|
16418
|
+
raw: string;
|
|
16178
16419
|
metadata: {
|
|
16179
16420
|
__typename: "RequestMetadata";
|
|
16180
16421
|
id: string;
|
|
@@ -16193,7 +16434,52 @@ export type ReplayTaskMetaFragment = {
|
|
|
16193
16434
|
stream?: {
|
|
16194
16435
|
id: string;
|
|
16195
16436
|
} | undefined | null;
|
|
16437
|
+
edits: Array<{
|
|
16438
|
+
__typename: "Request";
|
|
16439
|
+
id: string;
|
|
16440
|
+
host: string;
|
|
16441
|
+
port: number;
|
|
16442
|
+
path: string;
|
|
16443
|
+
query: string;
|
|
16444
|
+
method: string;
|
|
16445
|
+
edited: boolean;
|
|
16446
|
+
isTls: boolean;
|
|
16447
|
+
sni?: string | undefined | null;
|
|
16448
|
+
length: number;
|
|
16449
|
+
alteration: Alteration;
|
|
16450
|
+
fileExtension?: string | undefined | null;
|
|
16451
|
+
source: Source;
|
|
16452
|
+
createdAt: Date;
|
|
16453
|
+
metadata: {
|
|
16454
|
+
__typename: "RequestMetadata";
|
|
16455
|
+
id: string;
|
|
16456
|
+
color?: string | undefined | null;
|
|
16457
|
+
};
|
|
16458
|
+
response?: {
|
|
16459
|
+
__typename: "Response";
|
|
16460
|
+
id: string;
|
|
16461
|
+
statusCode: number;
|
|
16462
|
+
roundtripTime: number;
|
|
16463
|
+
length: number;
|
|
16464
|
+
createdAt: Date;
|
|
16465
|
+
alteration: Alteration;
|
|
16466
|
+
edited: boolean;
|
|
16467
|
+
} | undefined | null;
|
|
16468
|
+
stream?: {
|
|
16469
|
+
id: string;
|
|
16470
|
+
} | undefined | null;
|
|
16471
|
+
}>;
|
|
16196
16472
|
} | undefined | null;
|
|
16473
|
+
connection: {
|
|
16474
|
+
__typename: "ConnectionInfo";
|
|
16475
|
+
host: string;
|
|
16476
|
+
port: number;
|
|
16477
|
+
isTLS: boolean;
|
|
16478
|
+
SNI?: string | undefined | null;
|
|
16479
|
+
};
|
|
16480
|
+
session: {
|
|
16481
|
+
id: string;
|
|
16482
|
+
};
|
|
16197
16483
|
};
|
|
16198
16484
|
};
|
|
16199
16485
|
export type ReplayPrefixPreprocessorFullFragment = {
|
|
@@ -16310,16 +16596,6 @@ export type ReplayEntryQuery = {
|
|
|
16310
16596
|
}>;
|
|
16311
16597
|
}>;
|
|
16312
16598
|
};
|
|
16313
|
-
connection: {
|
|
16314
|
-
__typename: "ConnectionInfo";
|
|
16315
|
-
host: string;
|
|
16316
|
-
port: number;
|
|
16317
|
-
isTLS: boolean;
|
|
16318
|
-
SNI?: string | undefined | null;
|
|
16319
|
-
};
|
|
16320
|
-
session: {
|
|
16321
|
-
id: string;
|
|
16322
|
-
};
|
|
16323
16599
|
request?: {
|
|
16324
16600
|
__typename: "Request";
|
|
16325
16601
|
id: string;
|
|
@@ -16336,6 +16612,7 @@ export type ReplayEntryQuery = {
|
|
|
16336
16612
|
fileExtension?: string | undefined | null;
|
|
16337
16613
|
source: Source;
|
|
16338
16614
|
createdAt: Date;
|
|
16615
|
+
raw: string;
|
|
16339
16616
|
metadata: {
|
|
16340
16617
|
__typename: "RequestMetadata";
|
|
16341
16618
|
id: string;
|
|
@@ -16354,7 +16631,52 @@ export type ReplayEntryQuery = {
|
|
|
16354
16631
|
stream?: {
|
|
16355
16632
|
id: string;
|
|
16356
16633
|
} | undefined | null;
|
|
16634
|
+
edits: Array<{
|
|
16635
|
+
__typename: "Request";
|
|
16636
|
+
id: string;
|
|
16637
|
+
host: string;
|
|
16638
|
+
port: number;
|
|
16639
|
+
path: string;
|
|
16640
|
+
query: string;
|
|
16641
|
+
method: string;
|
|
16642
|
+
edited: boolean;
|
|
16643
|
+
isTls: boolean;
|
|
16644
|
+
sni?: string | undefined | null;
|
|
16645
|
+
length: number;
|
|
16646
|
+
alteration: Alteration;
|
|
16647
|
+
fileExtension?: string | undefined | null;
|
|
16648
|
+
source: Source;
|
|
16649
|
+
createdAt: Date;
|
|
16650
|
+
metadata: {
|
|
16651
|
+
__typename: "RequestMetadata";
|
|
16652
|
+
id: string;
|
|
16653
|
+
color?: string | undefined | null;
|
|
16654
|
+
};
|
|
16655
|
+
response?: {
|
|
16656
|
+
__typename: "Response";
|
|
16657
|
+
id: string;
|
|
16658
|
+
statusCode: number;
|
|
16659
|
+
roundtripTime: number;
|
|
16660
|
+
length: number;
|
|
16661
|
+
createdAt: Date;
|
|
16662
|
+
alteration: Alteration;
|
|
16663
|
+
edited: boolean;
|
|
16664
|
+
} | undefined | null;
|
|
16665
|
+
stream?: {
|
|
16666
|
+
id: string;
|
|
16667
|
+
} | undefined | null;
|
|
16668
|
+
}>;
|
|
16357
16669
|
} | undefined | null;
|
|
16670
|
+
connection: {
|
|
16671
|
+
__typename: "ConnectionInfo";
|
|
16672
|
+
host: string;
|
|
16673
|
+
port: number;
|
|
16674
|
+
isTLS: boolean;
|
|
16675
|
+
SNI?: string | undefined | null;
|
|
16676
|
+
};
|
|
16677
|
+
session: {
|
|
16678
|
+
id: string;
|
|
16679
|
+
};
|
|
16358
16680
|
} | undefined | null;
|
|
16359
16681
|
};
|
|
16360
16682
|
export type ActiveReplayEntryBySessionQueryVariables = Exact<{
|
|
@@ -16469,18 +16791,6 @@ export type ActiveReplayEntryBySessionQuery = {
|
|
|
16469
16791
|
} | undefined | null;
|
|
16470
16792
|
} | undefined | null;
|
|
16471
16793
|
}>;
|
|
16472
|
-
pageInfo: {
|
|
16473
|
-
__typename: "PageInfo";
|
|
16474
|
-
hasPreviousPage: boolean;
|
|
16475
|
-
hasNextPage: boolean;
|
|
16476
|
-
startCursor?: string | undefined | null;
|
|
16477
|
-
endCursor?: string | undefined | null;
|
|
16478
|
-
};
|
|
16479
|
-
count: {
|
|
16480
|
-
__typename: "Count";
|
|
16481
|
-
value: number;
|
|
16482
|
-
snapshot: number;
|
|
16483
|
-
};
|
|
16484
16794
|
};
|
|
16485
16795
|
} | undefined | null;
|
|
16486
16796
|
};
|
|
@@ -16906,18 +17216,6 @@ export type ReplaySessionCollectionsQuery = {
|
|
|
16906
17216
|
} | undefined | null;
|
|
16907
17217
|
} | undefined | null;
|
|
16908
17218
|
}>;
|
|
16909
|
-
pageInfo: {
|
|
16910
|
-
__typename: "PageInfo";
|
|
16911
|
-
hasPreviousPage: boolean;
|
|
16912
|
-
hasNextPage: boolean;
|
|
16913
|
-
startCursor?: string | undefined | null;
|
|
16914
|
-
endCursor?: string | undefined | null;
|
|
16915
|
-
};
|
|
16916
|
-
count: {
|
|
16917
|
-
__typename: "Count";
|
|
16918
|
-
value: number;
|
|
16919
|
-
snapshot: number;
|
|
16920
|
-
};
|
|
16921
17219
|
};
|
|
16922
17220
|
}>;
|
|
16923
17221
|
};
|
|
@@ -17042,18 +17340,6 @@ export type RenameReplaySessionCollectionMutation = {
|
|
|
17042
17340
|
} | undefined | null;
|
|
17043
17341
|
} | undefined | null;
|
|
17044
17342
|
}>;
|
|
17045
|
-
pageInfo: {
|
|
17046
|
-
__typename: "PageInfo";
|
|
17047
|
-
hasPreviousPage: boolean;
|
|
17048
|
-
hasNextPage: boolean;
|
|
17049
|
-
startCursor?: string | undefined | null;
|
|
17050
|
-
endCursor?: string | undefined | null;
|
|
17051
|
-
};
|
|
17052
|
-
count: {
|
|
17053
|
-
__typename: "Count";
|
|
17054
|
-
value: number;
|
|
17055
|
-
snapshot: number;
|
|
17056
|
-
};
|
|
17057
17343
|
};
|
|
17058
17344
|
}>;
|
|
17059
17345
|
} | undefined | null;
|
|
@@ -17176,18 +17462,6 @@ export type CreateReplaySessionCollectionMutation = {
|
|
|
17176
17462
|
} | undefined | null;
|
|
17177
17463
|
} | undefined | null;
|
|
17178
17464
|
}>;
|
|
17179
|
-
pageInfo: {
|
|
17180
|
-
__typename: "PageInfo";
|
|
17181
|
-
hasPreviousPage: boolean;
|
|
17182
|
-
hasNextPage: boolean;
|
|
17183
|
-
startCursor?: string | undefined | null;
|
|
17184
|
-
endCursor?: string | undefined | null;
|
|
17185
|
-
};
|
|
17186
|
-
count: {
|
|
17187
|
-
__typename: "Count";
|
|
17188
|
-
value: number;
|
|
17189
|
-
snapshot: number;
|
|
17190
|
-
};
|
|
17191
17465
|
};
|
|
17192
17466
|
}>;
|
|
17193
17467
|
} | undefined | null;
|
|
@@ -17315,18 +17589,6 @@ export type RenameReplaySessionMutation = {
|
|
|
17315
17589
|
} | undefined | null;
|
|
17316
17590
|
} | undefined | null;
|
|
17317
17591
|
}>;
|
|
17318
|
-
pageInfo: {
|
|
17319
|
-
__typename: "PageInfo";
|
|
17320
|
-
hasPreviousPage: boolean;
|
|
17321
|
-
hasNextPage: boolean;
|
|
17322
|
-
startCursor?: string | undefined | null;
|
|
17323
|
-
endCursor?: string | undefined | null;
|
|
17324
|
-
};
|
|
17325
|
-
count: {
|
|
17326
|
-
__typename: "Count";
|
|
17327
|
-
value: number;
|
|
17328
|
-
snapshot: number;
|
|
17329
|
-
};
|
|
17330
17592
|
};
|
|
17331
17593
|
} | undefined | null;
|
|
17332
17594
|
};
|
|
@@ -17445,18 +17707,6 @@ export type SetActiveReplaySessionEntryMutation = {
|
|
|
17445
17707
|
} | undefined | null;
|
|
17446
17708
|
} | undefined | null;
|
|
17447
17709
|
}>;
|
|
17448
|
-
pageInfo: {
|
|
17449
|
-
__typename: "PageInfo";
|
|
17450
|
-
hasPreviousPage: boolean;
|
|
17451
|
-
hasNextPage: boolean;
|
|
17452
|
-
startCursor?: string | undefined | null;
|
|
17453
|
-
endCursor?: string | undefined | null;
|
|
17454
|
-
};
|
|
17455
|
-
count: {
|
|
17456
|
-
__typename: "Count";
|
|
17457
|
-
value: number;
|
|
17458
|
-
snapshot: number;
|
|
17459
|
-
};
|
|
17460
17710
|
};
|
|
17461
17711
|
} | undefined | null;
|
|
17462
17712
|
};
|
|
@@ -17590,18 +17840,6 @@ export type CreateReplaySessionMutation = {
|
|
|
17590
17840
|
} | undefined | null;
|
|
17591
17841
|
} | undefined | null;
|
|
17592
17842
|
}>;
|
|
17593
|
-
pageInfo: {
|
|
17594
|
-
__typename: "PageInfo";
|
|
17595
|
-
hasPreviousPage: boolean;
|
|
17596
|
-
hasNextPage: boolean;
|
|
17597
|
-
startCursor?: string | undefined | null;
|
|
17598
|
-
endCursor?: string | undefined | null;
|
|
17599
|
-
};
|
|
17600
|
-
count: {
|
|
17601
|
-
__typename: "Count";
|
|
17602
|
-
value: number;
|
|
17603
|
-
snapshot: number;
|
|
17604
|
-
};
|
|
17605
17843
|
};
|
|
17606
17844
|
}>;
|
|
17607
17845
|
};
|
|
@@ -17706,18 +17944,6 @@ export type CreateReplaySessionMutation = {
|
|
|
17706
17944
|
} | undefined | null;
|
|
17707
17945
|
} | undefined | null;
|
|
17708
17946
|
}>;
|
|
17709
|
-
pageInfo: {
|
|
17710
|
-
__typename: "PageInfo";
|
|
17711
|
-
hasPreviousPage: boolean;
|
|
17712
|
-
hasNextPage: boolean;
|
|
17713
|
-
startCursor?: string | undefined | null;
|
|
17714
|
-
endCursor?: string | undefined | null;
|
|
17715
|
-
};
|
|
17716
|
-
count: {
|
|
17717
|
-
__typename: "Count";
|
|
17718
|
-
value: number;
|
|
17719
|
-
snapshot: number;
|
|
17720
|
-
};
|
|
17721
17947
|
};
|
|
17722
17948
|
} | undefined | null;
|
|
17723
17949
|
};
|
|
@@ -17836,18 +18062,6 @@ export type MoveReplaySessionMutation = {
|
|
|
17836
18062
|
} | undefined | null;
|
|
17837
18063
|
} | undefined | null;
|
|
17838
18064
|
}>;
|
|
17839
|
-
pageInfo: {
|
|
17840
|
-
__typename: "PageInfo";
|
|
17841
|
-
hasPreviousPage: boolean;
|
|
17842
|
-
hasNextPage: boolean;
|
|
17843
|
-
startCursor?: string | undefined | null;
|
|
17844
|
-
endCursor?: string | undefined | null;
|
|
17845
|
-
};
|
|
17846
|
-
count: {
|
|
17847
|
-
__typename: "Count";
|
|
17848
|
-
value: number;
|
|
17849
|
-
snapshot: number;
|
|
17850
|
-
};
|
|
17851
18065
|
};
|
|
17852
18066
|
} | undefined | null;
|
|
17853
18067
|
};
|
|
@@ -17864,17 +18078,41 @@ export type StartReplayTaskMutation = {
|
|
|
17864
18078
|
createdAt: Date;
|
|
17865
18079
|
replayEntry: {
|
|
17866
18080
|
__typename: "ReplayEntry";
|
|
18081
|
+
raw: string;
|
|
17867
18082
|
id: string;
|
|
17868
18083
|
error?: string | undefined | null;
|
|
17869
|
-
|
|
17870
|
-
|
|
17871
|
-
|
|
17872
|
-
|
|
17873
|
-
|
|
17874
|
-
|
|
17875
|
-
|
|
17876
|
-
|
|
17877
|
-
|
|
18084
|
+
settings: {
|
|
18085
|
+
placeholders: Array<{
|
|
18086
|
+
__typename: "ReplayPlaceholder";
|
|
18087
|
+
inputRange: {
|
|
18088
|
+
start: number;
|
|
18089
|
+
end: number;
|
|
18090
|
+
};
|
|
18091
|
+
outputRange: {
|
|
18092
|
+
start: number;
|
|
18093
|
+
end: number;
|
|
18094
|
+
};
|
|
18095
|
+
preprocessors: Array<{
|
|
18096
|
+
__typename: "ReplayPreprocessor";
|
|
18097
|
+
options: {
|
|
18098
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
18099
|
+
variableName: string;
|
|
18100
|
+
} | {
|
|
18101
|
+
__typename: "ReplayPrefixPreprocessor";
|
|
18102
|
+
value: string;
|
|
18103
|
+
} | {
|
|
18104
|
+
__typename: "ReplaySuffixPreprocessor";
|
|
18105
|
+
value: string;
|
|
18106
|
+
} | {
|
|
18107
|
+
__typename: "ReplayUrlEncodePreprocessor";
|
|
18108
|
+
charset?: string | undefined | null;
|
|
18109
|
+
nonAscii: boolean;
|
|
18110
|
+
} | {
|
|
18111
|
+
__typename: "ReplayWorkflowPreprocessor";
|
|
18112
|
+
id: string;
|
|
18113
|
+
};
|
|
18114
|
+
}>;
|
|
18115
|
+
}>;
|
|
17878
18116
|
};
|
|
17879
18117
|
request?: {
|
|
17880
18118
|
__typename: "Request";
|
|
@@ -17892,6 +18130,7 @@ export type StartReplayTaskMutation = {
|
|
|
17892
18130
|
fileExtension?: string | undefined | null;
|
|
17893
18131
|
source: Source;
|
|
17894
18132
|
createdAt: Date;
|
|
18133
|
+
raw: string;
|
|
17895
18134
|
metadata: {
|
|
17896
18135
|
__typename: "RequestMetadata";
|
|
17897
18136
|
id: string;
|
|
@@ -17910,7 +18149,52 @@ export type StartReplayTaskMutation = {
|
|
|
17910
18149
|
stream?: {
|
|
17911
18150
|
id: string;
|
|
17912
18151
|
} | undefined | null;
|
|
18152
|
+
edits: Array<{
|
|
18153
|
+
__typename: "Request";
|
|
18154
|
+
id: string;
|
|
18155
|
+
host: string;
|
|
18156
|
+
port: number;
|
|
18157
|
+
path: string;
|
|
18158
|
+
query: string;
|
|
18159
|
+
method: string;
|
|
18160
|
+
edited: boolean;
|
|
18161
|
+
isTls: boolean;
|
|
18162
|
+
sni?: string | undefined | null;
|
|
18163
|
+
length: number;
|
|
18164
|
+
alteration: Alteration;
|
|
18165
|
+
fileExtension?: string | undefined | null;
|
|
18166
|
+
source: Source;
|
|
18167
|
+
createdAt: Date;
|
|
18168
|
+
metadata: {
|
|
18169
|
+
__typename: "RequestMetadata";
|
|
18170
|
+
id: string;
|
|
18171
|
+
color?: string | undefined | null;
|
|
18172
|
+
};
|
|
18173
|
+
response?: {
|
|
18174
|
+
__typename: "Response";
|
|
18175
|
+
id: string;
|
|
18176
|
+
statusCode: number;
|
|
18177
|
+
roundtripTime: number;
|
|
18178
|
+
length: number;
|
|
18179
|
+
createdAt: Date;
|
|
18180
|
+
alteration: Alteration;
|
|
18181
|
+
edited: boolean;
|
|
18182
|
+
} | undefined | null;
|
|
18183
|
+
stream?: {
|
|
18184
|
+
id: string;
|
|
18185
|
+
} | undefined | null;
|
|
18186
|
+
}>;
|
|
17913
18187
|
} | undefined | null;
|
|
18188
|
+
connection: {
|
|
18189
|
+
__typename: "ConnectionInfo";
|
|
18190
|
+
host: string;
|
|
18191
|
+
port: number;
|
|
18192
|
+
isTLS: boolean;
|
|
18193
|
+
SNI?: string | undefined | null;
|
|
18194
|
+
};
|
|
18195
|
+
session: {
|
|
18196
|
+
id: string;
|
|
18197
|
+
};
|
|
17914
18198
|
};
|
|
17915
18199
|
} | undefined | null;
|
|
17916
18200
|
error?: {
|
|
@@ -18045,18 +18329,6 @@ export type CreatedReplaySessionSubscription = {
|
|
|
18045
18329
|
} | undefined | null;
|
|
18046
18330
|
} | undefined | null;
|
|
18047
18331
|
}>;
|
|
18048
|
-
pageInfo: {
|
|
18049
|
-
__typename: "PageInfo";
|
|
18050
|
-
hasPreviousPage: boolean;
|
|
18051
|
-
hasNextPage: boolean;
|
|
18052
|
-
startCursor?: string | undefined | null;
|
|
18053
|
-
endCursor?: string | undefined | null;
|
|
18054
|
-
};
|
|
18055
|
-
count: {
|
|
18056
|
-
__typename: "Count";
|
|
18057
|
-
value: number;
|
|
18058
|
-
snapshot: number;
|
|
18059
|
-
};
|
|
18060
18332
|
};
|
|
18061
18333
|
};
|
|
18062
18334
|
};
|
|
@@ -18177,18 +18449,6 @@ export type UpdatedReplaySessionSubscription = {
|
|
|
18177
18449
|
} | undefined | null;
|
|
18178
18450
|
} | undefined | null;
|
|
18179
18451
|
}>;
|
|
18180
|
-
pageInfo: {
|
|
18181
|
-
__typename: "PageInfo";
|
|
18182
|
-
hasPreviousPage: boolean;
|
|
18183
|
-
hasNextPage: boolean;
|
|
18184
|
-
startCursor?: string | undefined | null;
|
|
18185
|
-
endCursor?: string | undefined | null;
|
|
18186
|
-
};
|
|
18187
|
-
count: {
|
|
18188
|
-
__typename: "Count";
|
|
18189
|
-
value: number;
|
|
18190
|
-
snapshot: number;
|
|
18191
|
-
};
|
|
18192
18452
|
};
|
|
18193
18453
|
};
|
|
18194
18454
|
};
|
|
@@ -18320,18 +18580,6 @@ export type CreatedReplaySessionCollectionSubscription = {
|
|
|
18320
18580
|
} | undefined | null;
|
|
18321
18581
|
} | undefined | null;
|
|
18322
18582
|
}>;
|
|
18323
|
-
pageInfo: {
|
|
18324
|
-
__typename: "PageInfo";
|
|
18325
|
-
hasPreviousPage: boolean;
|
|
18326
|
-
hasNextPage: boolean;
|
|
18327
|
-
startCursor?: string | undefined | null;
|
|
18328
|
-
endCursor?: string | undefined | null;
|
|
18329
|
-
};
|
|
18330
|
-
count: {
|
|
18331
|
-
__typename: "Count";
|
|
18332
|
-
value: number;
|
|
18333
|
-
snapshot: number;
|
|
18334
|
-
};
|
|
18335
18583
|
};
|
|
18336
18584
|
}>;
|
|
18337
18585
|
};
|
|
@@ -18456,18 +18704,6 @@ export type UpdatedReplaySessionCollectionSubscription = {
|
|
|
18456
18704
|
} | undefined | null;
|
|
18457
18705
|
} | undefined | null;
|
|
18458
18706
|
}>;
|
|
18459
|
-
pageInfo: {
|
|
18460
|
-
__typename: "PageInfo";
|
|
18461
|
-
hasPreviousPage: boolean;
|
|
18462
|
-
hasNextPage: boolean;
|
|
18463
|
-
startCursor?: string | undefined | null;
|
|
18464
|
-
endCursor?: string | undefined | null;
|
|
18465
|
-
};
|
|
18466
|
-
count: {
|
|
18467
|
-
__typename: "Count";
|
|
18468
|
-
value: number;
|
|
18469
|
-
snapshot: number;
|
|
18470
|
-
};
|
|
18471
18707
|
};
|
|
18472
18708
|
}>;
|
|
18473
18709
|
};
|
|
@@ -19167,6 +19403,10 @@ export type ReleaseFullFragment = {
|
|
|
19167
19403
|
platform: string;
|
|
19168
19404
|
}>;
|
|
19169
19405
|
};
|
|
19406
|
+
export type CloudStatusFullFragment = {
|
|
19407
|
+
__typename: "CloudStatus";
|
|
19408
|
+
sync: boolean;
|
|
19409
|
+
};
|
|
19170
19410
|
export type LogLineFullFragment = {
|
|
19171
19411
|
__typename: "LogLine";
|
|
19172
19412
|
level: LogLevel;
|
|
@@ -19210,6 +19450,17 @@ export type GetLogsQuery = {
|
|
|
19210
19450
|
logs: string;
|
|
19211
19451
|
};
|
|
19212
19452
|
};
|
|
19453
|
+
export type GetCloudStatusQueryVariables = Exact<{
|
|
19454
|
+
[key: string]: never;
|
|
19455
|
+
}>;
|
|
19456
|
+
export type GetCloudStatusQuery = {
|
|
19457
|
+
runtime: {
|
|
19458
|
+
cloudStatus: {
|
|
19459
|
+
__typename: "CloudStatus";
|
|
19460
|
+
sync: boolean;
|
|
19461
|
+
};
|
|
19462
|
+
};
|
|
19463
|
+
};
|
|
19213
19464
|
export type GetCertificateQueryVariables = Exact<{
|
|
19214
19465
|
password?: InputMaybe<Scalars["Sensitive"]["input"]>;
|
|
19215
19466
|
}>;
|
|
@@ -20153,17 +20404,41 @@ export type GetTasksQuery = {
|
|
|
20153
20404
|
createdAt: Date;
|
|
20154
20405
|
replayEntry: {
|
|
20155
20406
|
__typename: "ReplayEntry";
|
|
20407
|
+
raw: string;
|
|
20156
20408
|
id: string;
|
|
20157
20409
|
error?: string | undefined | null;
|
|
20158
|
-
|
|
20159
|
-
|
|
20160
|
-
|
|
20161
|
-
|
|
20162
|
-
|
|
20163
|
-
|
|
20164
|
-
|
|
20165
|
-
|
|
20166
|
-
|
|
20410
|
+
settings: {
|
|
20411
|
+
placeholders: Array<{
|
|
20412
|
+
__typename: "ReplayPlaceholder";
|
|
20413
|
+
inputRange: {
|
|
20414
|
+
start: number;
|
|
20415
|
+
end: number;
|
|
20416
|
+
};
|
|
20417
|
+
outputRange: {
|
|
20418
|
+
start: number;
|
|
20419
|
+
end: number;
|
|
20420
|
+
};
|
|
20421
|
+
preprocessors: Array<{
|
|
20422
|
+
__typename: "ReplayPreprocessor";
|
|
20423
|
+
options: {
|
|
20424
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
20425
|
+
variableName: string;
|
|
20426
|
+
} | {
|
|
20427
|
+
__typename: "ReplayPrefixPreprocessor";
|
|
20428
|
+
value: string;
|
|
20429
|
+
} | {
|
|
20430
|
+
__typename: "ReplaySuffixPreprocessor";
|
|
20431
|
+
value: string;
|
|
20432
|
+
} | {
|
|
20433
|
+
__typename: "ReplayUrlEncodePreprocessor";
|
|
20434
|
+
charset?: string | undefined | null;
|
|
20435
|
+
nonAscii: boolean;
|
|
20436
|
+
} | {
|
|
20437
|
+
__typename: "ReplayWorkflowPreprocessor";
|
|
20438
|
+
id: string;
|
|
20439
|
+
};
|
|
20440
|
+
}>;
|
|
20441
|
+
}>;
|
|
20167
20442
|
};
|
|
20168
20443
|
request?: {
|
|
20169
20444
|
__typename: "Request";
|
|
@@ -20181,6 +20456,7 @@ export type GetTasksQuery = {
|
|
|
20181
20456
|
fileExtension?: string | undefined | null;
|
|
20182
20457
|
source: Source;
|
|
20183
20458
|
createdAt: Date;
|
|
20459
|
+
raw: string;
|
|
20184
20460
|
metadata: {
|
|
20185
20461
|
__typename: "RequestMetadata";
|
|
20186
20462
|
id: string;
|
|
@@ -20199,7 +20475,52 @@ export type GetTasksQuery = {
|
|
|
20199
20475
|
stream?: {
|
|
20200
20476
|
id: string;
|
|
20201
20477
|
} | undefined | null;
|
|
20478
|
+
edits: Array<{
|
|
20479
|
+
__typename: "Request";
|
|
20480
|
+
id: string;
|
|
20481
|
+
host: string;
|
|
20482
|
+
port: number;
|
|
20483
|
+
path: string;
|
|
20484
|
+
query: string;
|
|
20485
|
+
method: string;
|
|
20486
|
+
edited: boolean;
|
|
20487
|
+
isTls: boolean;
|
|
20488
|
+
sni?: string | undefined | null;
|
|
20489
|
+
length: number;
|
|
20490
|
+
alteration: Alteration;
|
|
20491
|
+
fileExtension?: string | undefined | null;
|
|
20492
|
+
source: Source;
|
|
20493
|
+
createdAt: Date;
|
|
20494
|
+
metadata: {
|
|
20495
|
+
__typename: "RequestMetadata";
|
|
20496
|
+
id: string;
|
|
20497
|
+
color?: string | undefined | null;
|
|
20498
|
+
};
|
|
20499
|
+
response?: {
|
|
20500
|
+
__typename: "Response";
|
|
20501
|
+
id: string;
|
|
20502
|
+
statusCode: number;
|
|
20503
|
+
roundtripTime: number;
|
|
20504
|
+
length: number;
|
|
20505
|
+
createdAt: Date;
|
|
20506
|
+
alteration: Alteration;
|
|
20507
|
+
edited: boolean;
|
|
20508
|
+
} | undefined | null;
|
|
20509
|
+
stream?: {
|
|
20510
|
+
id: string;
|
|
20511
|
+
} | undefined | null;
|
|
20512
|
+
}>;
|
|
20202
20513
|
} | undefined | null;
|
|
20514
|
+
connection: {
|
|
20515
|
+
__typename: "ConnectionInfo";
|
|
20516
|
+
host: string;
|
|
20517
|
+
port: number;
|
|
20518
|
+
isTLS: boolean;
|
|
20519
|
+
SNI?: string | undefined | null;
|
|
20520
|
+
};
|
|
20521
|
+
session: {
|
|
20522
|
+
id: string;
|
|
20523
|
+
};
|
|
20203
20524
|
};
|
|
20204
20525
|
} | {
|
|
20205
20526
|
__typename: "WorkflowTask";
|
|
@@ -20243,17 +20564,41 @@ export type StartedTaskSubscription = {
|
|
|
20243
20564
|
createdAt: Date;
|
|
20244
20565
|
replayEntry: {
|
|
20245
20566
|
__typename: "ReplayEntry";
|
|
20567
|
+
raw: string;
|
|
20246
20568
|
id: string;
|
|
20247
20569
|
error?: string | undefined | null;
|
|
20248
|
-
|
|
20249
|
-
|
|
20250
|
-
|
|
20251
|
-
|
|
20252
|
-
|
|
20253
|
-
|
|
20254
|
-
|
|
20255
|
-
|
|
20256
|
-
|
|
20570
|
+
settings: {
|
|
20571
|
+
placeholders: Array<{
|
|
20572
|
+
__typename: "ReplayPlaceholder";
|
|
20573
|
+
inputRange: {
|
|
20574
|
+
start: number;
|
|
20575
|
+
end: number;
|
|
20576
|
+
};
|
|
20577
|
+
outputRange: {
|
|
20578
|
+
start: number;
|
|
20579
|
+
end: number;
|
|
20580
|
+
};
|
|
20581
|
+
preprocessors: Array<{
|
|
20582
|
+
__typename: "ReplayPreprocessor";
|
|
20583
|
+
options: {
|
|
20584
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
20585
|
+
variableName: string;
|
|
20586
|
+
} | {
|
|
20587
|
+
__typename: "ReplayPrefixPreprocessor";
|
|
20588
|
+
value: string;
|
|
20589
|
+
} | {
|
|
20590
|
+
__typename: "ReplaySuffixPreprocessor";
|
|
20591
|
+
value: string;
|
|
20592
|
+
} | {
|
|
20593
|
+
__typename: "ReplayUrlEncodePreprocessor";
|
|
20594
|
+
charset?: string | undefined | null;
|
|
20595
|
+
nonAscii: boolean;
|
|
20596
|
+
} | {
|
|
20597
|
+
__typename: "ReplayWorkflowPreprocessor";
|
|
20598
|
+
id: string;
|
|
20599
|
+
};
|
|
20600
|
+
}>;
|
|
20601
|
+
}>;
|
|
20257
20602
|
};
|
|
20258
20603
|
request?: {
|
|
20259
20604
|
__typename: "Request";
|
|
@@ -20271,6 +20616,7 @@ export type StartedTaskSubscription = {
|
|
|
20271
20616
|
fileExtension?: string | undefined | null;
|
|
20272
20617
|
source: Source;
|
|
20273
20618
|
createdAt: Date;
|
|
20619
|
+
raw: string;
|
|
20274
20620
|
metadata: {
|
|
20275
20621
|
__typename: "RequestMetadata";
|
|
20276
20622
|
id: string;
|
|
@@ -20289,7 +20635,52 @@ export type StartedTaskSubscription = {
|
|
|
20289
20635
|
stream?: {
|
|
20290
20636
|
id: string;
|
|
20291
20637
|
} | undefined | null;
|
|
20638
|
+
edits: Array<{
|
|
20639
|
+
__typename: "Request";
|
|
20640
|
+
id: string;
|
|
20641
|
+
host: string;
|
|
20642
|
+
port: number;
|
|
20643
|
+
path: string;
|
|
20644
|
+
query: string;
|
|
20645
|
+
method: string;
|
|
20646
|
+
edited: boolean;
|
|
20647
|
+
isTls: boolean;
|
|
20648
|
+
sni?: string | undefined | null;
|
|
20649
|
+
length: number;
|
|
20650
|
+
alteration: Alteration;
|
|
20651
|
+
fileExtension?: string | undefined | null;
|
|
20652
|
+
source: Source;
|
|
20653
|
+
createdAt: Date;
|
|
20654
|
+
metadata: {
|
|
20655
|
+
__typename: "RequestMetadata";
|
|
20656
|
+
id: string;
|
|
20657
|
+
color?: string | undefined | null;
|
|
20658
|
+
};
|
|
20659
|
+
response?: {
|
|
20660
|
+
__typename: "Response";
|
|
20661
|
+
id: string;
|
|
20662
|
+
statusCode: number;
|
|
20663
|
+
roundtripTime: number;
|
|
20664
|
+
length: number;
|
|
20665
|
+
createdAt: Date;
|
|
20666
|
+
alteration: Alteration;
|
|
20667
|
+
edited: boolean;
|
|
20668
|
+
} | undefined | null;
|
|
20669
|
+
stream?: {
|
|
20670
|
+
id: string;
|
|
20671
|
+
} | undefined | null;
|
|
20672
|
+
}>;
|
|
20292
20673
|
} | undefined | null;
|
|
20674
|
+
connection: {
|
|
20675
|
+
__typename: "ConnectionInfo";
|
|
20676
|
+
host: string;
|
|
20677
|
+
port: number;
|
|
20678
|
+
isTLS: boolean;
|
|
20679
|
+
SNI?: string | undefined | null;
|
|
20680
|
+
};
|
|
20681
|
+
session: {
|
|
20682
|
+
id: string;
|
|
20683
|
+
};
|
|
20293
20684
|
};
|
|
20294
20685
|
} | {
|
|
20295
20686
|
__typename: "WorkflowTask";
|
|
@@ -20318,17 +20709,41 @@ export type FinishedTaskSubscription = {
|
|
|
20318
20709
|
createdAt: Date;
|
|
20319
20710
|
replayEntry: {
|
|
20320
20711
|
__typename: "ReplayEntry";
|
|
20712
|
+
raw: string;
|
|
20321
20713
|
id: string;
|
|
20322
20714
|
error?: string | undefined | null;
|
|
20323
|
-
|
|
20324
|
-
|
|
20325
|
-
|
|
20326
|
-
|
|
20327
|
-
|
|
20328
|
-
|
|
20329
|
-
|
|
20330
|
-
|
|
20331
|
-
|
|
20715
|
+
settings: {
|
|
20716
|
+
placeholders: Array<{
|
|
20717
|
+
__typename: "ReplayPlaceholder";
|
|
20718
|
+
inputRange: {
|
|
20719
|
+
start: number;
|
|
20720
|
+
end: number;
|
|
20721
|
+
};
|
|
20722
|
+
outputRange: {
|
|
20723
|
+
start: number;
|
|
20724
|
+
end: number;
|
|
20725
|
+
};
|
|
20726
|
+
preprocessors: Array<{
|
|
20727
|
+
__typename: "ReplayPreprocessor";
|
|
20728
|
+
options: {
|
|
20729
|
+
__typename: "ReplayEnvironmentPreprocessor";
|
|
20730
|
+
variableName: string;
|
|
20731
|
+
} | {
|
|
20732
|
+
__typename: "ReplayPrefixPreprocessor";
|
|
20733
|
+
value: string;
|
|
20734
|
+
} | {
|
|
20735
|
+
__typename: "ReplaySuffixPreprocessor";
|
|
20736
|
+
value: string;
|
|
20737
|
+
} | {
|
|
20738
|
+
__typename: "ReplayUrlEncodePreprocessor";
|
|
20739
|
+
charset?: string | undefined | null;
|
|
20740
|
+
nonAscii: boolean;
|
|
20741
|
+
} | {
|
|
20742
|
+
__typename: "ReplayWorkflowPreprocessor";
|
|
20743
|
+
id: string;
|
|
20744
|
+
};
|
|
20745
|
+
}>;
|
|
20746
|
+
}>;
|
|
20332
20747
|
};
|
|
20333
20748
|
request?: {
|
|
20334
20749
|
__typename: "Request";
|
|
@@ -20346,6 +20761,7 @@ export type FinishedTaskSubscription = {
|
|
|
20346
20761
|
fileExtension?: string | undefined | null;
|
|
20347
20762
|
source: Source;
|
|
20348
20763
|
createdAt: Date;
|
|
20764
|
+
raw: string;
|
|
20349
20765
|
metadata: {
|
|
20350
20766
|
__typename: "RequestMetadata";
|
|
20351
20767
|
id: string;
|
|
@@ -20364,7 +20780,52 @@ export type FinishedTaskSubscription = {
|
|
|
20364
20780
|
stream?: {
|
|
20365
20781
|
id: string;
|
|
20366
20782
|
} | undefined | null;
|
|
20783
|
+
edits: Array<{
|
|
20784
|
+
__typename: "Request";
|
|
20785
|
+
id: string;
|
|
20786
|
+
host: string;
|
|
20787
|
+
port: number;
|
|
20788
|
+
path: string;
|
|
20789
|
+
query: string;
|
|
20790
|
+
method: string;
|
|
20791
|
+
edited: boolean;
|
|
20792
|
+
isTls: boolean;
|
|
20793
|
+
sni?: string | undefined | null;
|
|
20794
|
+
length: number;
|
|
20795
|
+
alteration: Alteration;
|
|
20796
|
+
fileExtension?: string | undefined | null;
|
|
20797
|
+
source: Source;
|
|
20798
|
+
createdAt: Date;
|
|
20799
|
+
metadata: {
|
|
20800
|
+
__typename: "RequestMetadata";
|
|
20801
|
+
id: string;
|
|
20802
|
+
color?: string | undefined | null;
|
|
20803
|
+
};
|
|
20804
|
+
response?: {
|
|
20805
|
+
__typename: "Response";
|
|
20806
|
+
id: string;
|
|
20807
|
+
statusCode: number;
|
|
20808
|
+
roundtripTime: number;
|
|
20809
|
+
length: number;
|
|
20810
|
+
createdAt: Date;
|
|
20811
|
+
alteration: Alteration;
|
|
20812
|
+
edited: boolean;
|
|
20813
|
+
} | undefined | null;
|
|
20814
|
+
stream?: {
|
|
20815
|
+
id: string;
|
|
20816
|
+
} | undefined | null;
|
|
20817
|
+
}>;
|
|
20367
20818
|
} | undefined | null;
|
|
20819
|
+
connection: {
|
|
20820
|
+
__typename: "ConnectionInfo";
|
|
20821
|
+
host: string;
|
|
20822
|
+
port: number;
|
|
20823
|
+
isTLS: boolean;
|
|
20824
|
+
SNI?: string | undefined | null;
|
|
20825
|
+
};
|
|
20826
|
+
session: {
|
|
20827
|
+
id: string;
|
|
20828
|
+
};
|
|
20368
20829
|
};
|
|
20369
20830
|
} | {
|
|
20370
20831
|
__typename: "WorkflowTask";
|
|
@@ -20942,6 +21403,42 @@ export type UserSettingsQuery = {
|
|
|
20942
21403
|
} | undefined | null;
|
|
20943
21404
|
};
|
|
20944
21405
|
};
|
|
21406
|
+
export type UpdatedViewerProfileSubscriptionVariables = Exact<{
|
|
21407
|
+
[key: string]: never;
|
|
21408
|
+
}>;
|
|
21409
|
+
export type UpdatedViewerProfileSubscription = {
|
|
21410
|
+
updatedViewerProfile: {
|
|
21411
|
+
profile: {
|
|
21412
|
+
__typename: "UserProfile";
|
|
21413
|
+
identity: {
|
|
21414
|
+
__typename: "UserIdentity";
|
|
21415
|
+
name: string;
|
|
21416
|
+
email: string;
|
|
21417
|
+
};
|
|
21418
|
+
subscription: {
|
|
21419
|
+
__typename: "UserSubscription";
|
|
21420
|
+
entitlements: Array<{
|
|
21421
|
+
__typename: "UserEntitlement";
|
|
21422
|
+
name: string;
|
|
21423
|
+
}>;
|
|
21424
|
+
plan: {
|
|
21425
|
+
__typename: "UserSubscriptionPlan";
|
|
21426
|
+
name: string;
|
|
21427
|
+
};
|
|
21428
|
+
};
|
|
21429
|
+
};
|
|
21430
|
+
};
|
|
21431
|
+
};
|
|
21432
|
+
export type UpdatedViewerSettingsSubscriptionVariables = Exact<{
|
|
21433
|
+
[key: string]: never;
|
|
21434
|
+
}>;
|
|
21435
|
+
export type UpdatedViewerSettingsSubscription = {
|
|
21436
|
+
updatedViewerSettings: {
|
|
21437
|
+
settings: {
|
|
21438
|
+
data: unknown;
|
|
21439
|
+
};
|
|
21440
|
+
};
|
|
21441
|
+
};
|
|
20945
21442
|
export type WorkflowQueryVariables = Exact<{
|
|
20946
21443
|
id: Scalars["ID"]["input"];
|
|
20947
21444
|
}>;
|
|
@@ -21543,6 +22040,8 @@ export declare const TamperOperationStatusCodeFullFragmentDoc = "\n fragment
|
|
|
21543
22040
|
export declare const TamperSectionFullFragmentDoc = "\n fragment tamperSectionFull on TamperSection {\n __typename\n ... on TamperSectionRequestPath {\n operation {\n ...tamperOperationPathFull\n }\n }\n ... on TamperSectionRequestMethod {\n operation {\n ...tamperOperationMethodFull\n }\n }\n ... on TamperSectionRequestQuery {\n operation {\n ...tamperOperationQueryFull\n }\n }\n ... on TamperSectionRequestFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionRequestHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionRequestBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n ... on TamperSectionResponseFirstLine {\n operation {\n ...tamperOperationFirstLineFull\n }\n }\n ... on TamperSectionResponseStatusCode {\n operation {\n ...tamperOperationStatusCodeFull\n }\n }\n ... on TamperSectionResponseHeader {\n operation {\n ...tamperOperationHeaderFull\n }\n }\n ... on TamperSectionResponseBody {\n operation {\n ...tamperOperationBodyFull\n }\n }\n}\n ";
|
|
21544
22041
|
export declare const TamperRuleFullFragmentDoc = "\n fragment tamperRuleFull on TamperRule {\n __typename\n id\n name\n section {\n ...tamperSectionFull\n }\n enable {\n rank\n }\n condition\n collection {\n id\n }\n}\n ";
|
|
21545
22042
|
export declare const TamperRuleCollectionFullFragmentDoc = "\n fragment tamperRuleCollectionFull on TamperRuleCollection {\n __typename\n id\n name\n rules {\n ...tamperRuleFull\n }\n}\n ";
|
|
22043
|
+
export declare const PageInfoFullFragmentDoc = "\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
22044
|
+
export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
21546
22045
|
export declare const PluginAuthorFullFragmentDoc = "\n fragment pluginAuthorFull on PluginAuthor {\n name\n email\n url\n}\n ";
|
|
21547
22046
|
export declare const PluginLinksFullFragmentDoc = "\n fragment pluginLinksFull on PluginLinks {\n sponsor\n}\n ";
|
|
21548
22047
|
export declare const PluginPackageMetaFragmentDoc = "\n fragment pluginPackageMeta on PluginPackage {\n id\n name\n description\n author {\n ...pluginAuthorFull\n }\n links {\n ...pluginLinksFull\n }\n version\n installedAt\n manifestId\n}\n ";
|
|
@@ -21558,6 +22057,9 @@ export declare const ProjectConfigStreamFullFragmentDoc = "\n fragment projec
|
|
|
21558
22057
|
export declare const ProjectConfigFullFragmentDoc = "\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n ";
|
|
21559
22058
|
export declare const CurrentProjectFullFragmentDoc = "\n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n ";
|
|
21560
22059
|
export declare const ReplayEntryMetaFragmentDoc = "\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n ";
|
|
22060
|
+
export declare const ReplaySessionMetaFragmentDoc = "\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n ";
|
|
22061
|
+
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
22062
|
+
export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
|
|
21561
22063
|
export declare const ReplayPrefixPreprocessorFullFragmentDoc = "\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n ";
|
|
21562
22064
|
export declare const ReplaySuffixPreprocessorFullFragmentDoc = "\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n ";
|
|
21563
22065
|
export declare const ReplayUrlEncodePreprocessorFullFragmentDoc = "\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n ";
|
|
@@ -21565,17 +22067,13 @@ export declare const ReplayWorkflowPreprocessorFullFragmentDoc = "\n fragment
|
|
|
21565
22067
|
export declare const ReplayEnvironmentPreprocessorFullFragmentDoc = "\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n ";
|
|
21566
22068
|
export declare const ReplayPreprocessorFullFragmentDoc = "\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n ";
|
|
21567
22069
|
export declare const ReplayPlaceholderFullFragmentDoc = "\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n ";
|
|
21568
|
-
export declare const ReplayEntryFullFragmentDoc = "\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n ";
|
|
21569
|
-
export declare const
|
|
21570
|
-
export declare const CountFullFragmentDoc = "\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
21571
|
-
export declare const ReplaySessionMetaFragmentDoc = "\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n}\n ";
|
|
21572
|
-
export declare const ReplaySessionCollectionMetaFragmentDoc = "\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
21573
|
-
export declare const TaskMetaFragmentDoc = "\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n ";
|
|
21574
|
-
export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n ";
|
|
22070
|
+
export declare const ReplayEntryFullFragmentDoc = "\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n ";
|
|
22071
|
+
export declare const ReplayTaskMetaFragmentDoc = "\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n ";
|
|
21575
22072
|
export declare const RequestEdgeMetaFragmentDoc = "\n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n ";
|
|
21576
22073
|
export declare const ResponseFullFragmentDoc = "\n fragment responseFull on Response {\n ...responseMeta\n raw\n edits {\n ...responseMeta\n }\n}\n ";
|
|
21577
22074
|
export declare const RuntimeFullFragmentDoc = "\n fragment runtimeFull on Runtime {\n __typename\n version\n platform\n}\n ";
|
|
21578
22075
|
export declare const ReleaseFullFragmentDoc = "\n fragment releaseFull on Release {\n __typename\n links {\n __typename\n display\n link\n platform\n }\n releasedAt\n version\n}\n ";
|
|
22076
|
+
export declare const CloudStatusFullFragmentDoc = "\n fragment cloudStatusFull on CloudStatus {\n __typename\n sync\n}\n ";
|
|
21579
22077
|
export declare const LogLineFullFragmentDoc = "\n fragment logLineFull on LogLine {\n __typename\n level\n message\n target\n timestamp\n}\n ";
|
|
21580
22078
|
export declare const ScopeFullFragmentDoc = "\n fragment scopeFull on Scope {\n __typename\n id\n name\n allowlist\n denylist\n indexed\n}\n ";
|
|
21581
22079
|
export declare const SitemapEntryMetaFragmentDoc = "\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 ";
|
|
@@ -21718,8 +22216,10 @@ export declare const GetFindingsCountDocument = "\n query getFindingsCount($f
|
|
|
21718
22216
|
export declare const FindingReportersDocument = "\n query findingReporters {\n findingReporters\n}\n ";
|
|
21719
22217
|
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 ";
|
|
21720
22218
|
export declare const DeletedFindingsDocument = "\n subscription deletedFindings {\n deletedFindings {\n deletedFindingIds\n snapshot\n }\n}\n ";
|
|
22219
|
+
export declare const UpdatedFindingsDocument = "\n subscription updatedFindings($order: FindingOrderInput) {\n updatedFindings {\n findings {\n findingEdge(order: $order) {\n ...findingEdgeMeta\n }\n snapshot\n }\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 ";
|
|
21721
22220
|
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 ";
|
|
21722
|
-
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($
|
|
22221
|
+
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput!) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
|
|
22222
|
+
export declare const UpdateFindingDocument = "\n mutation updateFinding($id: ID!, $input: UpdateFindingInput!) {\n updateFinding(id: $id, 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 ";
|
|
21723
22223
|
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 ";
|
|
21724
22224
|
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 ";
|
|
21725
22225
|
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 ";
|
|
@@ -21749,6 +22249,7 @@ export declare const InterceptStatusDocument = "\n query interceptStatus {\n
|
|
|
21749
22249
|
export declare const UpdatedInterceptStatusDocument = "\n subscription updatedInterceptStatus {\n updatedInterceptStatus {\n status\n }\n}\n ";
|
|
21750
22250
|
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 ";
|
|
21751
22251
|
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 ";
|
|
22252
|
+
export declare const DeletedInterceptMessageDocument = "\n subscription deletedInterceptMessage {\n deletedInterceptMessage {\n deletedMessageId\n }\n}\n ";
|
|
21752
22253
|
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 ";
|
|
21753
22254
|
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 ";
|
|
21754
22255
|
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 ";
|
|
@@ -21782,25 +22283,25 @@ export declare const PersistProjectDocument = "\n mutation persistProject($id
|
|
|
21782
22283
|
export declare const CurrentProjectDocument = "\n query currentProject {\n currentProject {\n ...currentProjectFull\n }\n}\n \n fragment currentProjectFull on CurrentProject {\n project {\n ...projectFull\n }\n config {\n ...projectConfigFull\n }\n}\n \n\n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n \n\n fragment projectConfigFull on ProjectConfig {\n stream {\n ...projectConfigStreamFull\n }\n}\n \n\n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
21783
22284
|
export declare const ProjectsDocument = "\n query projects {\n projects {\n ...projectFull\n }\n}\n \n fragment projectFull on Project {\n __typename\n id\n name\n path\n version\n status\n temporary\n size\n createdAt\n updatedAt\n backups {\n id\n }\n}\n ";
|
|
21784
22285
|
export declare const SetProjectConfigStreamDocument = "\n mutation setProjectConfigStream($input: ProjectConfigStreamInput!) {\n setProjectConfigStream(input: $input) {\n config {\n ...projectConfigStreamFull\n }\n }\n}\n \n fragment projectConfigStreamFull on ProjectConfigStream {\n stripExtension\n}\n ";
|
|
21785
|
-
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n ";
|
|
21786
|
-
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21787
|
-
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
22286
|
+
export declare const ReplayEntryDocument = "\n query replayEntry($id: ID!) {\n replayEntry(id: $id) {\n ...replayEntryFull\n }\n}\n \n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
22287
|
+
export declare const ActiveReplayEntryBySessionDocument = "\n query activeReplayEntryBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n activeEntry {\n ...replayEntryMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22288
|
+
export declare const ReplayEntriesBySessionDocument = "\n query replayEntriesBySession($sessionId: ID!) {\n replaySession(id: $sessionId) {\n ...replaySessionMeta\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
21788
22289
|
export declare const ReplaySessionEntriesDocument = "\n query replaySessionEntries($id: ID!) {\n replaySession(id: $id) {\n activeEntry {\n ...replayEntryMeta\n }\n entries {\n edges {\n cursor\n node {\n ...replayEntryMeta\n }\n }\n pageInfo {\n ...pageInfoFull\n }\n count {\n ...countFull\n }\n }\n }\n}\n \n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n \n\n fragment countFull on Count {\n __typename\n value\n snapshot\n}\n ";
|
|
21789
|
-
export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21790
|
-
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21791
|
-
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
22290
|
+
export declare const ReplaySessionCollectionsDocument = "\n query replaySessionCollections {\n replaySessionCollections {\n edges {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22291
|
+
export declare const RenameReplaySessionCollectionDocument = "\n mutation renameReplaySessionCollection($id: ID!, $name: String!) {\n renameReplaySessionCollection(id: $id, name: $name) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22292
|
+
export declare const CreateReplaySessionCollectionDocument = "\n mutation createReplaySessionCollection($input: CreateReplaySessionCollectionInput!) {\n createReplaySessionCollection(input: $input) {\n collection {\n ...replaySessionCollectionMeta\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
21792
22293
|
export declare const DeleteReplaySessionCollectionDocument = "\n mutation deleteReplaySessionCollection($id: ID!) {\n deleteReplaySessionCollection(id: $id) {\n deletedId\n }\n}\n ";
|
|
21793
|
-
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21794
|
-
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
22294
|
+
export declare const RenameReplaySessionDocument = "\n mutation renameReplaySession($id: ID!, $name: String!) {\n renameReplaySession(id: $id, name: $name) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22295
|
+
export declare const SetActiveReplaySessionEntryDocument = "\n mutation setActiveReplaySessionEntry($id: ID!, $entryId: ID!) {\n setActiveReplaySessionEntry(id: $id, entryId: $entryId) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
21795
22296
|
export declare const DeleteReplaySessionsDocument = "\n mutation deleteReplaySessions($ids: [ID!]!) {\n deleteReplaySessions(ids: $ids) {\n deletedIds\n }\n}\n ";
|
|
21796
|
-
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21797
|
-
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21798
|
-
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...
|
|
21799
|
-
export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21800
|
-
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
22297
|
+
export declare const CreateReplaySessionDocument = "\n mutation createReplaySession($input: CreateReplaySessionInput!) {\n createReplaySession(input: $input) {\n session {\n ...replaySessionMeta\n collection {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n ";
|
|
22298
|
+
export declare const MoveReplaySessionDocument = "\n mutation moveReplaySession($id: ID!, $collectionId: ID!) {\n moveReplaySession(collectionId: $collectionId, id: $id) {\n session {\n ...replaySessionMeta\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22299
|
+
export declare const StartReplayTaskDocument = "\n mutation startReplayTask($sessionId: ID!, $input: StartReplayTaskInput!) {\n startReplayTask(sessionId: $sessionId, input: $input) {\n task {\n ...replayTaskMeta\n }\n error {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n ... on CloudUserError {\n ...cloudUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n \n\n fragment taskInProgressUserErrorFull on TaskInProgressUserError {\n ...userErrorFull\n taskId\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n \n\n fragment cloudUserErrorFull on CloudUserError {\n ...userErrorFull\n cloudReason: reason\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22300
|
+
export declare const CreatedReplaySessionDocument = "\n subscription createdReplaySession {\n createdReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22301
|
+
export declare const UpdatedReplaySessionDocument = "\n subscription updatedReplaySession {\n updatedReplaySession {\n sessionEdge {\n node {\n ...replaySessionMeta\n }\n }\n snapshot\n }\n}\n \n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
21801
22302
|
export declare const DeletedReplaySessionDocument = "\n subscription deletedReplaySession {\n deletedReplaySession {\n deletedSessionId\n }\n}\n ";
|
|
21802
|
-
export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
21803
|
-
export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n
|
|
22303
|
+
export declare const CreatedReplaySessionCollectionDocument = "\n subscription createdReplaySessionCollection {\n createdReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22304
|
+
export declare const UpdatedReplaySessionCollectionDocument = "\n subscription updatedReplaySessionCollection {\n updatedReplaySessionCollection {\n collectionEdge {\n node {\n ...replaySessionCollectionMeta\n }\n }\n }\n}\n \n fragment replaySessionCollectionMeta on ReplaySessionCollection {\n __typename\n id\n name\n sessions {\n ...replaySessionMeta\n }\n}\n \n\n fragment replaySessionMeta on ReplaySession {\n __typename\n id\n name\n activeEntry {\n ...replayEntryMeta\n }\n collection {\n id\n }\n entries {\n nodes {\n ...replayEntryMeta\n }\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
21804
22305
|
export declare const DeletedReplaySessionCollectionDocument = "\n subscription deletedReplaySessionCollection {\n deletedReplaySessionCollection {\n deletedCollectionId\n }\n}\n ";
|
|
21805
22306
|
export declare const RequestsDocument = "\n query requests($after: String, $before: String, $first: Int, $last: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requests(\n after: $after\n before: $before\n first: $first\n last: $last\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n pageInfo {\n ...pageInfoFull\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
21806
22307
|
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 ";
|
|
@@ -21817,6 +22318,7 @@ export declare const ResponseDocument = "\n query response($id: ID!) {\n res
|
|
|
21817
22318
|
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 ";
|
|
21818
22319
|
export declare const GetInstanceStateDocument = "\n query getInstanceState {\n runtime {\n ...runtimeFull\n }\n}\n \n fragment runtimeFull on Runtime {\n __typename\n version\n platform\n}\n ";
|
|
21819
22320
|
export declare const GetLogsDocument = "\n query getLogs {\n runtime {\n logs\n }\n}\n ";
|
|
22321
|
+
export declare const GetCloudStatusDocument = "\n query getCloudStatus {\n runtime {\n cloudStatus {\n ...cloudStatusFull\n }\n }\n}\n \n fragment cloudStatusFull on CloudStatus {\n __typename\n sync\n}\n ";
|
|
21820
22322
|
export declare const GetCertificateDocument = "\n query getCertificate($password: Sensitive) {\n runtime {\n certificate {\n p12(password: $password)\n }\n }\n}\n ";
|
|
21821
22323
|
export declare const ImportCertificateDocument = "\n mutation importCertificate($input: ImportCertificateInput!) {\n importCertificate(input: $input) {\n error {\n __typename\n ... on CertificateUserError {\n ...certificateUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: 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 ";
|
|
21822
22324
|
export declare const RegenerateCertificateDocument = "\n mutation regenerateCertificate {\n regenerateCertificate {\n success\n }\n}\n ";
|
|
@@ -21849,10 +22351,10 @@ export declare const WebsocketMessageEditDocument = "\n query websocketMessag
|
|
|
21849
22351
|
export declare const CreatedWsStreamDocument = "\n subscription createdWsStream($scopeId: ID, $order: StreamOrderInput!) {\n createdStream(protocol: WS, scopeId: $scopeId) {\n snapshot\n streamEdge(order: $order) {\n ...streamEdgeMeta\n }\n }\n}\n \n fragment streamEdgeMeta on StreamEdge {\n __typename\n cursor\n node {\n ...streamMeta\n }\n}\n \n\n fragment streamMeta on Stream {\n __typename\n id\n createdAt\n direction\n host\n isTls\n path\n port\n protocol\n source\n}\n ";
|
|
21850
22352
|
export declare const CreatedStreamWsMessageDocument = "\n subscription createdStreamWsMessage($order: StreamWsMessageOrderInput!) {\n createdStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21851
22353
|
export declare const UpdatedStreamWsMessageDocument = "\n subscription updatedStreamWsMessage($order: StreamWsMessageOrderInput!) {\n updatedStreamWsMessage {\n snapshot\n messageEdge(order: $order) {\n ...streamWsMessageEdgeMeta\n }\n }\n}\n \n fragment streamWsMessageEdgeMeta on StreamWsMessageEdge {\n __typename\n cursor\n node {\n ...streamWsMessageMeta\n }\n}\n \n\n fragment streamWsMessageMeta on StreamWsMessage {\n id\n stream {\n id\n }\n edits {\n ...streamWsMessageEditRef\n }\n head {\n ...streamWsMessageEditMeta\n }\n}\n \n\n fragment streamWsMessageEditRef on StreamWsMessageEditRef {\n id\n alteration\n}\n \n\n fragment streamWsMessageEditMeta on StreamWsMessageEdit {\n id\n length\n alteration\n direction\n format\n createdAt\n}\n ";
|
|
21852
|
-
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...
|
|
22354
|
+
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n \n\n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
21853
22355
|
export declare const CancelTaskDocument = "\n mutation cancelTask($id: ID!) {\n cancelTask(id: $id) {\n cancelledId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
21854
|
-
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
21855
|
-
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryMeta\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22356
|
+
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
22357
|
+
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment workflowTaskMeta on WorkflowTask {\n ...taskMeta\n workflow {\n ...workflowMeta\n }\n}\n \n\n fragment taskMeta on Task {\n __typename\n id\n createdAt\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n \n\n fragment replayTaskMeta on ReplayTask {\n ...taskMeta\n replayEntry {\n ...replayEntryFull\n }\n}\n \n\n fragment replayEntryFull on ReplayEntry {\n ...replayEntryMeta\n raw\n settings {\n placeholders {\n ...replayPlaceholderFull\n }\n }\n request {\n ...requestFull\n }\n}\n \n\n fragment replayEntryMeta on ReplayEntry {\n __typename\n id\n error\n connection {\n ...connectionInfoFull\n }\n session {\n id\n }\n request {\n ...requestMeta\n }\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment replayPlaceholderFull on ReplayPlaceholder {\n __typename\n inputRange {\n ...rangeFull\n }\n outputRange {\n ...rangeFull\n }\n preprocessors {\n ...replayPreprocessorFull\n }\n}\n \n\n fragment rangeFull on Range {\n start\n end\n}\n \n\n fragment replayPreprocessorFull on ReplayPreprocessor {\n __typename\n options {\n ... on ReplayPrefixPreprocessor {\n ...replayPrefixPreprocessorFull\n }\n ... on ReplaySuffixPreprocessor {\n ...replaySuffixPreprocessorFull\n }\n ... on ReplayUrlEncodePreprocessor {\n ...replayUrlEncodePreprocessorFull\n }\n ... on ReplayWorkflowPreprocessor {\n ...replayWorkflowPreprocessorFull\n }\n ... on ReplayEnvironmentPreprocessor {\n ...replayEnvironmentPreprocessorFull\n }\n }\n}\n \n\n fragment replayPrefixPreprocessorFull on ReplayPrefixPreprocessor {\n __typename\n value\n}\n \n\n fragment replaySuffixPreprocessorFull on ReplaySuffixPreprocessor {\n __typename\n value\n}\n \n\n fragment replayUrlEncodePreprocessorFull on ReplayUrlEncodePreprocessor {\n __typename\n charset\n nonAscii\n}\n \n\n fragment replayWorkflowPreprocessorFull on ReplayWorkflowPreprocessor {\n __typename\n id\n}\n \n\n fragment replayEnvironmentPreprocessorFull on ReplayEnvironmentPreprocessor {\n __typename\n variableName\n}\n \n\n fragment requestFull on Request {\n ...requestFullFields\n}\n \n\n fragment requestFullFields on Request {\n ...requestMeta\n raw\n edits {\n ...requestMeta\n }\n}\n ";
|
|
21856
22358
|
export declare const UpstreamProxiesDocument = "\n query upstreamProxies {\n upstreamProxiesHttp {\n ...upstreamProxyHttpFull\n }\n upstreamProxiesSocks {\n ...upstreamProxySocksFull\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n \n\n fragment upstreamProxySocksFull on UpstreamProxySocks {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n connection {\n ...connectionInfoFull\n }\n enabled\n includeDns\n rank\n}\n ";
|
|
21857
22359
|
export declare const CreateUpstreamProxyHttpDocument = "\n mutation createUpstreamProxyHttp($input: CreateUpstreamProxyHttpInput!) {\n createUpstreamProxyHttp(input: $input) {\n proxy {\n ...upstreamProxyHttpFull\n }\n }\n}\n \n fragment upstreamProxyHttpFull on UpstreamProxyHttp {\n __typename\n id\n allowlist\n denylist\n auth {\n ... on UpstreamProxyAuthBasic {\n ...upstreamProxyAuthBasicFull\n }\n }\n enabled\n rank\n connection {\n ...connectionInfoFull\n }\n}\n \n\n fragment upstreamProxyAuthBasicFull on UpstreamProxyAuthBasic {\n __typename\n username\n password\n}\n \n\n fragment connectionInfoFull on ConnectionInfo {\n __typename\n host\n port\n isTLS\n SNI\n}\n ";
|
|
21858
22360
|
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 ";
|
|
@@ -21873,6 +22375,8 @@ export declare const DeletedUpstreamProxySocksDocument = "\n subscription del
|
|
|
21873
22375
|
export declare const UpdateViewerSettingsDocument = "\n mutation updateViewerSettings($input: UpdateViewerSettingsInput!) {\n updateViewerSettings(input: $input) {\n settings {\n ...userSettingsFull\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
21874
22376
|
export declare const UserProfileDocument = "\n query userProfile {\n viewer {\n ... on CloudUser {\n __typename\n id\n profile {\n ...userProfileFull\n }\n }\n ... on GuestUser {\n __typename\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
21875
22377
|
export declare const UserSettingsDocument = "\n query userSettings {\n viewer {\n ... on CloudUser {\n __typename\n id\n settings {\n ...userSettingsFull\n }\n }\n ... on GuestUser {\n __typename\n id\n settings {\n ...userSettingsFull\n }\n }\n }\n}\n \n fragment userSettingsFull on UserSettings {\n __typename\n data\n migrations\n}\n ";
|
|
22378
|
+
export declare const UpdatedViewerProfileDocument = "\n subscription updatedViewerProfile {\n updatedViewerProfile {\n profile {\n ...userProfileFull\n }\n }\n}\n \n fragment userProfileFull on UserProfile {\n __typename\n identity {\n __typename\n name\n email\n }\n subscription {\n __typename\n entitlements {\n __typename\n name\n }\n plan {\n __typename\n name\n }\n }\n}\n ";
|
|
22379
|
+
export declare const UpdatedViewerSettingsDocument = "\n subscription updatedViewerSettings {\n updatedViewerSettings {\n settings {\n data\n }\n }\n}\n ";
|
|
21876
22380
|
export declare const WorkflowDocument = "\n query workflow($id: ID!) {\n workflow(id: $id) {\n ...workflowFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
21877
22381
|
export declare const WorkflowsStateDocument = "\n query workflowsState {\n workflows {\n ...workflowFull\n }\n workflowNodeDefinitions {\n ...workflowNodeDefinitionFull\n }\n}\n \n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\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 workflowNodeDefinitionFull on WorkflowNodeDefinition {\n __typename\n raw\n}\n ";
|
|
21878
22382
|
export declare const CreatedWorkflowDocument = "\n subscription createdWorkflow {\n createdWorkflow {\n workflowEdge {\n ...workflowEdgeFull\n }\n }\n}\n \n fragment workflowEdgeFull on WorkflowEdge {\n cursor\n node {\n ...workflowFull\n }\n}\n \n\n fragment workflowFull on Workflow {\n ...workflowMeta\n definition\n}\n \n\n fragment workflowMeta on Workflow {\n __typename\n id\n kind\n name\n enabled\n global\n readOnly\n}\n ";
|
|
@@ -22017,8 +22521,10 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22017
22521
|
findingReporters(variables?: FindingReportersQueryVariables, options?: C): Promise<FindingReportersQuery>;
|
|
22018
22522
|
createdFinding(variables?: CreatedFindingSubscriptionVariables, options?: C): AsyncIterable<CreatedFindingSubscription>;
|
|
22019
22523
|
deletedFindings(variables?: DeletedFindingsSubscriptionVariables, options?: C): AsyncIterable<DeletedFindingsSubscription>;
|
|
22524
|
+
updatedFindings(variables?: UpdatedFindingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedFindingsSubscription>;
|
|
22020
22525
|
createFinding(variables: CreateFindingMutationVariables, options?: C): Promise<CreateFindingMutation>;
|
|
22021
22526
|
deleteFindings(variables: DeleteFindingsMutationVariables, options?: C): Promise<DeleteFindingsMutation>;
|
|
22527
|
+
updateFinding(variables: UpdateFindingMutationVariables, options?: C): Promise<UpdateFindingMutation>;
|
|
22022
22528
|
interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
|
|
22023
22529
|
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
22024
22530
|
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
|
@@ -22048,6 +22554,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22048
22554
|
updatedInterceptStatus(variables?: UpdatedInterceptStatusSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptStatusSubscription>;
|
|
22049
22555
|
createdInterceptMessage(variables?: CreatedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<CreatedInterceptMessageSubscription>;
|
|
22050
22556
|
updatedInterceptOptions(variables?: UpdatedInterceptOptionsSubscriptionVariables, options?: C): AsyncIterable<UpdatedInterceptOptionsSubscription>;
|
|
22557
|
+
deletedInterceptMessage(variables?: DeletedInterceptMessageSubscriptionVariables, options?: C): AsyncIterable<DeletedInterceptMessageSubscription>;
|
|
22051
22558
|
tamperRuleCollections(variables?: TamperRuleCollectionsQueryVariables, options?: C): Promise<TamperRuleCollectionsQuery>;
|
|
22052
22559
|
renameTamperRuleCollection(variables: RenameTamperRuleCollectionMutationVariables, options?: C): Promise<RenameTamperRuleCollectionMutation>;
|
|
22053
22560
|
createTamperRuleCollection(variables: CreateTamperRuleCollectionMutationVariables, options?: C): Promise<CreateTamperRuleCollectionMutation>;
|
|
@@ -22116,6 +22623,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22116
22623
|
getUpdateState(variables?: GetUpdateStateQueryVariables, options?: C): Promise<GetUpdateStateQuery>;
|
|
22117
22624
|
getInstanceState(variables?: GetInstanceStateQueryVariables, options?: C): Promise<GetInstanceStateQuery>;
|
|
22118
22625
|
getLogs(variables?: GetLogsQueryVariables, options?: C): Promise<GetLogsQuery>;
|
|
22626
|
+
getCloudStatus(variables?: GetCloudStatusQueryVariables, options?: C): Promise<GetCloudStatusQuery>;
|
|
22119
22627
|
getCertificate(variables?: GetCertificateQueryVariables, options?: C): Promise<GetCertificateQuery>;
|
|
22120
22628
|
importCertificate(variables: ImportCertificateMutationVariables, options?: C): Promise<ImportCertificateMutation>;
|
|
22121
22629
|
regenerateCertificate(variables?: RegenerateCertificateMutationVariables, options?: C): Promise<RegenerateCertificateMutation>;
|
|
@@ -22172,6 +22680,8 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22172
22680
|
updateViewerSettings(variables: UpdateViewerSettingsMutationVariables, options?: C): Promise<UpdateViewerSettingsMutation>;
|
|
22173
22681
|
userProfile(variables?: UserProfileQueryVariables, options?: C): Promise<UserProfileQuery>;
|
|
22174
22682
|
userSettings(variables?: UserSettingsQueryVariables, options?: C): Promise<UserSettingsQuery>;
|
|
22683
|
+
updatedViewerProfile(variables?: UpdatedViewerProfileSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerProfileSubscription>;
|
|
22684
|
+
updatedViewerSettings(variables?: UpdatedViewerSettingsSubscriptionVariables, options?: C): AsyncIterable<UpdatedViewerSettingsSubscription>;
|
|
22175
22685
|
workflow(variables: WorkflowQueryVariables, options?: C): Promise<WorkflowQuery>;
|
|
22176
22686
|
workflowsState(variables?: WorkflowsStateQueryVariables, options?: C): Promise<WorkflowsStateQuery>;
|
|
22177
22687
|
createdWorkflow(variables?: CreatedWorkflowSubscriptionVariables, options?: C): AsyncIterable<CreatedWorkflowSubscription>;
|