@caido/sdk-frontend 0.50.1-beta.1 → 0.50.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -602,6 +602,11 @@ export type CancelBackupTaskPayload = {
|
|
|
602
602
|
cancelledId?: Maybe<Scalars["ID"]["output"]>;
|
|
603
603
|
error?: Maybe<CancelBackupTaskError>;
|
|
604
604
|
};
|
|
605
|
+
export type CancelDataExportTaskPayload = {
|
|
606
|
+
cancelledId?: Maybe<Scalars["ID"]["output"]>;
|
|
607
|
+
userError?: Maybe<CancelExportTaskError>;
|
|
608
|
+
};
|
|
609
|
+
export type CancelExportTaskError = OtherUserError | UnknownIdUserError;
|
|
605
610
|
export type CancelRestoreBackupTaskError = OtherUserError | UnknownIdUserError;
|
|
606
611
|
export type CancelRestoreBackupTaskPayload = {
|
|
607
612
|
cancelledId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -815,7 +820,7 @@ export type CreateUpstreamProxySocksInput = {
|
|
|
815
820
|
export type CreateUpstreamProxySocksPayload = {
|
|
816
821
|
proxy?: Maybe<UpstreamProxySocks>;
|
|
817
822
|
};
|
|
818
|
-
export type CreateWorkflowError = OtherUserError |
|
|
823
|
+
export type CreateWorkflowError = OtherUserError | WorkflowUserError;
|
|
819
824
|
export type CreateWorkflowInput = {
|
|
820
825
|
definition: Scalars["JsonObject"]["input"];
|
|
821
826
|
global: Scalars["Boolean"]["input"];
|
|
@@ -872,6 +877,9 @@ export type CreatedDataExportPayload = {
|
|
|
872
877
|
dataExportEdge: DataExportEdge;
|
|
873
878
|
snapshot: Scalars["Snapshot"]["output"];
|
|
874
879
|
};
|
|
880
|
+
export type CreatedDataExportTaskPayload = {
|
|
881
|
+
exportTaskEdge: DataExportTaskEdge;
|
|
882
|
+
};
|
|
875
883
|
export type CreatedEnvironmentPayload = {
|
|
876
884
|
environment: Environment;
|
|
877
885
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1009,7 +1017,15 @@ export type DnsUpstreamResolverInput = {
|
|
|
1009
1017
|
id: Scalars["ID"]["input"];
|
|
1010
1018
|
};
|
|
1011
1019
|
export type DataExport = {
|
|
1020
|
+
createdAt: Scalars["DateTime"]["output"];
|
|
1021
|
+
downloadUri?: Maybe<Scalars["Uri"]["output"]>;
|
|
1022
|
+
error?: Maybe<Scalars["String"]["output"]>;
|
|
1023
|
+
format: DataExportFormat;
|
|
1012
1024
|
id: Scalars["ID"]["output"];
|
|
1025
|
+
name: Scalars["String"]["output"];
|
|
1026
|
+
path: Scalars["String"]["output"];
|
|
1027
|
+
size: Scalars["Int"]["output"];
|
|
1028
|
+
status: DataExportStatus;
|
|
1013
1029
|
};
|
|
1014
1030
|
/** An edge in a connection. */
|
|
1015
1031
|
export type DataExportEdge = {
|
|
@@ -1023,9 +1039,8 @@ export declare const DataExportFormat: {
|
|
|
1023
1039
|
readonly Json: "JSON";
|
|
1024
1040
|
};
|
|
1025
1041
|
export type DataExportFormat = (typeof DataExportFormat)[keyof typeof DataExportFormat];
|
|
1026
|
-
export type
|
|
1027
|
-
|
|
1028
|
-
id: Scalars["ID"]["output"];
|
|
1042
|
+
export type DataExportSettings = {
|
|
1043
|
+
includeRaw: Scalars["Boolean"]["input"];
|
|
1029
1044
|
};
|
|
1030
1045
|
export declare const DataExportStatus: {
|
|
1031
1046
|
readonly Cancelled: "CANCELLED";
|
|
@@ -1034,22 +1049,17 @@ export declare const DataExportStatus: {
|
|
|
1034
1049
|
readonly Processing: "PROCESSING";
|
|
1035
1050
|
};
|
|
1036
1051
|
export type DataExportStatus = (typeof DataExportStatus)[keyof typeof DataExportStatus];
|
|
1037
|
-
export type
|
|
1038
|
-
createdAt: Scalars["DateTime"]["output"];
|
|
1039
|
-
downloadUri?: Maybe<Scalars["Uri"]["output"]>;
|
|
1040
|
-
error?: Maybe<Scalars["String"]["output"]>;
|
|
1041
|
-
format: DataExportFormat;
|
|
1042
|
-
id: Scalars["ID"]["output"];
|
|
1043
|
-
name: Scalars["String"]["output"];
|
|
1044
|
-
path: Scalars["String"]["output"];
|
|
1045
|
-
size: Scalars["Int"]["output"];
|
|
1046
|
-
status: DataExportStatus;
|
|
1047
|
-
};
|
|
1048
|
-
export type DataExportTask = Task & {
|
|
1049
|
-
createdAt: Scalars["DateTime"]["output"];
|
|
1052
|
+
export type DataExportTask = {
|
|
1050
1053
|
export: DataExport;
|
|
1051
1054
|
id: Scalars["ID"]["output"];
|
|
1052
1055
|
};
|
|
1056
|
+
/** An edge in a connection. */
|
|
1057
|
+
export type DataExportTaskEdge = {
|
|
1058
|
+
/** A cursor for use in pagination */
|
|
1059
|
+
cursor: Scalars["String"]["output"];
|
|
1060
|
+
/** The item at the end of the edge */
|
|
1061
|
+
node: DataExportTask;
|
|
1062
|
+
};
|
|
1053
1063
|
export type DeleteAssistantSessionPayload = {
|
|
1054
1064
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
1055
1065
|
};
|
|
@@ -1186,6 +1196,9 @@ export type DeletedDataExportPayload = {
|
|
|
1186
1196
|
deletedDataExportId: Scalars["ID"]["output"];
|
|
1187
1197
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1188
1198
|
};
|
|
1199
|
+
export type DeletedDataExportTaskPayload = {
|
|
1200
|
+
deletedExportTaskId: Scalars["ID"]["output"];
|
|
1201
|
+
};
|
|
1189
1202
|
export type DeletedEnvironmentPayload = {
|
|
1190
1203
|
deletedEnvironmentId: Scalars["ID"]["output"];
|
|
1191
1204
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1278,18 +1291,6 @@ export declare const EnvironmentVariableKind: {
|
|
|
1278
1291
|
readonly Secret: "SECRET";
|
|
1279
1292
|
};
|
|
1280
1293
|
export type EnvironmentVariableKind = (typeof EnvironmentVariableKind)[keyof typeof EnvironmentVariableKind];
|
|
1281
|
-
export type ExportFindingsError = OtherUserError | PermissionDeniedUserError;
|
|
1282
|
-
export type ExportFindingsInput = {
|
|
1283
|
-
filter: FilterClauseFindingInput;
|
|
1284
|
-
ids?: never;
|
|
1285
|
-
} | {
|
|
1286
|
-
filter?: never;
|
|
1287
|
-
ids: Array<Scalars["ID"]["input"]>;
|
|
1288
|
-
};
|
|
1289
|
-
export type ExportFindingsPayload = {
|
|
1290
|
-
error?: Maybe<ExportFindingsError>;
|
|
1291
|
-
export?: Maybe<DataExportOnDemand>;
|
|
1292
|
-
};
|
|
1293
1294
|
export type FilterClauseFindingInput = {
|
|
1294
1295
|
reporter?: InputMaybe<Scalars["String"]["input"]>;
|
|
1295
1296
|
};
|
|
@@ -1643,6 +1644,7 @@ export type MoveTamperRulePayload = {
|
|
|
1643
1644
|
export type MutationRoot = {
|
|
1644
1645
|
cancelAutomateTask: CancelAutomateTaskPayload;
|
|
1645
1646
|
cancelBackupTask: CancelBackupTaskPayload;
|
|
1647
|
+
cancelDataExportTask: CancelDataExportTaskPayload;
|
|
1646
1648
|
cancelRestoreBackupTask: CancelRestoreBackupTaskPayload;
|
|
1647
1649
|
cancelTask: CancelTaskPayload;
|
|
1648
1650
|
clearSitemapEntries: ClearSitemapEntriesPayload;
|
|
@@ -1690,7 +1692,6 @@ export type MutationRoot = {
|
|
|
1690
1692
|
deleteWorkflow: DeleteWorkflowPayload;
|
|
1691
1693
|
dropInterceptMessage: DropInterceptMessagePayload;
|
|
1692
1694
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
1693
|
-
exportFindings: ExportFindingsPayload;
|
|
1694
1695
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
1695
1696
|
globalizeWorkflow: GlobalizeWorkflowPayload;
|
|
1696
1697
|
hideFindings: HideFindingsPayload;
|
|
@@ -1780,6 +1781,9 @@ export type MutationRootCancelAutomateTaskArgs = {
|
|
|
1780
1781
|
export type MutationRootCancelBackupTaskArgs = {
|
|
1781
1782
|
id: Scalars["ID"]["input"];
|
|
1782
1783
|
};
|
|
1784
|
+
export type MutationRootCancelDataExportTaskArgs = {
|
|
1785
|
+
id: Scalars["ID"]["input"];
|
|
1786
|
+
};
|
|
1783
1787
|
export type MutationRootCancelRestoreBackupTaskArgs = {
|
|
1784
1788
|
id: Scalars["ID"]["input"];
|
|
1785
1789
|
};
|
|
@@ -1917,9 +1921,6 @@ export type MutationRootDropInterceptMessageArgs = {
|
|
|
1917
1921
|
export type MutationRootDuplicateAutomateSessionArgs = {
|
|
1918
1922
|
id: Scalars["ID"]["input"];
|
|
1919
1923
|
};
|
|
1920
|
-
export type MutationRootExportFindingsArgs = {
|
|
1921
|
-
input: ExportFindingsInput;
|
|
1922
|
-
};
|
|
1923
1924
|
export type MutationRootForwardInterceptMessageArgs = {
|
|
1924
1925
|
id: Scalars["ID"]["input"];
|
|
1925
1926
|
input?: InputMaybe<ForwardInterceptMessageInput>;
|
|
@@ -2380,6 +2381,7 @@ export type QueryRoot = {
|
|
|
2380
2381
|
browser?: Maybe<Browser>;
|
|
2381
2382
|
currentProject?: Maybe<CurrentProject>;
|
|
2382
2383
|
dataExport?: Maybe<DataExport>;
|
|
2384
|
+
dataExportTasks: Array<DataExportTask>;
|
|
2383
2385
|
dataExports: Array<DataExport>;
|
|
2384
2386
|
dnsRewrites: Array<DnsRewrite>;
|
|
2385
2387
|
dnsUpstreams: Array<DnsUpstream>;
|
|
@@ -3198,8 +3200,8 @@ export type StartAutomateTaskPayload = {
|
|
|
3198
3200
|
export type StartExportRequestsTaskInput = {
|
|
3199
3201
|
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
3200
3202
|
format: DataExportFormat;
|
|
3201
|
-
includeRaw: Scalars["Boolean"]["input"];
|
|
3202
3203
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
3204
|
+
settings: DataExportSettings;
|
|
3203
3205
|
};
|
|
3204
3206
|
export type StartExportRequestsTaskPayload = {
|
|
3205
3207
|
error?: Maybe<StartExportRequestsTaskPayloadError>;
|
|
@@ -3370,6 +3372,7 @@ export type SubscriptionRoot = {
|
|
|
3370
3372
|
createdAutomateTask: CreatedAutomateTaskPayload;
|
|
3371
3373
|
createdBackup: CreatedBackupPayload;
|
|
3372
3374
|
createdDataExport: CreatedDataExportPayload;
|
|
3375
|
+
createdDataExportTask: CreatedDataExportTaskPayload;
|
|
3373
3376
|
createdDnsRewrite: CreatedDnsRewritePayload;
|
|
3374
3377
|
createdDnsUpstream: CreatedDnsUpstreamPayload;
|
|
3375
3378
|
createdEnvironment: CreatedEnvironmentPayload;
|
|
@@ -3400,6 +3403,7 @@ export type SubscriptionRoot = {
|
|
|
3400
3403
|
deletedBackup: DeletedBackupPayload;
|
|
3401
3404
|
deletedBrowser: DeletedBrowserPayload;
|
|
3402
3405
|
deletedDataExport: DeletedDataExportPayload;
|
|
3406
|
+
deletedDataExportTask: DeletedDataExportTaskPayload;
|
|
3403
3407
|
deletedDnsRewrite: DeletedDnsRewritePayload;
|
|
3404
3408
|
deletedDnsUpstream: DeletedDnsUpstreamPayload;
|
|
3405
3409
|
deletedEnvironment: DeletedEnvironmentPayload;
|
|
@@ -8302,8 +8306,8 @@ export type AuthorizationUserErrorFullFragment = {
|
|
|
8302
8306
|
reason: AuthorizationErrorReason;
|
|
8303
8307
|
code: string;
|
|
8304
8308
|
};
|
|
8305
|
-
export type
|
|
8306
|
-
__typename: "
|
|
8309
|
+
export type DataExportMetaFragment = {
|
|
8310
|
+
__typename: "DataExport";
|
|
8307
8311
|
id: string;
|
|
8308
8312
|
name: string;
|
|
8309
8313
|
path: string;
|
|
@@ -8313,8 +8317,8 @@ export type DataExportStoredMetaFragment = {
|
|
|
8313
8317
|
error?: string | undefined | null;
|
|
8314
8318
|
createdAt: Date;
|
|
8315
8319
|
};
|
|
8316
|
-
export type
|
|
8317
|
-
__typename: "
|
|
8320
|
+
export type DataExportMetaFieldsFragment = {
|
|
8321
|
+
__typename: "DataExport";
|
|
8318
8322
|
id: string;
|
|
8319
8323
|
name: string;
|
|
8320
8324
|
path: string;
|
|
@@ -8324,8 +8328,9 @@ export type DataExportStoredMetaFieldsFragment = {
|
|
|
8324
8328
|
error?: string | undefined | null;
|
|
8325
8329
|
createdAt: Date;
|
|
8326
8330
|
};
|
|
8327
|
-
export type
|
|
8328
|
-
__typename: "
|
|
8331
|
+
export type DataExportFullFragment = {
|
|
8332
|
+
__typename: "DataExport";
|
|
8333
|
+
downloadUri?: string | undefined | null;
|
|
8329
8334
|
id: string;
|
|
8330
8335
|
name: string;
|
|
8331
8336
|
path: string;
|
|
@@ -8334,10 +8339,10 @@ export type DataExportStoredFullFragment = {
|
|
|
8334
8339
|
format: DataExportFormat;
|
|
8335
8340
|
error?: string | undefined | null;
|
|
8336
8341
|
createdAt: Date;
|
|
8337
|
-
fileDownloadUrl?: string | undefined | null;
|
|
8338
8342
|
};
|
|
8339
|
-
export type
|
|
8340
|
-
__typename: "
|
|
8343
|
+
export type DataExportFullFieldsFragment = {
|
|
8344
|
+
__typename: "DataExport";
|
|
8345
|
+
downloadUri?: string | undefined | null;
|
|
8341
8346
|
id: string;
|
|
8342
8347
|
name: string;
|
|
8343
8348
|
path: string;
|
|
@@ -8346,18 +8351,12 @@ export type DataExportStoredFullFieldsFragment = {
|
|
|
8346
8351
|
format: DataExportFormat;
|
|
8347
8352
|
error?: string | undefined | null;
|
|
8348
8353
|
createdAt: Date;
|
|
8349
|
-
fileDownloadUrl?: string | undefined | null;
|
|
8350
8354
|
};
|
|
8351
8355
|
export type DataExportTaskMetaFragment = {
|
|
8352
8356
|
__typename: "DataExportTask";
|
|
8353
8357
|
id: string;
|
|
8354
|
-
createdAt: Date;
|
|
8355
8358
|
export: {
|
|
8356
|
-
__typename: "
|
|
8357
|
-
downloadUri: string;
|
|
8358
|
-
id: string;
|
|
8359
|
-
} | {
|
|
8360
|
-
__typename: "DataExportStored";
|
|
8359
|
+
__typename: "DataExport";
|
|
8361
8360
|
id: string;
|
|
8362
8361
|
name: string;
|
|
8363
8362
|
path: string;
|
|
@@ -8368,20 +8367,11 @@ export type DataExportTaskMetaFragment = {
|
|
|
8368
8367
|
createdAt: Date;
|
|
8369
8368
|
};
|
|
8370
8369
|
};
|
|
8371
|
-
export type DataExportOnDemandMetaFragment = {
|
|
8372
|
-
downloadUri: string;
|
|
8373
|
-
id: string;
|
|
8374
|
-
};
|
|
8375
8370
|
export type DataExportTaskMetaFieldsFragment = {
|
|
8376
8371
|
__typename: "DataExportTask";
|
|
8377
8372
|
id: string;
|
|
8378
|
-
createdAt: Date;
|
|
8379
8373
|
export: {
|
|
8380
|
-
__typename: "
|
|
8381
|
-
downloadUri: string;
|
|
8382
|
-
id: string;
|
|
8383
|
-
} | {
|
|
8384
|
-
__typename: "DataExportStored";
|
|
8374
|
+
__typename: "DataExport";
|
|
8385
8375
|
id: string;
|
|
8386
8376
|
name: string;
|
|
8387
8377
|
path: string;
|
|
@@ -8399,9 +8389,7 @@ export type RenameDataExportMutationVariables = Exact<{
|
|
|
8399
8389
|
export type RenameDataExportMutation = {
|
|
8400
8390
|
renameDataExport: {
|
|
8401
8391
|
export?: {
|
|
8402
|
-
__typename: "
|
|
8403
|
-
} | {
|
|
8404
|
-
__typename: "DataExportStored";
|
|
8392
|
+
__typename: "DataExport";
|
|
8405
8393
|
id: string;
|
|
8406
8394
|
name: string;
|
|
8407
8395
|
path: string;
|
|
@@ -8410,7 +8398,6 @@ export type RenameDataExportMutation = {
|
|
|
8410
8398
|
format: DataExportFormat;
|
|
8411
8399
|
error?: string | undefined | null;
|
|
8412
8400
|
createdAt: Date;
|
|
8413
|
-
fileDownloadUrl?: string | undefined | null;
|
|
8414
8401
|
} | undefined | null;
|
|
8415
8402
|
};
|
|
8416
8403
|
};
|
|
@@ -8430,16 +8417,28 @@ export type DeleteDataExportMutation = {
|
|
|
8430
8417
|
} | undefined | null;
|
|
8431
8418
|
};
|
|
8432
8419
|
};
|
|
8420
|
+
export type CancelDataExportTaskMutationVariables = Exact<{
|
|
8421
|
+
id: Scalars["ID"]["input"];
|
|
8422
|
+
}>;
|
|
8423
|
+
export type CancelDataExportTaskMutation = {
|
|
8424
|
+
cancelDataExportTask: {
|
|
8425
|
+
cancelledId?: string | undefined | null;
|
|
8426
|
+
userError?: {
|
|
8427
|
+
__typename: "OtherUserError";
|
|
8428
|
+
code: string;
|
|
8429
|
+
} | {
|
|
8430
|
+
__typename: "UnknownIdUserError";
|
|
8431
|
+
id: string;
|
|
8432
|
+
code: string;
|
|
8433
|
+
} | undefined | null;
|
|
8434
|
+
};
|
|
8435
|
+
};
|
|
8433
8436
|
export type DataExportsQueryVariables = Exact<{
|
|
8434
8437
|
[key: string]: never;
|
|
8435
8438
|
}>;
|
|
8436
8439
|
export type DataExportsQuery = {
|
|
8437
8440
|
dataExports: Array<{
|
|
8438
|
-
__typename: "
|
|
8439
|
-
downloadUri: string;
|
|
8440
|
-
id: string;
|
|
8441
|
-
} | {
|
|
8442
|
-
__typename: "DataExportStored";
|
|
8441
|
+
__typename: "DataExport";
|
|
8443
8442
|
id: string;
|
|
8444
8443
|
name: string;
|
|
8445
8444
|
path: string;
|
|
@@ -8455,11 +8454,8 @@ export type DataExportQueryVariables = Exact<{
|
|
|
8455
8454
|
}>;
|
|
8456
8455
|
export type DataExportQuery = {
|
|
8457
8456
|
dataExport?: {
|
|
8458
|
-
__typename: "
|
|
8459
|
-
downloadUri
|
|
8460
|
-
id: string;
|
|
8461
|
-
} | {
|
|
8462
|
-
__typename: "DataExportStored";
|
|
8457
|
+
__typename: "DataExport";
|
|
8458
|
+
downloadUri?: string | undefined | null;
|
|
8463
8459
|
id: string;
|
|
8464
8460
|
name: string;
|
|
8465
8461
|
path: string;
|
|
@@ -8468,9 +8464,59 @@ export type DataExportQuery = {
|
|
|
8468
8464
|
format: DataExportFormat;
|
|
8469
8465
|
error?: string | undefined | null;
|
|
8470
8466
|
createdAt: Date;
|
|
8471
|
-
fileDownloadUrl?: string | undefined | null;
|
|
8472
8467
|
} | undefined | null;
|
|
8473
8468
|
};
|
|
8469
|
+
export type DataExportTasksQueryVariables = Exact<{
|
|
8470
|
+
[key: string]: never;
|
|
8471
|
+
}>;
|
|
8472
|
+
export type DataExportTasksQuery = {
|
|
8473
|
+
dataExportTasks: Array<{
|
|
8474
|
+
__typename: "DataExportTask";
|
|
8475
|
+
id: string;
|
|
8476
|
+
export: {
|
|
8477
|
+
__typename: "DataExport";
|
|
8478
|
+
id: string;
|
|
8479
|
+
name: string;
|
|
8480
|
+
path: string;
|
|
8481
|
+
size: number;
|
|
8482
|
+
status: DataExportStatus;
|
|
8483
|
+
format: DataExportFormat;
|
|
8484
|
+
error?: string | undefined | null;
|
|
8485
|
+
createdAt: Date;
|
|
8486
|
+
};
|
|
8487
|
+
}>;
|
|
8488
|
+
};
|
|
8489
|
+
export type DataExportStateQueryVariables = Exact<{
|
|
8490
|
+
[key: string]: never;
|
|
8491
|
+
}>;
|
|
8492
|
+
export type DataExportStateQuery = {
|
|
8493
|
+
dataExports: Array<{
|
|
8494
|
+
__typename: "DataExport";
|
|
8495
|
+
id: string;
|
|
8496
|
+
name: string;
|
|
8497
|
+
path: string;
|
|
8498
|
+
size: number;
|
|
8499
|
+
status: DataExportStatus;
|
|
8500
|
+
format: DataExportFormat;
|
|
8501
|
+
error?: string | undefined | null;
|
|
8502
|
+
createdAt: Date;
|
|
8503
|
+
}>;
|
|
8504
|
+
dataExportTasks: Array<{
|
|
8505
|
+
__typename: "DataExportTask";
|
|
8506
|
+
id: string;
|
|
8507
|
+
export: {
|
|
8508
|
+
__typename: "DataExport";
|
|
8509
|
+
id: string;
|
|
8510
|
+
name: string;
|
|
8511
|
+
path: string;
|
|
8512
|
+
size: number;
|
|
8513
|
+
status: DataExportStatus;
|
|
8514
|
+
format: DataExportFormat;
|
|
8515
|
+
error?: string | undefined | null;
|
|
8516
|
+
createdAt: Date;
|
|
8517
|
+
};
|
|
8518
|
+
}>;
|
|
8519
|
+
};
|
|
8474
8520
|
export type CreatedDataExportSubscriptionVariables = Exact<{
|
|
8475
8521
|
[key: string]: never;
|
|
8476
8522
|
}>;
|
|
@@ -8480,9 +8526,7 @@ export type CreatedDataExportSubscription = {
|
|
|
8480
8526
|
dataExportEdge: {
|
|
8481
8527
|
cursor: string;
|
|
8482
8528
|
node: {
|
|
8483
|
-
__typename: "
|
|
8484
|
-
} | {
|
|
8485
|
-
__typename: "DataExportStored";
|
|
8529
|
+
__typename: "DataExport";
|
|
8486
8530
|
id: string;
|
|
8487
8531
|
name: string;
|
|
8488
8532
|
path: string;
|
|
@@ -8491,7 +8535,6 @@ export type CreatedDataExportSubscription = {
|
|
|
8491
8535
|
format: DataExportFormat;
|
|
8492
8536
|
error?: string | undefined | null;
|
|
8493
8537
|
createdAt: Date;
|
|
8494
|
-
fileDownloadUrl?: string | undefined | null;
|
|
8495
8538
|
};
|
|
8496
8539
|
};
|
|
8497
8540
|
};
|
|
@@ -8505,9 +8548,7 @@ export type UpdatedDataExportSubscription = {
|
|
|
8505
8548
|
dataExportEdge: {
|
|
8506
8549
|
cursor: string;
|
|
8507
8550
|
node: {
|
|
8508
|
-
__typename: "
|
|
8509
|
-
} | {
|
|
8510
|
-
__typename: "DataExportStored";
|
|
8551
|
+
__typename: "DataExport";
|
|
8511
8552
|
id: string;
|
|
8512
8553
|
name: string;
|
|
8513
8554
|
path: string;
|
|
@@ -8516,7 +8557,6 @@ export type UpdatedDataExportSubscription = {
|
|
|
8516
8557
|
format: DataExportFormat;
|
|
8517
8558
|
error?: string | undefined | null;
|
|
8518
8559
|
createdAt: Date;
|
|
8519
|
-
fileDownloadUrl?: string | undefined | null;
|
|
8520
8560
|
};
|
|
8521
8561
|
};
|
|
8522
8562
|
};
|
|
@@ -8530,6 +8570,39 @@ export type DeletedDataExportSubscription = {
|
|
|
8530
8570
|
snapshot: number;
|
|
8531
8571
|
};
|
|
8532
8572
|
};
|
|
8573
|
+
export type CreatedDataExportTaskSubscriptionVariables = Exact<{
|
|
8574
|
+
[key: string]: never;
|
|
8575
|
+
}>;
|
|
8576
|
+
export type CreatedDataExportTaskSubscription = {
|
|
8577
|
+
createdDataExportTask: {
|
|
8578
|
+
exportTaskEdge: {
|
|
8579
|
+
cursor: string;
|
|
8580
|
+
node: {
|
|
8581
|
+
__typename: "DataExportTask";
|
|
8582
|
+
id: string;
|
|
8583
|
+
export: {
|
|
8584
|
+
__typename: "DataExport";
|
|
8585
|
+
id: string;
|
|
8586
|
+
name: string;
|
|
8587
|
+
path: string;
|
|
8588
|
+
size: number;
|
|
8589
|
+
status: DataExportStatus;
|
|
8590
|
+
format: DataExportFormat;
|
|
8591
|
+
error?: string | undefined | null;
|
|
8592
|
+
createdAt: Date;
|
|
8593
|
+
};
|
|
8594
|
+
};
|
|
8595
|
+
};
|
|
8596
|
+
};
|
|
8597
|
+
};
|
|
8598
|
+
export type DeletedDataExportTaskSubscriptionVariables = Exact<{
|
|
8599
|
+
[key: string]: never;
|
|
8600
|
+
}>;
|
|
8601
|
+
export type DeletedDataExportTaskSubscription = {
|
|
8602
|
+
deletedDataExportTask: {
|
|
8603
|
+
deletedExportTaskId: string;
|
|
8604
|
+
};
|
|
8605
|
+
};
|
|
8533
8606
|
export type FilterPresetFullFragment = {
|
|
8534
8607
|
__typename: "FilterPreset";
|
|
8535
8608
|
id: string;
|
|
@@ -9235,25 +9308,6 @@ export type UpdateFindingMutation = {
|
|
|
9235
9308
|
} | undefined | null;
|
|
9236
9309
|
};
|
|
9237
9310
|
};
|
|
9238
|
-
export type ExportFindingsMutationVariables = Exact<{
|
|
9239
|
-
input: ExportFindingsInput;
|
|
9240
|
-
}>;
|
|
9241
|
-
export type ExportFindingsMutation = {
|
|
9242
|
-
exportFindings: {
|
|
9243
|
-
export?: {
|
|
9244
|
-
downloadUri: string;
|
|
9245
|
-
id: string;
|
|
9246
|
-
} | undefined | null;
|
|
9247
|
-
error?: {
|
|
9248
|
-
__typename: "OtherUserError";
|
|
9249
|
-
code: string;
|
|
9250
|
-
} | {
|
|
9251
|
-
__typename: "PermissionDeniedUserError";
|
|
9252
|
-
code: string;
|
|
9253
|
-
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
9254
|
-
} | undefined | null;
|
|
9255
|
-
};
|
|
9256
|
-
};
|
|
9257
9311
|
export type InterceptEntryFullFragment = {
|
|
9258
9312
|
__typename: "InterceptEntry";
|
|
9259
9313
|
id: string;
|
|
@@ -19148,13 +19202,8 @@ export type StartExportRequestsTaskMutation = {
|
|
|
19148
19202
|
task?: {
|
|
19149
19203
|
__typename: "DataExportTask";
|
|
19150
19204
|
id: string;
|
|
19151
|
-
createdAt: Date;
|
|
19152
19205
|
export: {
|
|
19153
|
-
__typename: "
|
|
19154
|
-
downloadUri: string;
|
|
19155
|
-
id: string;
|
|
19156
|
-
} | {
|
|
19157
|
-
__typename: "DataExportStored";
|
|
19206
|
+
__typename: "DataExport";
|
|
19158
19207
|
id: string;
|
|
19159
19208
|
name: string;
|
|
19160
19209
|
path: string;
|
|
@@ -20356,11 +20405,6 @@ export type UpdatedStreamWsMessageSubscription = {
|
|
|
20356
20405
|
};
|
|
20357
20406
|
};
|
|
20358
20407
|
};
|
|
20359
|
-
type TaskMeta_DataExportTask_Fragment = {
|
|
20360
|
-
__typename: "DataExportTask";
|
|
20361
|
-
id: string;
|
|
20362
|
-
createdAt: Date;
|
|
20363
|
-
};
|
|
20364
20408
|
type TaskMeta_ReplayTask_Fragment = {
|
|
20365
20409
|
__typename: "ReplayTask";
|
|
20366
20410
|
id: string;
|
|
@@ -20371,31 +20415,12 @@ type TaskMeta_WorkflowTask_Fragment = {
|
|
|
20371
20415
|
id: string;
|
|
20372
20416
|
createdAt: Date;
|
|
20373
20417
|
};
|
|
20374
|
-
export type TaskMetaFragment =
|
|
20418
|
+
export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
20375
20419
|
export type GetTasksQueryVariables = Exact<{
|
|
20376
20420
|
[key: string]: never;
|
|
20377
20421
|
}>;
|
|
20378
20422
|
export type GetTasksQuery = {
|
|
20379
20423
|
tasks: Array<{
|
|
20380
|
-
__typename: "DataExportTask";
|
|
20381
|
-
id: string;
|
|
20382
|
-
createdAt: Date;
|
|
20383
|
-
export: {
|
|
20384
|
-
__typename: "DataExportOnDemand";
|
|
20385
|
-
downloadUri: string;
|
|
20386
|
-
id: string;
|
|
20387
|
-
} | {
|
|
20388
|
-
__typename: "DataExportStored";
|
|
20389
|
-
id: string;
|
|
20390
|
-
name: string;
|
|
20391
|
-
path: string;
|
|
20392
|
-
size: number;
|
|
20393
|
-
status: DataExportStatus;
|
|
20394
|
-
format: DataExportFormat;
|
|
20395
|
-
error?: string | undefined | null;
|
|
20396
|
-
createdAt: Date;
|
|
20397
|
-
};
|
|
20398
|
-
} | {
|
|
20399
20424
|
__typename: "ReplayTask";
|
|
20400
20425
|
id: string;
|
|
20401
20426
|
createdAt: Date;
|
|
@@ -20556,25 +20581,6 @@ export type StartedTaskSubscriptionVariables = Exact<{
|
|
|
20556
20581
|
export type StartedTaskSubscription = {
|
|
20557
20582
|
startedTask: {
|
|
20558
20583
|
task: {
|
|
20559
|
-
__typename: "DataExportTask";
|
|
20560
|
-
id: string;
|
|
20561
|
-
createdAt: Date;
|
|
20562
|
-
export: {
|
|
20563
|
-
__typename: "DataExportOnDemand";
|
|
20564
|
-
downloadUri: string;
|
|
20565
|
-
id: string;
|
|
20566
|
-
} | {
|
|
20567
|
-
__typename: "DataExportStored";
|
|
20568
|
-
id: string;
|
|
20569
|
-
name: string;
|
|
20570
|
-
path: string;
|
|
20571
|
-
size: number;
|
|
20572
|
-
status: DataExportStatus;
|
|
20573
|
-
format: DataExportFormat;
|
|
20574
|
-
error?: string | undefined | null;
|
|
20575
|
-
createdAt: Date;
|
|
20576
|
-
};
|
|
20577
|
-
} | {
|
|
20578
20584
|
__typename: "ReplayTask";
|
|
20579
20585
|
id: string;
|
|
20580
20586
|
createdAt: Date;
|
|
@@ -20720,25 +20726,6 @@ export type FinishedTaskSubscriptionVariables = Exact<{
|
|
|
20720
20726
|
export type FinishedTaskSubscription = {
|
|
20721
20727
|
finishedTask: {
|
|
20722
20728
|
task: {
|
|
20723
|
-
__typename: "DataExportTask";
|
|
20724
|
-
id: string;
|
|
20725
|
-
createdAt: Date;
|
|
20726
|
-
export: {
|
|
20727
|
-
__typename: "DataExportOnDemand";
|
|
20728
|
-
downloadUri: string;
|
|
20729
|
-
id: string;
|
|
20730
|
-
} | {
|
|
20731
|
-
__typename: "DataExportStored";
|
|
20732
|
-
id: string;
|
|
20733
|
-
name: string;
|
|
20734
|
-
path: string;
|
|
20735
|
-
size: number;
|
|
20736
|
-
status: DataExportStatus;
|
|
20737
|
-
format: DataExportFormat;
|
|
20738
|
-
error?: string | undefined | null;
|
|
20739
|
-
createdAt: Date;
|
|
20740
|
-
};
|
|
20741
|
-
} | {
|
|
20742
20729
|
__typename: "ReplayTask";
|
|
20743
20730
|
id: string;
|
|
20744
20731
|
createdAt: Date;
|
|
@@ -21614,10 +21601,6 @@ export type CreateWorkflowMutation = {
|
|
|
21614
21601
|
error?: {
|
|
21615
21602
|
__typename: "OtherUserError";
|
|
21616
21603
|
code: string;
|
|
21617
|
-
} | {
|
|
21618
|
-
__typename: "PermissionDeniedUserError";
|
|
21619
|
-
code: string;
|
|
21620
|
-
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
21621
21604
|
} | {
|
|
21622
21605
|
__typename: "WorkflowUserError";
|
|
21623
21606
|
node?: string | undefined | null;
|
|
@@ -22020,12 +22003,11 @@ export declare const ProjectUserErrorFullFragmentDoc = "\n fragment projectUs
|
|
|
22020
22003
|
export declare const CertificateUserErrorFullFragmentDoc = "\n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: reason\n}\n ";
|
|
22021
22004
|
export declare const NewerVersionUserErrorFullFragmentDoc = "\n fragment newerVersionUserErrorFull on NewerVersionUserError {\n ...userErrorFull\n version\n}\n ";
|
|
22022
22005
|
export declare const AuthorizationUserErrorFullFragmentDoc = "\n fragment authorizationUserErrorFull on AuthorizationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22023
|
-
export declare const
|
|
22024
|
-
export declare const
|
|
22025
|
-
export declare const
|
|
22026
|
-
export declare const
|
|
22027
|
-
export declare const
|
|
22028
|
-
export declare const DataExportTaskMetaFieldsFragmentDoc = "\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n ";
|
|
22006
|
+
export declare const DataExportMetaFieldsFragmentDoc = "\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22007
|
+
export declare const DataExportMetaFragmentDoc = "\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n ";
|
|
22008
|
+
export declare const DataExportFullFieldsFragmentDoc = "\n fragment dataExportFullFields on DataExport {\n ...dataExportMeta\n downloadUri\n}\n ";
|
|
22009
|
+
export declare const DataExportFullFragmentDoc = "\n fragment dataExportFull on DataExport {\n ...dataExportFullFields\n}\n ";
|
|
22010
|
+
export declare const DataExportTaskMetaFieldsFragmentDoc = "\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n ";
|
|
22029
22011
|
export declare const DataExportTaskMetaFragmentDoc = "\n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n ";
|
|
22030
22012
|
export declare const FilterPresetFullFragmentDoc = "\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
22031
22013
|
export declare const FilterPresetEdgeFullFragmentDoc = "\n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n ";
|
|
@@ -22229,13 +22211,18 @@ export declare const CreatedEnvironmentDocument = "\n subscription createdEnv
|
|
|
22229
22211
|
export declare const UpdatedEnvironmentDocument = "\n subscription updatedEnvironment {\n updatedEnvironment {\n environment {\n ...environmentMeta\n }\n snapshot\n }\n}\n \n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n ";
|
|
22230
22212
|
export declare const DeletedEnvironmentDocument = "\n subscription deletedEnvironment {\n deletedEnvironment {\n deletedEnvironmentId\n snapshot\n }\n}\n ";
|
|
22231
22213
|
export declare const UpdatedEnvironmentContextDocument = "\n subscription updatedEnvironmentContext {\n updatedEnvironmentContext {\n environmentContext {\n ...environmentContextFull\n }\n }\n}\n \n fragment environmentContextFull on EnvironmentContext {\n global {\n ...environmentFull\n }\n selected {\n ...environmentFull\n }\n}\n \n\n fragment environmentFull on Environment {\n ...environmentMeta\n variables {\n ...environmentVariableFull\n }\n}\n \n\n fragment environmentMeta on Environment {\n __typename\n id\n name\n version\n}\n \n\n fragment environmentVariableFull on EnvironmentVariable {\n name\n value\n kind\n}\n ";
|
|
22232
|
-
export declare const RenameDataExportDocument = "\n mutation renameDataExport($id: ID!, $name: String!) {\n renameDataExport(id: $id, name: $name) {\n export {\n
|
|
22214
|
+
export declare const RenameDataExportDocument = "\n mutation renameDataExport($id: ID!, $name: String!) {\n renameDataExport(id: $id, name: $name) {\n export {\n ...dataExportMeta\n }\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22233
22215
|
export declare const DeleteDataExportDocument = "\n mutation deleteDataExport($id: ID!) {\n deleteDataExport(id: $id) {\n deletedId\n userError {\n ... on TaskInProgressUserError {\n ...taskInProgressUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\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 otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22234
|
-
export declare const
|
|
22235
|
-
export declare const
|
|
22236
|
-
export declare const
|
|
22237
|
-
export declare const
|
|
22216
|
+
export declare const CancelDataExportTaskDocument = "\n mutation cancelDataExportTask($id: ID!) {\n cancelDataExportTask(id: $id) {\n cancelledId\n userError {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment unknownIdUserErrorFull on UnknownIdUserError {\n ...userErrorFull\n id\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22217
|
+
export declare const DataExportsDocument = "\n query dataExports {\n dataExports {\n ...dataExportMeta\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22218
|
+
export declare const DataExportDocument = "\n query dataExport($id: ID!) {\n dataExport(id: $id) {\n ...dataExportFull\n }\n}\n \n fragment dataExportFull on DataExport {\n ...dataExportFullFields\n}\n \n\n fragment dataExportFullFields on DataExport {\n ...dataExportMeta\n downloadUri\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22219
|
+
export declare const DataExportTasksDocument = "\n query dataExportTasks {\n dataExportTasks {\n ...dataExportTaskMeta\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22220
|
+
export declare const DataExportStateDocument = "\n query dataExportState {\n dataExports {\n ...dataExportMeta\n }\n dataExportTasks {\n ...dataExportTaskMeta\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n ";
|
|
22221
|
+
export declare const CreatedDataExportDocument = "\n subscription createdDataExport {\n createdDataExport {\n dataExportEdge {\n cursor\n node {\n ...dataExportMeta\n }\n }\n snapshot\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22222
|
+
export declare const UpdatedDataExportDocument = "\n subscription updatedDataExport {\n updatedDataExport {\n dataExportEdge {\n cursor\n node {\n ...dataExportMeta\n }\n }\n snapshot\n }\n}\n \n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22238
22223
|
export declare const DeletedDataExportDocument = "\n subscription deletedDataExport {\n deletedDataExport {\n deletedDataExportId\n snapshot\n }\n}\n ";
|
|
22224
|
+
export declare const CreatedDataExportTaskDocument = "\n subscription createdDataExportTask {\n createdDataExportTask {\n exportTaskEdge {\n cursor\n node {\n ...dataExportTaskMeta\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22225
|
+
export declare const DeletedDataExportTaskDocument = "\n subscription deletedDataExportTask {\n deletedDataExportTask {\n deletedExportTaskId\n }\n}\n ";
|
|
22239
22226
|
export declare const CreateFilterPresetDocument = "\n mutation createFilterPreset($input: CreateFilterPresetInput!) {\n createFilterPreset(input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\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 filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\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 ";
|
|
22240
22227
|
export declare const UpdateFilterPresetDocument = "\n mutation updateFilterPreset($id: ID!, $input: UpdateFilterPresetInput!) {\n updateFilterPreset(id: $id, input: $input) {\n filter {\n ...filterPresetFull\n }\n error {\n ... on NameTakenUserError {\n ...nameTakenUserErrorFull\n }\n ... on AliasTakenUserError {\n ...aliasTakenUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n \n\n fragment nameTakenUserErrorFull on NameTakenUserError {\n ...userErrorFull\n name\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment aliasTakenUserErrorFull on AliasTakenUserError {\n ...userErrorFull\n alias\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22241
22228
|
export declare const DeleteFilterPresetDocument = "\n mutation deleteFilterPreset($id: ID!) {\n deleteFilterPreset(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -22255,7 +22242,6 @@ export declare const UpdatedFindingsDocument = "\n subscription updatedFindin
|
|
|
22255
22242
|
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 ";
|
|
22256
22243
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput!) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
|
|
22257
22244
|
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 ";
|
|
22258
|
-
export declare const ExportFindingsDocument = "\n mutation exportFindings($input: ExportFindingsInput!) {\n exportFindings(input: $input) {\n export {\n ...dataExportOnDemandMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
22259
22245
|
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 ";
|
|
22260
22246
|
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 ";
|
|
22261
22247
|
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 ";
|
|
@@ -22347,7 +22333,7 @@ export declare const RequestDocument = "\n query request($id: ID!) {\n reque
|
|
|
22347
22333
|
export declare const RequestBrowserUrlDocument = "\n query requestBrowserUrl($id: ID!) {\n request(id: $id) {\n browser {\n replay\n showResponse\n }\n }\n}\n ";
|
|
22348
22334
|
export declare const RequestsByOffsetDocument = "\n query requestsByOffset($limit: Int, $offset: Int, $order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n requestsByOffset(\n limit: $limit\n offset: $offset\n order: $order\n scopeId: $scopeId\n filter: $filter\n ) {\n edges {\n ...requestEdgeMeta\n }\n snapshot\n pageInfo {\n ...pageInfoFull\n }\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n \n\n fragment pageInfoFull on PageInfo {\n __typename\n hasPreviousPage\n hasNextPage\n startCursor\n endCursor\n}\n ";
|
|
22349
22335
|
export declare const UpdateRequestMetadataDocument = "\n mutation updateRequestMetadata($id: ID!, $input: UpdateRequestMetadataInput!) {\n updateRequestMetadata(id: $id, input: $input) {\n snapshot\n metadata {\n ...requestMetadataFull\n }\n }\n}\n \n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n ";
|
|
22350
|
-
export declare const StartExportRequestsTaskDocument = "\n mutation startExportRequestsTask($input: StartExportRequestsTaskInput!) {\n startExportRequestsTask(input: $input) {\n task {\n ...dataExportTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n
|
|
22336
|
+
export declare const StartExportRequestsTaskDocument = "\n mutation startExportRequestsTask($input: StartExportRequestsTaskInput!) {\n startExportRequestsTask(input: $input) {\n task {\n ...dataExportTaskMeta\n }\n error {\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\n }\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\n fragment dataExportTaskMetaFields on DataExportTask {\n __typename\n id\n export {\n ...dataExportMeta\n }\n}\n \n\n fragment dataExportMeta on DataExport {\n ...dataExportMetaFields\n}\n \n\n fragment dataExportMetaFields on DataExport {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\n}\n ";
|
|
22351
22337
|
export declare const RenderRequestDocument = "\n mutation renderRequest($id: ID!, $input: RenderRequestInput!) {\n renderRequest(id: $id, input: $input) {\n render\n error {\n ... on RenderFailedUserError {\n ...renderFailedUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n }\n}\n \n fragment renderFailedUserErrorFull on RenderFailedUserError {\n ...userErrorFull\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22352
22338
|
export declare const CreatedRequestDocument = "\n subscription createdRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n createdRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
22353
22339
|
export declare const UpdatedRequestDocument = "\n subscription updatedRequest($order: RequestResponseOrderInput, $scopeId: ID, $filter: HTTPQL) {\n updatedRequest(scopeId: $scopeId, filter: $filter) {\n requestEdge(order: $order) {\n ...requestEdgeMeta\n }\n snapshot\n }\n}\n \n fragment requestEdgeMeta on RequestEdge {\n __typename\n cursor\n node {\n ...requestMeta\n }\n}\n \n\n fragment requestMeta on Request {\n __typename\n id\n host\n port\n path\n query\n method\n edited\n isTls\n sni\n length\n alteration\n metadata {\n ...requestMetadataFull\n }\n fileExtension\n source\n createdAt\n response {\n ...responseMeta\n }\n stream {\n id\n }\n}\n \n\n fragment requestMetadataFull on RequestMetadata {\n __typename\n id\n color\n}\n \n\n fragment responseMeta on Response {\n __typename\n id\n statusCode\n roundtripTime\n length\n createdAt\n alteration\n edited\n}\n ";
|
|
@@ -22389,10 +22375,10 @@ export declare const WebsocketMessageEditDocument = "\n query websocketMessag
|
|
|
22389
22375
|
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 ";
|
|
22390
22376
|
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 ";
|
|
22391
22377
|
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 ";
|
|
22392
|
-
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on
|
|
22378
|
+
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 ";
|
|
22393
22379
|
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 ";
|
|
22394
|
-
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on
|
|
22395
|
-
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on
|
|
22380
|
+
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 ";
|
|
22381
|
+
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 ";
|
|
22396
22382
|
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 ";
|
|
22397
22383
|
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 ";
|
|
22398
22384
|
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 ";
|
|
@@ -22420,7 +22406,7 @@ export declare const WorkflowsStateDocument = "\n query workflowsState {\n w
|
|
|
22420
22406
|
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 ";
|
|
22421
22407
|
export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
|
|
22422
22408
|
export declare const UpdatedWorkflowDocument = "\n subscription updatedWorkflow {\n updatedWorkflow {\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 ";
|
|
22423
|
-
export declare const CreateWorkflowDocument = "\n mutation createWorkflow($input: CreateWorkflowInput!) {\n createWorkflow(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n
|
|
22409
|
+
export declare const CreateWorkflowDocument = "\n mutation createWorkflow($input: CreateWorkflowInput!) {\n createWorkflow(input: $input) {\n error {\n ... on WorkflowUserError {\n ...workflowUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\n }\n }\n}\n \n fragment workflowUserErrorFull on WorkflowUserError {\n ...userErrorFull\n node\n message\n reason\n}\n \n\n fragment userErrorFull on UserError {\n __typename\n code\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n \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 ";
|
|
22424
22410
|
export declare const DeleteWorkflowDocument = "\n mutation deleteWorkflow($id: ID!) {\n deleteWorkflow(id: $id) {\n deletedId\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\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 readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\n}\n \n\n fragment otherUserErrorFull on OtherUserError {\n ...userErrorFull\n}\n ";
|
|
22425
22411
|
export declare const ToggleWorkflowDocument = "\n mutation toggleWorkflow($id: ID!, $enabled: Boolean!) {\n toggleWorkflow(id: $id, enabled: $enabled) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 \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 ";
|
|
22426
22412
|
export declare const RenameWorkflowDocument = "\n mutation renameWorkflow($id: ID!, $name: String!) {\n renameWorkflow(id: $id, name: $name) {\n error {\n ... on UnknownIdUserError {\n ...unknownIdUserErrorFull\n }\n ... on OtherUserError {\n ...otherUserErrorFull\n }\n ... on ReadOnlyUserError {\n ...readOnlyUserErrorFull\n }\n }\n workflow {\n ...workflowFull\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 \n\n fragment readOnlyUserErrorFull on ReadOnlyUserError {\n ...userErrorFull\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 ";
|
|
@@ -22534,11 +22520,16 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22534
22520
|
updatedEnvironmentContext(variables?: UpdatedEnvironmentContextSubscriptionVariables, options?: C): AsyncIterable<UpdatedEnvironmentContextSubscription>;
|
|
22535
22521
|
renameDataExport(variables: RenameDataExportMutationVariables, options?: C): Promise<RenameDataExportMutation>;
|
|
22536
22522
|
deleteDataExport(variables: DeleteDataExportMutationVariables, options?: C): Promise<DeleteDataExportMutation>;
|
|
22523
|
+
cancelDataExportTask(variables: CancelDataExportTaskMutationVariables, options?: C): Promise<CancelDataExportTaskMutation>;
|
|
22537
22524
|
dataExports(variables?: DataExportsQueryVariables, options?: C): Promise<DataExportsQuery>;
|
|
22538
22525
|
dataExport(variables: DataExportQueryVariables, options?: C): Promise<DataExportQuery>;
|
|
22526
|
+
dataExportTasks(variables?: DataExportTasksQueryVariables, options?: C): Promise<DataExportTasksQuery>;
|
|
22527
|
+
dataExportState(variables?: DataExportStateQueryVariables, options?: C): Promise<DataExportStateQuery>;
|
|
22539
22528
|
createdDataExport(variables?: CreatedDataExportSubscriptionVariables, options?: C): AsyncIterable<CreatedDataExportSubscription>;
|
|
22540
22529
|
updatedDataExport(variables?: UpdatedDataExportSubscriptionVariables, options?: C): AsyncIterable<UpdatedDataExportSubscription>;
|
|
22541
22530
|
deletedDataExport(variables?: DeletedDataExportSubscriptionVariables, options?: C): AsyncIterable<DeletedDataExportSubscription>;
|
|
22531
|
+
createdDataExportTask(variables?: CreatedDataExportTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedDataExportTaskSubscription>;
|
|
22532
|
+
deletedDataExportTask(variables?: DeletedDataExportTaskSubscriptionVariables, options?: C): AsyncIterable<DeletedDataExportTaskSubscription>;
|
|
22542
22533
|
createFilterPreset(variables: CreateFilterPresetMutationVariables, options?: C): Promise<CreateFilterPresetMutation>;
|
|
22543
22534
|
updateFilterPreset(variables: UpdateFilterPresetMutationVariables, options?: C): Promise<UpdateFilterPresetMutation>;
|
|
22544
22535
|
deleteFilterPreset(variables: DeleteFilterPresetMutationVariables, options?: C): Promise<DeleteFilterPresetMutation>;
|
|
@@ -22558,7 +22549,6 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22558
22549
|
createFinding(variables: CreateFindingMutationVariables, options?: C): Promise<CreateFindingMutation>;
|
|
22559
22550
|
deleteFindings(variables: DeleteFindingsMutationVariables, options?: C): Promise<DeleteFindingsMutation>;
|
|
22560
22551
|
updateFinding(variables: UpdateFindingMutationVariables, options?: C): Promise<UpdateFindingMutation>;
|
|
22561
|
-
exportFindings(variables: ExportFindingsMutationVariables, options?: C): Promise<ExportFindingsMutation>;
|
|
22562
22552
|
interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
|
|
22563
22553
|
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
22564
22554
|
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
|
@@ -117,4 +117,18 @@ export type SendRequestOptions = {
|
|
|
117
117
|
* Defaults to true.
|
|
118
118
|
*/
|
|
119
119
|
updateContentLength?: boolean;
|
|
120
|
+
/**
|
|
121
|
+
* Whether to overwrite the editor's draft content.
|
|
122
|
+
* If true, draft content will be overwritten with the new request.
|
|
123
|
+
* If false, the draft will be kept.
|
|
124
|
+
* Defaults to true.
|
|
125
|
+
*/
|
|
126
|
+
overwriteDraft?: boolean;
|
|
127
|
+
/**
|
|
128
|
+
* Whether to send the request in the background without updating the UI.
|
|
129
|
+
* If true, the request will not update the UI.
|
|
130
|
+
* If false, the UI will be updated to display the session and the new request.
|
|
131
|
+
* Defaults to false.
|
|
132
|
+
*/
|
|
133
|
+
background?: boolean;
|
|
120
134
|
};
|