@caido/sdk-frontend 0.50.2 → 0.50.3-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -602,11 +602,6 @@ 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;
|
|
610
605
|
export type CancelRestoreBackupTaskError = OtherUserError | UnknownIdUserError;
|
|
611
606
|
export type CancelRestoreBackupTaskPayload = {
|
|
612
607
|
cancelledId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -820,7 +815,7 @@ export type CreateUpstreamProxySocksInput = {
|
|
|
820
815
|
export type CreateUpstreamProxySocksPayload = {
|
|
821
816
|
proxy?: Maybe<UpstreamProxySocks>;
|
|
822
817
|
};
|
|
823
|
-
export type CreateWorkflowError = OtherUserError | WorkflowUserError;
|
|
818
|
+
export type CreateWorkflowError = OtherUserError | PermissionDeniedUserError | WorkflowUserError;
|
|
824
819
|
export type CreateWorkflowInput = {
|
|
825
820
|
definition: Scalars["JsonObject"]["input"];
|
|
826
821
|
global: Scalars["Boolean"]["input"];
|
|
@@ -877,9 +872,6 @@ export type CreatedDataExportPayload = {
|
|
|
877
872
|
dataExportEdge: DataExportEdge;
|
|
878
873
|
snapshot: Scalars["Snapshot"]["output"];
|
|
879
874
|
};
|
|
880
|
-
export type CreatedDataExportTaskPayload = {
|
|
881
|
-
exportTaskEdge: DataExportTaskEdge;
|
|
882
|
-
};
|
|
883
875
|
export type CreatedEnvironmentPayload = {
|
|
884
876
|
environment: Environment;
|
|
885
877
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1017,15 +1009,7 @@ export type DnsUpstreamResolverInput = {
|
|
|
1017
1009
|
id: Scalars["ID"]["input"];
|
|
1018
1010
|
};
|
|
1019
1011
|
export type DataExport = {
|
|
1020
|
-
createdAt: Scalars["DateTime"]["output"];
|
|
1021
|
-
downloadUri?: Maybe<Scalars["Uri"]["output"]>;
|
|
1022
|
-
error?: Maybe<Scalars["String"]["output"]>;
|
|
1023
|
-
format: DataExportFormat;
|
|
1024
1012
|
id: Scalars["ID"]["output"];
|
|
1025
|
-
name: Scalars["String"]["output"];
|
|
1026
|
-
path: Scalars["String"]["output"];
|
|
1027
|
-
size: Scalars["Int"]["output"];
|
|
1028
|
-
status: DataExportStatus;
|
|
1029
1013
|
};
|
|
1030
1014
|
/** An edge in a connection. */
|
|
1031
1015
|
export type DataExportEdge = {
|
|
@@ -1039,8 +1023,9 @@ export declare const DataExportFormat: {
|
|
|
1039
1023
|
readonly Json: "JSON";
|
|
1040
1024
|
};
|
|
1041
1025
|
export type DataExportFormat = (typeof DataExportFormat)[keyof typeof DataExportFormat];
|
|
1042
|
-
export type
|
|
1043
|
-
|
|
1026
|
+
export type DataExportOnDemand = DataExport & {
|
|
1027
|
+
downloadUri: Scalars["Uri"]["output"];
|
|
1028
|
+
id: Scalars["ID"]["output"];
|
|
1044
1029
|
};
|
|
1045
1030
|
export declare const DataExportStatus: {
|
|
1046
1031
|
readonly Cancelled: "CANCELLED";
|
|
@@ -1049,16 +1034,21 @@ export declare const DataExportStatus: {
|
|
|
1049
1034
|
readonly Processing: "PROCESSING";
|
|
1050
1035
|
};
|
|
1051
1036
|
export type DataExportStatus = (typeof DataExportStatus)[keyof typeof DataExportStatus];
|
|
1052
|
-
export type
|
|
1053
|
-
|
|
1037
|
+
export type DataExportStored = DataExport & {
|
|
1038
|
+
createdAt: Scalars["DateTime"]["output"];
|
|
1039
|
+
downloadUri?: Maybe<Scalars["Uri"]["output"]>;
|
|
1040
|
+
error?: Maybe<Scalars["String"]["output"]>;
|
|
1041
|
+
format: DataExportFormat;
|
|
1054
1042
|
id: Scalars["ID"]["output"];
|
|
1043
|
+
name: Scalars["String"]["output"];
|
|
1044
|
+
path: Scalars["String"]["output"];
|
|
1045
|
+
size: Scalars["Int"]["output"];
|
|
1046
|
+
status: DataExportStatus;
|
|
1055
1047
|
};
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
/** The item at the end of the edge */
|
|
1061
|
-
node: DataExportTask;
|
|
1048
|
+
export type DataExportTask = Task & {
|
|
1049
|
+
createdAt: Scalars["DateTime"]["output"];
|
|
1050
|
+
export: DataExport;
|
|
1051
|
+
id: Scalars["ID"]["output"];
|
|
1062
1052
|
};
|
|
1063
1053
|
export type DeleteAssistantSessionPayload = {
|
|
1064
1054
|
deletedId?: Maybe<Scalars["ID"]["output"]>;
|
|
@@ -1196,9 +1186,6 @@ export type DeletedDataExportPayload = {
|
|
|
1196
1186
|
deletedDataExportId: Scalars["ID"]["output"];
|
|
1197
1187
|
snapshot: Scalars["Snapshot"]["output"];
|
|
1198
1188
|
};
|
|
1199
|
-
export type DeletedDataExportTaskPayload = {
|
|
1200
|
-
deletedExportTaskId: Scalars["ID"]["output"];
|
|
1201
|
-
};
|
|
1202
1189
|
export type DeletedEnvironmentPayload = {
|
|
1203
1190
|
deletedEnvironmentId: Scalars["ID"]["output"];
|
|
1204
1191
|
snapshot: Scalars["Snapshot"]["output"];
|
|
@@ -1291,6 +1278,18 @@ export declare const EnvironmentVariableKind: {
|
|
|
1291
1278
|
readonly Secret: "SECRET";
|
|
1292
1279
|
};
|
|
1293
1280
|
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
|
+
};
|
|
1294
1293
|
export type FilterClauseFindingInput = {
|
|
1295
1294
|
reporter?: InputMaybe<Scalars["String"]["input"]>;
|
|
1296
1295
|
};
|
|
@@ -1644,7 +1643,6 @@ export type MoveTamperRulePayload = {
|
|
|
1644
1643
|
export type MutationRoot = {
|
|
1645
1644
|
cancelAutomateTask: CancelAutomateTaskPayload;
|
|
1646
1645
|
cancelBackupTask: CancelBackupTaskPayload;
|
|
1647
|
-
cancelDataExportTask: CancelDataExportTaskPayload;
|
|
1648
1646
|
cancelRestoreBackupTask: CancelRestoreBackupTaskPayload;
|
|
1649
1647
|
cancelTask: CancelTaskPayload;
|
|
1650
1648
|
clearSitemapEntries: ClearSitemapEntriesPayload;
|
|
@@ -1692,6 +1690,7 @@ export type MutationRoot = {
|
|
|
1692
1690
|
deleteWorkflow: DeleteWorkflowPayload;
|
|
1693
1691
|
dropInterceptMessage: DropInterceptMessagePayload;
|
|
1694
1692
|
duplicateAutomateSession: DuplicateAutomateSessionPayload;
|
|
1693
|
+
exportFindings: ExportFindingsPayload;
|
|
1695
1694
|
forwardInterceptMessage: ForwardInterceptMessagePayload;
|
|
1696
1695
|
globalizeWorkflow: GlobalizeWorkflowPayload;
|
|
1697
1696
|
hideFindings: HideFindingsPayload;
|
|
@@ -1781,9 +1780,6 @@ export type MutationRootCancelAutomateTaskArgs = {
|
|
|
1781
1780
|
export type MutationRootCancelBackupTaskArgs = {
|
|
1782
1781
|
id: Scalars["ID"]["input"];
|
|
1783
1782
|
};
|
|
1784
|
-
export type MutationRootCancelDataExportTaskArgs = {
|
|
1785
|
-
id: Scalars["ID"]["input"];
|
|
1786
|
-
};
|
|
1787
1783
|
export type MutationRootCancelRestoreBackupTaskArgs = {
|
|
1788
1784
|
id: Scalars["ID"]["input"];
|
|
1789
1785
|
};
|
|
@@ -1921,6 +1917,9 @@ export type MutationRootDropInterceptMessageArgs = {
|
|
|
1921
1917
|
export type MutationRootDuplicateAutomateSessionArgs = {
|
|
1922
1918
|
id: Scalars["ID"]["input"];
|
|
1923
1919
|
};
|
|
1920
|
+
export type MutationRootExportFindingsArgs = {
|
|
1921
|
+
input: ExportFindingsInput;
|
|
1922
|
+
};
|
|
1924
1923
|
export type MutationRootForwardInterceptMessageArgs = {
|
|
1925
1924
|
id: Scalars["ID"]["input"];
|
|
1926
1925
|
input?: InputMaybe<ForwardInterceptMessageInput>;
|
|
@@ -2381,7 +2380,6 @@ export type QueryRoot = {
|
|
|
2381
2380
|
browser?: Maybe<Browser>;
|
|
2382
2381
|
currentProject?: Maybe<CurrentProject>;
|
|
2383
2382
|
dataExport?: Maybe<DataExport>;
|
|
2384
|
-
dataExportTasks: Array<DataExportTask>;
|
|
2385
2383
|
dataExports: Array<DataExport>;
|
|
2386
2384
|
dnsRewrites: Array<DnsRewrite>;
|
|
2387
2385
|
dnsUpstreams: Array<DnsUpstream>;
|
|
@@ -3200,8 +3198,8 @@ export type StartAutomateTaskPayload = {
|
|
|
3200
3198
|
export type StartExportRequestsTaskInput = {
|
|
3201
3199
|
filter?: InputMaybe<Scalars["HTTPQL"]["input"]>;
|
|
3202
3200
|
format: DataExportFormat;
|
|
3201
|
+
includeRaw: Scalars["Boolean"]["input"];
|
|
3203
3202
|
scopeId?: InputMaybe<Scalars["ID"]["input"]>;
|
|
3204
|
-
settings: DataExportSettings;
|
|
3205
3203
|
};
|
|
3206
3204
|
export type StartExportRequestsTaskPayload = {
|
|
3207
3205
|
error?: Maybe<StartExportRequestsTaskPayloadError>;
|
|
@@ -3372,7 +3370,6 @@ export type SubscriptionRoot = {
|
|
|
3372
3370
|
createdAutomateTask: CreatedAutomateTaskPayload;
|
|
3373
3371
|
createdBackup: CreatedBackupPayload;
|
|
3374
3372
|
createdDataExport: CreatedDataExportPayload;
|
|
3375
|
-
createdDataExportTask: CreatedDataExportTaskPayload;
|
|
3376
3373
|
createdDnsRewrite: CreatedDnsRewritePayload;
|
|
3377
3374
|
createdDnsUpstream: CreatedDnsUpstreamPayload;
|
|
3378
3375
|
createdEnvironment: CreatedEnvironmentPayload;
|
|
@@ -3403,7 +3400,6 @@ export type SubscriptionRoot = {
|
|
|
3403
3400
|
deletedBackup: DeletedBackupPayload;
|
|
3404
3401
|
deletedBrowser: DeletedBrowserPayload;
|
|
3405
3402
|
deletedDataExport: DeletedDataExportPayload;
|
|
3406
|
-
deletedDataExportTask: DeletedDataExportTaskPayload;
|
|
3407
3403
|
deletedDnsRewrite: DeletedDnsRewritePayload;
|
|
3408
3404
|
deletedDnsUpstream: DeletedDnsUpstreamPayload;
|
|
3409
3405
|
deletedEnvironment: DeletedEnvironmentPayload;
|
|
@@ -8306,8 +8302,8 @@ export type AuthorizationUserErrorFullFragment = {
|
|
|
8306
8302
|
reason: AuthorizationErrorReason;
|
|
8307
8303
|
code: string;
|
|
8308
8304
|
};
|
|
8309
|
-
export type
|
|
8310
|
-
__typename: "
|
|
8305
|
+
export type DataExportStoredMetaFragment = {
|
|
8306
|
+
__typename: "DataExportStored";
|
|
8311
8307
|
id: string;
|
|
8312
8308
|
name: string;
|
|
8313
8309
|
path: string;
|
|
@@ -8317,8 +8313,8 @@ export type DataExportMetaFragment = {
|
|
|
8317
8313
|
error?: string | undefined | null;
|
|
8318
8314
|
createdAt: Date;
|
|
8319
8315
|
};
|
|
8320
|
-
export type
|
|
8321
|
-
__typename: "
|
|
8316
|
+
export type DataExportStoredMetaFieldsFragment = {
|
|
8317
|
+
__typename: "DataExportStored";
|
|
8322
8318
|
id: string;
|
|
8323
8319
|
name: string;
|
|
8324
8320
|
path: string;
|
|
@@ -8328,9 +8324,8 @@ export type DataExportMetaFieldsFragment = {
|
|
|
8328
8324
|
error?: string | undefined | null;
|
|
8329
8325
|
createdAt: Date;
|
|
8330
8326
|
};
|
|
8331
|
-
export type
|
|
8332
|
-
__typename: "
|
|
8333
|
-
downloadUri?: string | undefined | null;
|
|
8327
|
+
export type DataExportStoredFullFragment = {
|
|
8328
|
+
__typename: "DataExportStored";
|
|
8334
8329
|
id: string;
|
|
8335
8330
|
name: string;
|
|
8336
8331
|
path: string;
|
|
@@ -8339,10 +8334,10 @@ export type DataExportFullFragment = {
|
|
|
8339
8334
|
format: DataExportFormat;
|
|
8340
8335
|
error?: string | undefined | null;
|
|
8341
8336
|
createdAt: Date;
|
|
8337
|
+
fileDownloadUrl?: string | undefined | null;
|
|
8342
8338
|
};
|
|
8343
|
-
export type
|
|
8344
|
-
__typename: "
|
|
8345
|
-
downloadUri?: string | undefined | null;
|
|
8339
|
+
export type DataExportStoredFullFieldsFragment = {
|
|
8340
|
+
__typename: "DataExportStored";
|
|
8346
8341
|
id: string;
|
|
8347
8342
|
name: string;
|
|
8348
8343
|
path: string;
|
|
@@ -8351,12 +8346,18 @@ export type DataExportFullFieldsFragment = {
|
|
|
8351
8346
|
format: DataExportFormat;
|
|
8352
8347
|
error?: string | undefined | null;
|
|
8353
8348
|
createdAt: Date;
|
|
8349
|
+
fileDownloadUrl?: string | undefined | null;
|
|
8354
8350
|
};
|
|
8355
8351
|
export type DataExportTaskMetaFragment = {
|
|
8356
8352
|
__typename: "DataExportTask";
|
|
8357
8353
|
id: string;
|
|
8354
|
+
createdAt: Date;
|
|
8358
8355
|
export: {
|
|
8359
|
-
__typename: "
|
|
8356
|
+
__typename: "DataExportOnDemand";
|
|
8357
|
+
downloadUri: string;
|
|
8358
|
+
id: string;
|
|
8359
|
+
} | {
|
|
8360
|
+
__typename: "DataExportStored";
|
|
8360
8361
|
id: string;
|
|
8361
8362
|
name: string;
|
|
8362
8363
|
path: string;
|
|
@@ -8367,11 +8368,20 @@ export type DataExportTaskMetaFragment = {
|
|
|
8367
8368
|
createdAt: Date;
|
|
8368
8369
|
};
|
|
8369
8370
|
};
|
|
8371
|
+
export type DataExportOnDemandMetaFragment = {
|
|
8372
|
+
downloadUri: string;
|
|
8373
|
+
id: string;
|
|
8374
|
+
};
|
|
8370
8375
|
export type DataExportTaskMetaFieldsFragment = {
|
|
8371
8376
|
__typename: "DataExportTask";
|
|
8372
8377
|
id: string;
|
|
8378
|
+
createdAt: Date;
|
|
8373
8379
|
export: {
|
|
8374
|
-
__typename: "
|
|
8380
|
+
__typename: "DataExportOnDemand";
|
|
8381
|
+
downloadUri: string;
|
|
8382
|
+
id: string;
|
|
8383
|
+
} | {
|
|
8384
|
+
__typename: "DataExportStored";
|
|
8375
8385
|
id: string;
|
|
8376
8386
|
name: string;
|
|
8377
8387
|
path: string;
|
|
@@ -8389,7 +8399,9 @@ export type RenameDataExportMutationVariables = Exact<{
|
|
|
8389
8399
|
export type RenameDataExportMutation = {
|
|
8390
8400
|
renameDataExport: {
|
|
8391
8401
|
export?: {
|
|
8392
|
-
__typename: "
|
|
8402
|
+
__typename: "DataExportOnDemand";
|
|
8403
|
+
} | {
|
|
8404
|
+
__typename: "DataExportStored";
|
|
8393
8405
|
id: string;
|
|
8394
8406
|
name: string;
|
|
8395
8407
|
path: string;
|
|
@@ -8398,6 +8410,7 @@ export type RenameDataExportMutation = {
|
|
|
8398
8410
|
format: DataExportFormat;
|
|
8399
8411
|
error?: string | undefined | null;
|
|
8400
8412
|
createdAt: Date;
|
|
8413
|
+
fileDownloadUrl?: string | undefined | null;
|
|
8401
8414
|
} | undefined | null;
|
|
8402
8415
|
};
|
|
8403
8416
|
};
|
|
@@ -8417,28 +8430,16 @@ export type DeleteDataExportMutation = {
|
|
|
8417
8430
|
} | undefined | null;
|
|
8418
8431
|
};
|
|
8419
8432
|
};
|
|
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
|
-
};
|
|
8436
8433
|
export type DataExportsQueryVariables = Exact<{
|
|
8437
8434
|
[key: string]: never;
|
|
8438
8435
|
}>;
|
|
8439
8436
|
export type DataExportsQuery = {
|
|
8440
8437
|
dataExports: Array<{
|
|
8441
|
-
__typename: "
|
|
8438
|
+
__typename: "DataExportOnDemand";
|
|
8439
|
+
downloadUri: string;
|
|
8440
|
+
id: string;
|
|
8441
|
+
} | {
|
|
8442
|
+
__typename: "DataExportStored";
|
|
8442
8443
|
id: string;
|
|
8443
8444
|
name: string;
|
|
8444
8445
|
path: string;
|
|
@@ -8454,44 +8455,11 @@ export type DataExportQueryVariables = Exact<{
|
|
|
8454
8455
|
}>;
|
|
8455
8456
|
export type DataExportQuery = {
|
|
8456
8457
|
dataExport?: {
|
|
8457
|
-
__typename: "
|
|
8458
|
-
downloadUri
|
|
8458
|
+
__typename: "DataExportOnDemand";
|
|
8459
|
+
downloadUri: string;
|
|
8459
8460
|
id: string;
|
|
8460
|
-
|
|
8461
|
-
|
|
8462
|
-
size: number;
|
|
8463
|
-
status: DataExportStatus;
|
|
8464
|
-
format: DataExportFormat;
|
|
8465
|
-
error?: string | undefined | null;
|
|
8466
|
-
createdAt: Date;
|
|
8467
|
-
} | undefined | null;
|
|
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";
|
|
8461
|
+
} | {
|
|
8462
|
+
__typename: "DataExportStored";
|
|
8495
8463
|
id: string;
|
|
8496
8464
|
name: string;
|
|
8497
8465
|
path: string;
|
|
@@ -8500,22 +8468,8 @@ export type DataExportStateQuery = {
|
|
|
8500
8468
|
format: DataExportFormat;
|
|
8501
8469
|
error?: string | undefined | null;
|
|
8502
8470
|
createdAt: Date;
|
|
8503
|
-
|
|
8504
|
-
|
|
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
|
-
}>;
|
|
8471
|
+
fileDownloadUrl?: string | undefined | null;
|
|
8472
|
+
} | undefined | null;
|
|
8519
8473
|
};
|
|
8520
8474
|
export type CreatedDataExportSubscriptionVariables = Exact<{
|
|
8521
8475
|
[key: string]: never;
|
|
@@ -8526,7 +8480,9 @@ export type CreatedDataExportSubscription = {
|
|
|
8526
8480
|
dataExportEdge: {
|
|
8527
8481
|
cursor: string;
|
|
8528
8482
|
node: {
|
|
8529
|
-
__typename: "
|
|
8483
|
+
__typename: "DataExportOnDemand";
|
|
8484
|
+
} | {
|
|
8485
|
+
__typename: "DataExportStored";
|
|
8530
8486
|
id: string;
|
|
8531
8487
|
name: string;
|
|
8532
8488
|
path: string;
|
|
@@ -8535,6 +8491,7 @@ export type CreatedDataExportSubscription = {
|
|
|
8535
8491
|
format: DataExportFormat;
|
|
8536
8492
|
error?: string | undefined | null;
|
|
8537
8493
|
createdAt: Date;
|
|
8494
|
+
fileDownloadUrl?: string | undefined | null;
|
|
8538
8495
|
};
|
|
8539
8496
|
};
|
|
8540
8497
|
};
|
|
@@ -8548,7 +8505,9 @@ export type UpdatedDataExportSubscription = {
|
|
|
8548
8505
|
dataExportEdge: {
|
|
8549
8506
|
cursor: string;
|
|
8550
8507
|
node: {
|
|
8551
|
-
__typename: "
|
|
8508
|
+
__typename: "DataExportOnDemand";
|
|
8509
|
+
} | {
|
|
8510
|
+
__typename: "DataExportStored";
|
|
8552
8511
|
id: string;
|
|
8553
8512
|
name: string;
|
|
8554
8513
|
path: string;
|
|
@@ -8557,6 +8516,7 @@ export type UpdatedDataExportSubscription = {
|
|
|
8557
8516
|
format: DataExportFormat;
|
|
8558
8517
|
error?: string | undefined | null;
|
|
8559
8518
|
createdAt: Date;
|
|
8519
|
+
fileDownloadUrl?: string | undefined | null;
|
|
8560
8520
|
};
|
|
8561
8521
|
};
|
|
8562
8522
|
};
|
|
@@ -8570,39 +8530,6 @@ export type DeletedDataExportSubscription = {
|
|
|
8570
8530
|
snapshot: number;
|
|
8571
8531
|
};
|
|
8572
8532
|
};
|
|
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
|
-
};
|
|
8606
8533
|
export type FilterPresetFullFragment = {
|
|
8607
8534
|
__typename: "FilterPreset";
|
|
8608
8535
|
id: string;
|
|
@@ -9308,6 +9235,25 @@ export type UpdateFindingMutation = {
|
|
|
9308
9235
|
} | undefined | null;
|
|
9309
9236
|
};
|
|
9310
9237
|
};
|
|
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
|
+
};
|
|
9311
9257
|
export type InterceptEntryFullFragment = {
|
|
9312
9258
|
__typename: "InterceptEntry";
|
|
9313
9259
|
id: string;
|
|
@@ -19202,8 +19148,13 @@ export type StartExportRequestsTaskMutation = {
|
|
|
19202
19148
|
task?: {
|
|
19203
19149
|
__typename: "DataExportTask";
|
|
19204
19150
|
id: string;
|
|
19151
|
+
createdAt: Date;
|
|
19205
19152
|
export: {
|
|
19206
|
-
__typename: "
|
|
19153
|
+
__typename: "DataExportOnDemand";
|
|
19154
|
+
downloadUri: string;
|
|
19155
|
+
id: string;
|
|
19156
|
+
} | {
|
|
19157
|
+
__typename: "DataExportStored";
|
|
19207
19158
|
id: string;
|
|
19208
19159
|
name: string;
|
|
19209
19160
|
path: string;
|
|
@@ -20405,6 +20356,11 @@ export type UpdatedStreamWsMessageSubscription = {
|
|
|
20405
20356
|
};
|
|
20406
20357
|
};
|
|
20407
20358
|
};
|
|
20359
|
+
type TaskMeta_DataExportTask_Fragment = {
|
|
20360
|
+
__typename: "DataExportTask";
|
|
20361
|
+
id: string;
|
|
20362
|
+
createdAt: Date;
|
|
20363
|
+
};
|
|
20408
20364
|
type TaskMeta_ReplayTask_Fragment = {
|
|
20409
20365
|
__typename: "ReplayTask";
|
|
20410
20366
|
id: string;
|
|
@@ -20415,12 +20371,31 @@ type TaskMeta_WorkflowTask_Fragment = {
|
|
|
20415
20371
|
id: string;
|
|
20416
20372
|
createdAt: Date;
|
|
20417
20373
|
};
|
|
20418
|
-
export type TaskMetaFragment = TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
20374
|
+
export type TaskMetaFragment = TaskMeta_DataExportTask_Fragment | TaskMeta_ReplayTask_Fragment | TaskMeta_WorkflowTask_Fragment;
|
|
20419
20375
|
export type GetTasksQueryVariables = Exact<{
|
|
20420
20376
|
[key: string]: never;
|
|
20421
20377
|
}>;
|
|
20422
20378
|
export type GetTasksQuery = {
|
|
20423
20379
|
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
|
+
} | {
|
|
20424
20399
|
__typename: "ReplayTask";
|
|
20425
20400
|
id: string;
|
|
20426
20401
|
createdAt: Date;
|
|
@@ -20581,6 +20556,25 @@ export type StartedTaskSubscriptionVariables = Exact<{
|
|
|
20581
20556
|
export type StartedTaskSubscription = {
|
|
20582
20557
|
startedTask: {
|
|
20583
20558
|
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
|
+
} | {
|
|
20584
20578
|
__typename: "ReplayTask";
|
|
20585
20579
|
id: string;
|
|
20586
20580
|
createdAt: Date;
|
|
@@ -20726,6 +20720,25 @@ export type FinishedTaskSubscriptionVariables = Exact<{
|
|
|
20726
20720
|
export type FinishedTaskSubscription = {
|
|
20727
20721
|
finishedTask: {
|
|
20728
20722
|
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
|
+
} | {
|
|
20729
20742
|
__typename: "ReplayTask";
|
|
20730
20743
|
id: string;
|
|
20731
20744
|
createdAt: Date;
|
|
@@ -21601,6 +21614,10 @@ export type CreateWorkflowMutation = {
|
|
|
21601
21614
|
error?: {
|
|
21602
21615
|
__typename: "OtherUserError";
|
|
21603
21616
|
code: string;
|
|
21617
|
+
} | {
|
|
21618
|
+
__typename: "PermissionDeniedUserError";
|
|
21619
|
+
code: string;
|
|
21620
|
+
permissionDeniedReason: PermissionDeniedErrorReason;
|
|
21604
21621
|
} | {
|
|
21605
21622
|
__typename: "WorkflowUserError";
|
|
21606
21623
|
node?: string | undefined | null;
|
|
@@ -22003,11 +22020,12 @@ export declare const ProjectUserErrorFullFragmentDoc = "\n fragment projectUs
|
|
|
22003
22020
|
export declare const CertificateUserErrorFullFragmentDoc = "\n fragment certificateUserErrorFull on CertificateUserError {\n ...userErrorFull\n certificateReason: reason\n}\n ";
|
|
22004
22021
|
export declare const NewerVersionUserErrorFullFragmentDoc = "\n fragment newerVersionUserErrorFull on NewerVersionUserError {\n ...userErrorFull\n version\n}\n ";
|
|
22005
22022
|
export declare const AuthorizationUserErrorFullFragmentDoc = "\n fragment authorizationUserErrorFull on AuthorizationUserError {\n ...userErrorFull\n reason\n}\n ";
|
|
22006
|
-
export declare const
|
|
22007
|
-
export declare const
|
|
22008
|
-
export declare const
|
|
22009
|
-
export declare const
|
|
22010
|
-
export declare const
|
|
22023
|
+
export declare const DataExportStoredMetaFieldsFragmentDoc = "\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22024
|
+
export declare const DataExportStoredMetaFragmentDoc = "\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n ";
|
|
22025
|
+
export declare const DataExportStoredFullFieldsFragmentDoc = "\n fragment dataExportStoredFullFields on DataExportStored {\n ...dataExportStoredMeta\n fileDownloadUrl: downloadUri\n}\n ";
|
|
22026
|
+
export declare const DataExportStoredFullFragmentDoc = "\n fragment dataExportStoredFull on DataExportStored {\n ...dataExportStoredFullFields\n}\n ";
|
|
22027
|
+
export declare const DataExportOnDemandMetaFragmentDoc = "\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n ";
|
|
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 ";
|
|
22011
22029
|
export declare const DataExportTaskMetaFragmentDoc = "\n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n ";
|
|
22012
22030
|
export declare const FilterPresetFullFragmentDoc = "\n fragment filterPresetFull on FilterPreset {\n __typename\n id\n alias\n name\n clause\n}\n ";
|
|
22013
22031
|
export declare const FilterPresetEdgeFullFragmentDoc = "\n fragment filterPresetEdgeFull on FilterPresetEdge {\n cursor\n node {\n ...filterPresetFull\n }\n}\n ";
|
|
@@ -22211,18 +22229,13 @@ export declare const CreatedEnvironmentDocument = "\n subscription createdEnv
|
|
|
22211
22229
|
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 ";
|
|
22212
22230
|
export declare const DeletedEnvironmentDocument = "\n subscription deletedEnvironment {\n deletedEnvironment {\n deletedEnvironmentId\n snapshot\n }\n}\n ";
|
|
22213
22231
|
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 ";
|
|
22214
|
-
export declare const RenameDataExportDocument = "\n mutation renameDataExport($id: ID!, $name: String!) {\n renameDataExport(id: $id, name: $name) {\n export {\n ...
|
|
22232
|
+
export declare const RenameDataExportDocument = "\n mutation renameDataExport($id: ID!, $name: String!) {\n renameDataExport(id: $id, name: $name) {\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredFullFields\n }\n }\n }\n}\n \n fragment dataExportStoredFullFields on DataExportStored {\n ...dataExportStoredMeta\n fileDownloadUrl: downloadUri\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22215
22233
|
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 ";
|
|
22216
|
-
export declare const
|
|
22217
|
-
export declare const
|
|
22218
|
-
export declare const
|
|
22219
|
-
export declare const
|
|
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 ";
|
|
22234
|
+
export declare const DataExportsDocument = "\n query dataExports {\n dataExports {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n ";
|
|
22235
|
+
export declare const DataExportDocument = "\n query dataExport($id: ID!) {\n dataExport(id: $id) {\n __typename\n ... on DataExportStored {\n ...dataExportStoredFull\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n fragment dataExportStoredFull on DataExportStored {\n ...dataExportStoredFullFields\n}\n \n\n fragment dataExportStoredFullFields on DataExportStored {\n ...dataExportStoredMeta\n fileDownloadUrl: downloadUri\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\n}\n ";
|
|
22236
|
+
export declare const CreatedDataExportDocument = "\n subscription createdDataExport {\n createdDataExport {\n dataExportEdge {\n cursor\n node {\n __typename\n ... on DataExportStored {\n ...dataExportStoredFullFields\n }\n }\n }\n snapshot\n }\n}\n \n fragment dataExportStoredFullFields on DataExportStored {\n ...dataExportStoredMeta\n fileDownloadUrl: downloadUri\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22237
|
+
export declare const UpdatedDataExportDocument = "\n subscription updatedDataExport {\n updatedDataExport {\n dataExportEdge {\n cursor\n node {\n __typename\n ... on DataExportStored {\n ...dataExportStoredFullFields\n }\n }\n }\n snapshot\n }\n}\n \n fragment dataExportStoredFullFields on DataExportStored {\n ...dataExportStoredMeta\n fileDownloadUrl: downloadUri\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n ";
|
|
22223
22238
|
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 ";
|
|
22226
22239
|
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 ";
|
|
22227
22240
|
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 ";
|
|
22228
22241
|
export declare const DeleteFilterPresetDocument = "\n mutation deleteFilterPreset($id: ID!) {\n deleteFilterPreset(id: $id) {\n deletedId\n }\n}\n ";
|
|
@@ -22242,6 +22255,7 @@ export declare const UpdatedFindingsDocument = "\n subscription updatedFindin
|
|
|
22242
22255
|
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 ";
|
|
22243
22256
|
export declare const DeleteFindingsDocument = "\n mutation deleteFindings($input: DeleteFindingsInput!) {\n deleteFindings(input: $input) {\n deletedIds\n }\n}\n ";
|
|
22244
22257
|
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 ";
|
|
22245
22259
|
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 ";
|
|
22246
22260
|
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 ";
|
|
22247
22261
|
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 ";
|
|
@@ -22333,7 +22347,7 @@ export declare const RequestDocument = "\n query request($id: ID!) {\n reque
|
|
|
22333
22347
|
export declare const RequestBrowserUrlDocument = "\n query requestBrowserUrl($id: ID!) {\n request(id: $id) {\n browser {\n replay\n showResponse\n }\n }\n}\n ";
|
|
22334
22348
|
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 ";
|
|
22335
22349
|
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 ";
|
|
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 ...
|
|
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 createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\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 ";
|
|
22337
22351
|
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 ";
|
|
22338
22352
|
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 ";
|
|
22339
22353
|
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 ";
|
|
@@ -22375,10 +22389,10 @@ export declare const WebsocketMessageEditDocument = "\n query websocketMessag
|
|
|
22375
22389
|
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 ";
|
|
22376
22390
|
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 ";
|
|
22377
22391
|
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 ";
|
|
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 ";
|
|
22392
|
+
export declare const GetTasksDocument = "\n query getTasks {\n tasks {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\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 \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 ";
|
|
22379
22393
|
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 ";
|
|
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 ";
|
|
22394
|
+
export declare const StartedTaskDocument = "\n subscription startedTask {\n startedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\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 createdAt\n export {\n __typename\n ... on DataExportStored {\n ...dataExportStoredMeta\n }\n ... on DataExportOnDemand {\n ...dataExportOnDemandMeta\n }\n }\n}\n \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 ";
|
|
22395
|
+
export declare const FinishedTaskDocument = "\n subscription finishedTask {\n finishedTask {\n task {\n ... on DataExportTask {\n ...dataExportTaskMeta\n }\n ... on WorkflowTask {\n ...workflowTaskMeta\n }\n ... on ReplayTask {\n ...replayTaskMeta\n }\n }\n error {\n code\n }\n }\n}\n \n fragment dataExportTaskMeta on DataExportTask {\n ...dataExportTaskMetaFields\n}\n \n\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 \n\n fragment dataExportStoredMeta on DataExportStored {\n ...dataExportStoredMetaFields\n}\n \n\n fragment dataExportStoredMetaFields on DataExportStored {\n __typename\n id\n name\n path\n size\n status\n format\n error\n createdAt\n}\n \n\n fragment dataExportOnDemandMeta on DataExportOnDemand {\n downloadUri\n id\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 ";
|
|
22382
22396
|
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 ";
|
|
22383
22397
|
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 ";
|
|
22384
22398
|
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 ";
|
|
@@ -22406,7 +22420,7 @@ export declare const WorkflowsStateDocument = "\n query workflowsState {\n w
|
|
|
22406
22420
|
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 ";
|
|
22407
22421
|
export declare const DeletedWorkflowDocument = "\n subscription deletedWorkflow {\n deletedWorkflow {\n deletedWorkflowId\n }\n}\n ";
|
|
22408
22422
|
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 ";
|
|
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 ";
|
|
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 ... on PermissionDeniedUserError {\n ...permissionDeniedUserErrorFull\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 permissionDeniedUserErrorFull on PermissionDeniedUserError {\n ...userErrorFull\n permissionDeniedReason: reason\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 ";
|
|
22410
22424
|
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 ";
|
|
22411
22425
|
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 ";
|
|
22412
22426
|
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 ";
|
|
@@ -22520,16 +22534,11 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22520
22534
|
updatedEnvironmentContext(variables?: UpdatedEnvironmentContextSubscriptionVariables, options?: C): AsyncIterable<UpdatedEnvironmentContextSubscription>;
|
|
22521
22535
|
renameDataExport(variables: RenameDataExportMutationVariables, options?: C): Promise<RenameDataExportMutation>;
|
|
22522
22536
|
deleteDataExport(variables: DeleteDataExportMutationVariables, options?: C): Promise<DeleteDataExportMutation>;
|
|
22523
|
-
cancelDataExportTask(variables: CancelDataExportTaskMutationVariables, options?: C): Promise<CancelDataExportTaskMutation>;
|
|
22524
22537
|
dataExports(variables?: DataExportsQueryVariables, options?: C): Promise<DataExportsQuery>;
|
|
22525
22538
|
dataExport(variables: DataExportQueryVariables, options?: C): Promise<DataExportQuery>;
|
|
22526
|
-
dataExportTasks(variables?: DataExportTasksQueryVariables, options?: C): Promise<DataExportTasksQuery>;
|
|
22527
|
-
dataExportState(variables?: DataExportStateQueryVariables, options?: C): Promise<DataExportStateQuery>;
|
|
22528
22539
|
createdDataExport(variables?: CreatedDataExportSubscriptionVariables, options?: C): AsyncIterable<CreatedDataExportSubscription>;
|
|
22529
22540
|
updatedDataExport(variables?: UpdatedDataExportSubscriptionVariables, options?: C): AsyncIterable<UpdatedDataExportSubscription>;
|
|
22530
22541
|
deletedDataExport(variables?: DeletedDataExportSubscriptionVariables, options?: C): AsyncIterable<DeletedDataExportSubscription>;
|
|
22531
|
-
createdDataExportTask(variables?: CreatedDataExportTaskSubscriptionVariables, options?: C): AsyncIterable<CreatedDataExportTaskSubscription>;
|
|
22532
|
-
deletedDataExportTask(variables?: DeletedDataExportTaskSubscriptionVariables, options?: C): AsyncIterable<DeletedDataExportTaskSubscription>;
|
|
22533
22542
|
createFilterPreset(variables: CreateFilterPresetMutationVariables, options?: C): Promise<CreateFilterPresetMutation>;
|
|
22534
22543
|
updateFilterPreset(variables: UpdateFilterPresetMutationVariables, options?: C): Promise<UpdateFilterPresetMutation>;
|
|
22535
22544
|
deleteFilterPreset(variables: DeleteFilterPresetMutationVariables, options?: C): Promise<DeleteFilterPresetMutation>;
|
|
@@ -22549,6 +22558,7 @@ export declare function getSdk<C>(requester: Requester<C>): {
|
|
|
22549
22558
|
createFinding(variables: CreateFindingMutationVariables, options?: C): Promise<CreateFindingMutation>;
|
|
22550
22559
|
deleteFindings(variables: DeleteFindingsMutationVariables, options?: C): Promise<DeleteFindingsMutation>;
|
|
22551
22560
|
updateFinding(variables: UpdateFindingMutationVariables, options?: C): Promise<UpdateFindingMutation>;
|
|
22561
|
+
exportFindings(variables: ExportFindingsMutationVariables, options?: C): Promise<ExportFindingsMutation>;
|
|
22552
22562
|
interceptEntries(variables?: InterceptEntriesQueryVariables, options?: C): Promise<InterceptEntriesQuery>;
|
|
22553
22563
|
interceptEntriesByOffset(variables?: InterceptEntriesByOffsetQueryVariables, options?: C): Promise<InterceptEntriesByOffsetQuery>;
|
|
22554
22564
|
interceptEntry(variables: InterceptEntryQueryVariables, options?: C): Promise<InterceptEntryQuery>;
|
package/src/types/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export { FooterSlot, type FooterSlotContent } from "./types/footer";
|
|
|
2
2
|
export type { DialogOptions } from "./types/window";
|
|
3
3
|
export type { CommandContext } from "./types/commands";
|
|
4
4
|
export type { MenuItem } from "./types/menu";
|
|
5
|
-
export { type ReplayTab, type ReplaySession, type ReplayCollection, type SendRequestOptions, ReplaySlot, type ReplaySlotContent, } from "./types/replay";
|
|
5
|
+
export { type ReplayTab, type ReplaySession, type ReplayCollection, type SendRequestOptions, ReplaySlot, type ReplaySlotContent, type RequestSource, } from "./types/replay";
|
|
6
6
|
export type { HostedFile } from "./types/files";
|
|
7
7
|
export type { Filter } from "./types/filter";
|
|
8
8
|
export type { HTTPQL, ID, ComponentDefinition } from "./types/utils";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type Extension } from "@codemirror/state";
|
|
2
|
-
import { type OpenTabOptions, type ReplayCollection, type ReplaySession, type ReplaySlotContent, type ReplayTab, type SendRequestOptions } from "../types/replay";
|
|
2
|
+
import { type OpenTabOptions, type ReplayCollection, type ReplaySession, type ReplaySlotContent, type ReplayTab, type RequestSource, type SendRequestOptions } from "../types/replay";
|
|
3
3
|
import { type DefineAddToSlotFn } from "../types/slots";
|
|
4
4
|
import type { ID } from "../types/utils";
|
|
5
5
|
/**
|
|
@@ -47,6 +47,12 @@ export type ReplaySDK = {
|
|
|
47
47
|
* @param sessionIds The IDs of the sessions to delete.
|
|
48
48
|
*/
|
|
49
49
|
deleteSessions: (sessionIds: ID[]) => Promise<ID[]>;
|
|
50
|
+
/**
|
|
51
|
+
* Create a session.
|
|
52
|
+
* @param sessionId The ID of the request to add.
|
|
53
|
+
* @param collectionId The ID of the collection to add the request.
|
|
54
|
+
*/
|
|
55
|
+
createSession: (source: RequestSource, collectionId?: ID) => Promise<void>;
|
|
50
56
|
/**
|
|
51
57
|
* Get the list of all replay collections.
|
|
52
58
|
* @returns The list of all replay collections.
|
|
@@ -132,3 +132,32 @@ export type SendRequestOptions = {
|
|
|
132
132
|
*/
|
|
133
133
|
background?: boolean;
|
|
134
134
|
};
|
|
135
|
+
/**
|
|
136
|
+
* @category Replay
|
|
137
|
+
*
|
|
138
|
+
* @remarks
|
|
139
|
+
* This type is a discriminated union with two possible shapes:
|
|
140
|
+
* - A raw request, containing the raw HTTP request string and connection information.
|
|
141
|
+
* - A reference to an existing request ID.
|
|
142
|
+
*
|
|
143
|
+
* @example
|
|
144
|
+
* // Using a raw request
|
|
145
|
+
* const source: RequestSource = {
|
|
146
|
+
* type: "Raw",
|
|
147
|
+
* raw: "GET /api/data HTTP/1.1",
|
|
148
|
+
* connectionInfo: { ... }
|
|
149
|
+
* };
|
|
150
|
+
* // Using an ID
|
|
151
|
+
* const source: RequestSource = {
|
|
152
|
+
* type: "ID",
|
|
153
|
+
* id: "request-123"
|
|
154
|
+
* };
|
|
155
|
+
*/
|
|
156
|
+
export type RequestSource = {
|
|
157
|
+
type: "Raw";
|
|
158
|
+
raw: string;
|
|
159
|
+
connectionInfo: SendRequestOptions["connectionInfo"];
|
|
160
|
+
} | {
|
|
161
|
+
type: "ID";
|
|
162
|
+
id: string;
|
|
163
|
+
};
|