@caido/schema-proxy 0.55.3 → 0.56.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/openapi.yaml +2 -1
- package/package.json +1 -1
- package/schema.graphql +554 -346
package/schema.graphql
CHANGED
|
@@ -113,7 +113,7 @@ type AssistantMessageTask {
|
|
|
113
113
|
}
|
|
114
114
|
|
|
115
115
|
union AssistantMessageTaskError =
|
|
116
|
-
|
|
116
|
+
| AssistantUserError
|
|
117
117
|
| AuthenticationUserError
|
|
118
118
|
| CloudUserError
|
|
119
119
|
| OtherUserError
|
|
@@ -224,13 +224,13 @@ type AutomateEntry {
|
|
|
224
224
|
before: String
|
|
225
225
|
first: Int
|
|
226
226
|
last: Int
|
|
227
|
-
filter:
|
|
227
|
+
filter: HTTPQLInput
|
|
228
228
|
order: AutomateEntryRequestOrderInput
|
|
229
229
|
): AutomateEntryRequestConnection!
|
|
230
230
|
requestsByOffset(
|
|
231
231
|
limit: Int
|
|
232
232
|
offset: Int
|
|
233
|
-
filter:
|
|
233
|
+
filter: HTTPQLInput
|
|
234
234
|
order: AutomateEntryRequestOrderInput
|
|
235
235
|
): AutomateEntryRequestConnection!
|
|
236
236
|
session: AutomateSession!
|
|
@@ -251,9 +251,15 @@ type AutomateEntryEdge {
|
|
|
251
251
|
node: AutomateEntry!
|
|
252
252
|
}
|
|
253
253
|
|
|
254
|
+
type AutomateEntryExtract {
|
|
255
|
+
name: String!
|
|
256
|
+
raw: Blob!
|
|
257
|
+
}
|
|
258
|
+
|
|
254
259
|
type AutomateEntryRequest {
|
|
255
260
|
automateEntryId: ID!
|
|
256
261
|
error: String
|
|
262
|
+
extracts: [AutomateEntryExtract!]!
|
|
257
263
|
payloads: [AutomateEntryRequestPayload!]!
|
|
258
264
|
request: Request!
|
|
259
265
|
sequenceId: ID!
|
|
@@ -291,6 +297,11 @@ type AutomateEntryRequestEdge {
|
|
|
291
297
|
}
|
|
292
298
|
|
|
293
299
|
enum AutomateEntryRequestOrderBy {
|
|
300
|
+
EXTRACT_0
|
|
301
|
+
EXTRACT_1
|
|
302
|
+
EXTRACT_2
|
|
303
|
+
EXTRACT_3
|
|
304
|
+
EXTRACT_4
|
|
294
305
|
ID
|
|
295
306
|
PAYLOAD_0
|
|
296
307
|
PAYLOAD_1
|
|
@@ -298,6 +309,7 @@ enum AutomateEntryRequestOrderBy {
|
|
|
298
309
|
PAYLOAD_3
|
|
299
310
|
PAYLOAD_4
|
|
300
311
|
POSITION
|
|
312
|
+
REQ_CREATED_AT
|
|
301
313
|
RESP_LENGTH
|
|
302
314
|
RESP_ROUNDTRIP_TIME
|
|
303
315
|
RESP_STATUS_CODE
|
|
@@ -313,6 +325,24 @@ type AutomateEntryRequestPayload {
|
|
|
313
325
|
raw: Blob
|
|
314
326
|
}
|
|
315
327
|
|
|
328
|
+
union AutomateExtractor = AutomateExtractorRegex
|
|
329
|
+
|
|
330
|
+
input AutomateExtractorInput @oneOf {
|
|
331
|
+
automateExtractorRegex: AutomateExtractorRegexInput
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
type AutomateExtractorRegex {
|
|
335
|
+
body: Boolean!
|
|
336
|
+
regex: String!
|
|
337
|
+
workflowId: ID
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
input AutomateExtractorRegexInput {
|
|
341
|
+
body: Boolean!
|
|
342
|
+
regex: String!
|
|
343
|
+
workflowId: ID
|
|
344
|
+
}
|
|
345
|
+
|
|
316
346
|
type AutomateHostedFilePayload {
|
|
317
347
|
delimiter: String
|
|
318
348
|
id: ID!
|
|
@@ -354,7 +384,7 @@ input AutomatePayloadInput {
|
|
|
354
384
|
}
|
|
355
385
|
|
|
356
386
|
union AutomatePayloadOptions =
|
|
357
|
-
|
|
387
|
+
| AutomateSimpleListPayload
|
|
358
388
|
| AutomateHostedFilePayload
|
|
359
389
|
| AutomateNullPayload
|
|
360
390
|
| AutomateNumberPayload
|
|
@@ -400,7 +430,7 @@ input AutomatePreprocessorInput {
|
|
|
400
430
|
}
|
|
401
431
|
|
|
402
432
|
union AutomatePreprocessorOptions =
|
|
403
|
-
|
|
433
|
+
| AutomatePrefixPreprocessor
|
|
404
434
|
| AutomateSuffixPreprocessor
|
|
405
435
|
| AutomateUrlEncodePreprocessor
|
|
406
436
|
| AutomateWorkflowPreprocessor
|
|
@@ -476,6 +506,7 @@ type AutomateSessionEdge {
|
|
|
476
506
|
type AutomateSettings {
|
|
477
507
|
closeConnection: Boolean!
|
|
478
508
|
concurrency: AutomateConcurrencySetting!
|
|
509
|
+
extractors: [AutomateExtractor!]!
|
|
479
510
|
payloads: [AutomatePayload!]!
|
|
480
511
|
placeholders: [AutomatePlaceholder!]!
|
|
481
512
|
redirect: AutomateRedirectSetting!
|
|
@@ -487,6 +518,7 @@ type AutomateSettings {
|
|
|
487
518
|
input AutomateSettingsInput {
|
|
488
519
|
closeConnection: Boolean!
|
|
489
520
|
concurrency: AutomateConcurrencySettingInput!
|
|
521
|
+
extractors: [AutomateExtractorInput!]!
|
|
490
522
|
payloads: [AutomatePayloadInput!]!
|
|
491
523
|
placeholders: [AutomatePlaceholderInput!]!
|
|
492
524
|
redirect: AutomateRedirectSettingInput!
|
|
@@ -687,6 +719,10 @@ type CertificateUserError implements UserError {
|
|
|
687
719
|
reason: CertificateErrorReason!
|
|
688
720
|
}
|
|
689
721
|
|
|
722
|
+
type ClearReplayEntryDraftPayload {
|
|
723
|
+
entry: ReplayEntry
|
|
724
|
+
}
|
|
725
|
+
|
|
690
726
|
type ClearSitemapEntriesPayload {
|
|
691
727
|
deletedIds: [ID!]!
|
|
692
728
|
}
|
|
@@ -732,10 +768,7 @@ type Count {
|
|
|
732
768
|
value: Int!
|
|
733
769
|
}
|
|
734
770
|
|
|
735
|
-
union CreateAssistantSessionError =
|
|
736
|
-
PermissionDeniedUserError
|
|
737
|
-
| CloudUserError
|
|
738
|
-
| OtherUserError
|
|
771
|
+
union CreateAssistantSessionError = PermissionDeniedUserError | CloudUserError | OtherUserError
|
|
739
772
|
|
|
740
773
|
input CreateAssistantSessionInput {
|
|
741
774
|
modelId: ID!
|
|
@@ -785,7 +818,7 @@ type CreateDNSUpstreamPayload {
|
|
|
785
818
|
}
|
|
786
819
|
|
|
787
820
|
union CreateEnvironmentError =
|
|
788
|
-
|
|
821
|
+
| NameTakenUserError
|
|
789
822
|
| PermissionDeniedUserError
|
|
790
823
|
| CloudUserError
|
|
791
824
|
| OtherUserError
|
|
@@ -801,7 +834,7 @@ type CreateEnvironmentPayload {
|
|
|
801
834
|
}
|
|
802
835
|
|
|
803
836
|
union CreateFilterPresetError =
|
|
804
|
-
|
|
837
|
+
| NameTakenUserError
|
|
805
838
|
| AliasTakenUserError
|
|
806
839
|
| PermissionDeniedUserError
|
|
807
840
|
| CloudUserError
|
|
@@ -809,7 +842,8 @@ union CreateFilterPresetError =
|
|
|
809
842
|
|
|
810
843
|
input CreateFilterPresetInput {
|
|
811
844
|
alias: Alias!
|
|
812
|
-
clause:
|
|
845
|
+
clause: QueryInput!
|
|
846
|
+
global: Boolean!
|
|
813
847
|
name: String!
|
|
814
848
|
}
|
|
815
849
|
|
|
@@ -843,7 +877,7 @@ type CreateProjectPayload {
|
|
|
843
877
|
}
|
|
844
878
|
|
|
845
879
|
union CreateProjectPayloadError =
|
|
846
|
-
|
|
880
|
+
| NameTakenUserError
|
|
847
881
|
| PermissionDeniedUserError
|
|
848
882
|
| CloudUserError
|
|
849
883
|
| OtherUserError
|
|
@@ -858,13 +892,44 @@ type CreateReplaySessionCollectionPayload {
|
|
|
858
892
|
|
|
859
893
|
input CreateReplaySessionInput {
|
|
860
894
|
collectionId: ID
|
|
895
|
+
kind: ReplaySessionKind!
|
|
861
896
|
requestSource: RequestSourceInput
|
|
897
|
+
settings: ReplaySessionSettingsInput
|
|
862
898
|
}
|
|
863
899
|
|
|
864
900
|
type CreateReplaySessionPayload {
|
|
865
901
|
session: ReplaySession
|
|
866
902
|
}
|
|
867
903
|
|
|
904
|
+
input CreateRequestInput {
|
|
905
|
+
alteration: Alteration!
|
|
906
|
+
host: String!
|
|
907
|
+
isTls: Boolean!
|
|
908
|
+
method: String!
|
|
909
|
+
parentId: ID
|
|
910
|
+
path: String!
|
|
911
|
+
port: Int!
|
|
912
|
+
query: String!
|
|
913
|
+
raw: Blob!
|
|
914
|
+
response: CreateResponseInput
|
|
915
|
+
sni: String
|
|
916
|
+
source: Source!
|
|
917
|
+
}
|
|
918
|
+
|
|
919
|
+
type CreateRequestPayload {
|
|
920
|
+
id: ID!
|
|
921
|
+
responseId: ID
|
|
922
|
+
}
|
|
923
|
+
|
|
924
|
+
input CreateResponseInput {
|
|
925
|
+
alteration: Alteration!
|
|
926
|
+
parentId: ID
|
|
927
|
+
raw: Blob!
|
|
928
|
+
roundtripTime: Int!
|
|
929
|
+
source: Source!
|
|
930
|
+
statusCode: Int!
|
|
931
|
+
}
|
|
932
|
+
|
|
868
933
|
union CreateScopeError = InvalidGlobTermsUserError | OtherUserError
|
|
869
934
|
|
|
870
935
|
input CreateScopeInput {
|
|
@@ -892,14 +957,11 @@ type CreateTamperRuleCollectionPayload {
|
|
|
892
957
|
collection: TamperRuleCollection
|
|
893
958
|
}
|
|
894
959
|
|
|
895
|
-
union CreateTamperRuleError =
|
|
896
|
-
InvalidRegexUserError
|
|
897
|
-
| InvalidHTTPQLUserError
|
|
898
|
-
| OtherUserError
|
|
960
|
+
union CreateTamperRuleError = InvalidRegexUserError | InvalidHTTPQLUserError | OtherUserError
|
|
899
961
|
|
|
900
962
|
input CreateTamperRuleInput {
|
|
901
963
|
collectionId: ID!
|
|
902
|
-
condition:
|
|
964
|
+
condition: QueryInput
|
|
903
965
|
name: String!
|
|
904
966
|
section: TamperSectionInput!
|
|
905
967
|
sources: [Source!]!
|
|
@@ -946,10 +1008,7 @@ type CreateUpstreamProxySocksPayload {
|
|
|
946
1008
|
proxy: UpstreamProxySocks
|
|
947
1009
|
}
|
|
948
1010
|
|
|
949
|
-
union CreateWorkflowError =
|
|
950
|
-
WorkflowUserError
|
|
951
|
-
| PermissionDeniedUserError
|
|
952
|
-
| OtherUserError
|
|
1011
|
+
union CreateWorkflowError = WorkflowUserError | PermissionDeniedUserError | OtherUserError
|
|
953
1012
|
|
|
954
1013
|
input CreateWorkflowInput {
|
|
955
1014
|
definition: JsonObject!
|
|
@@ -975,10 +1034,7 @@ type CreatedAssistantSessionPayload {
|
|
|
975
1034
|
snapshot: Snapshot!
|
|
976
1035
|
}
|
|
977
1036
|
|
|
978
|
-
union CreatedAuthenticationTokenError =
|
|
979
|
-
AuthenticationUserError
|
|
980
|
-
| InternalUserError
|
|
981
|
-
| OtherUserError
|
|
1037
|
+
union CreatedAuthenticationTokenError = AuthenticationUserError | InternalUserError | OtherUserError
|
|
982
1038
|
|
|
983
1039
|
type CreatedAuthenticationTokenPayload {
|
|
984
1040
|
error: CreatedAuthenticationTokenError
|
|
@@ -991,9 +1047,7 @@ type CreatedAutomateEntryPayload {
|
|
|
991
1047
|
}
|
|
992
1048
|
|
|
993
1049
|
type CreatedAutomateEntryRequestPayload {
|
|
994
|
-
automateEntryRequestEdge(
|
|
995
|
-
order: AutomateEntryRequestOrderInput
|
|
996
|
-
): AutomateEntryRequestEdge!
|
|
1050
|
+
automateEntryRequestEdge(order: AutomateEntryRequestOrderInput): AutomateEntryRequestEdge!
|
|
997
1051
|
snapshot: Snapshot!
|
|
998
1052
|
}
|
|
999
1053
|
|
|
@@ -1205,6 +1259,11 @@ type DataExportOnDemand implements DataExport {
|
|
|
1205
1259
|
id: ID!
|
|
1206
1260
|
}
|
|
1207
1261
|
|
|
1262
|
+
input DataExportSettingsInput {
|
|
1263
|
+
format: DataExportFormat!
|
|
1264
|
+
includeRaw: Boolean!
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1208
1267
|
enum DataExportStatus {
|
|
1209
1268
|
CANCELLED
|
|
1210
1269
|
DONE
|
|
@@ -1339,10 +1398,7 @@ type DeleteProjectPayload {
|
|
|
1339
1398
|
error: DeleteProjectPayloadError
|
|
1340
1399
|
}
|
|
1341
1400
|
|
|
1342
|
-
union DeleteProjectPayloadError =
|
|
1343
|
-
ProjectUserError
|
|
1344
|
-
| UnknownIdUserError
|
|
1345
|
-
| OtherUserError
|
|
1401
|
+
union DeleteProjectPayloadError = ProjectUserError | UnknownIdUserError | OtherUserError
|
|
1346
1402
|
|
|
1347
1403
|
type DeleteReplaySessionCollectionPayload {
|
|
1348
1404
|
deletedId: ID
|
|
@@ -1363,6 +1419,11 @@ type DeleteSitemapEntriesPayload {
|
|
|
1363
1419
|
errors: [DeleteSitemapEntriesError!]!
|
|
1364
1420
|
}
|
|
1365
1421
|
|
|
1422
|
+
type DeleteStreamWsMessageTask implements Task {
|
|
1423
|
+
createdAt: DateTime!
|
|
1424
|
+
id: ID!
|
|
1425
|
+
}
|
|
1426
|
+
|
|
1366
1427
|
type DeleteTamperRuleCollectionPayload {
|
|
1367
1428
|
deletedId: ID
|
|
1368
1429
|
}
|
|
@@ -1383,10 +1444,7 @@ type DeleteUpstreamProxySocksPayload {
|
|
|
1383
1444
|
deletedId: ID
|
|
1384
1445
|
}
|
|
1385
1446
|
|
|
1386
|
-
union DeleteWorkflowError =
|
|
1387
|
-
UnknownIdUserError
|
|
1388
|
-
| ReadOnlyUserError
|
|
1389
|
-
| OtherUserError
|
|
1447
|
+
union DeleteWorkflowError = UnknownIdUserError | ReadOnlyUserError | OtherUserError
|
|
1390
1448
|
|
|
1391
1449
|
type DeleteWorkflowPayload {
|
|
1392
1450
|
deletedId: ID
|
|
@@ -1494,6 +1552,10 @@ type DeletedSitemapEntriesPayload {
|
|
|
1494
1552
|
snapshot: Snapshot!
|
|
1495
1553
|
}
|
|
1496
1554
|
|
|
1555
|
+
type DeletedStreamWsMessagesPayload {
|
|
1556
|
+
deletedIds: [ID!]!
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1497
1559
|
type DeletedTamperRuleCollectionPayload {
|
|
1498
1560
|
deletedCollectionId: ID!
|
|
1499
1561
|
snapshot: Snapshot!
|
|
@@ -1575,6 +1637,22 @@ type ExportFindingsPayload {
|
|
|
1575
1637
|
export: DataExportOnDemand
|
|
1576
1638
|
}
|
|
1577
1639
|
|
|
1640
|
+
union ExportSitemapEntriesError = PermissionDeniedUserError | OtherUserError
|
|
1641
|
+
|
|
1642
|
+
input ExportSitemapEntriesFilter @oneOf {
|
|
1643
|
+
ids: [ID!]
|
|
1644
|
+
}
|
|
1645
|
+
|
|
1646
|
+
input ExportSitemapEntriesInput {
|
|
1647
|
+
filter: ExportSitemapEntriesFilter!
|
|
1648
|
+
settings: DataExportSettingsInput!
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
type ExportSitemapEntriesPayload {
|
|
1652
|
+
error: ExportSitemapEntriesError
|
|
1653
|
+
export: DataExportOnDemand
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1578
1656
|
union ExportTamperError = PermissionDeniedUserError | OtherUserError
|
|
1579
1657
|
|
|
1580
1658
|
input ExportTamperInput {
|
|
@@ -1592,7 +1670,8 @@ input FilterClauseFindingInput {
|
|
|
1592
1670
|
|
|
1593
1671
|
type FilterPreset {
|
|
1594
1672
|
alias: Alias!
|
|
1595
|
-
clause:
|
|
1673
|
+
clause: Query!
|
|
1674
|
+
global: Boolean!
|
|
1596
1675
|
id: ID!
|
|
1597
1676
|
name: String!
|
|
1598
1677
|
}
|
|
@@ -1683,7 +1762,7 @@ type FinishedBackupTaskError {
|
|
|
1683
1762
|
}
|
|
1684
1763
|
|
|
1685
1764
|
union FinishedBackupTaskPayload =
|
|
1686
|
-
|
|
1765
|
+
| FinishedBackupTaskSuccess
|
|
1687
1766
|
| FinishedBackupTaskError
|
|
1688
1767
|
| FinishedBackupTaskCancelled
|
|
1689
1768
|
|
|
@@ -1706,7 +1785,7 @@ type FinishedRestoreBackupTaskError {
|
|
|
1706
1785
|
}
|
|
1707
1786
|
|
|
1708
1787
|
union FinishedRestoreBackupTaskPayload =
|
|
1709
|
-
|
|
1788
|
+
| FinishedRestoreBackupTaskSuccess
|
|
1710
1789
|
| FinishedRestoreBackupTaskError
|
|
1711
1790
|
| FinishedRestoreBackupTaskCancelled
|
|
1712
1791
|
|
|
@@ -1755,7 +1834,7 @@ type GlobalConfigProject {
|
|
|
1755
1834
|
}
|
|
1756
1835
|
|
|
1757
1836
|
union GlobalizeWorkflowError =
|
|
1758
|
-
|
|
1837
|
+
| UnknownIdUserError
|
|
1759
1838
|
| ReadOnlyUserError
|
|
1760
1839
|
| WorkflowUserError
|
|
1761
1840
|
| OtherUserError
|
|
@@ -1778,7 +1857,17 @@ type GuestUser {
|
|
|
1778
1857
|
settings: UserSettings
|
|
1779
1858
|
}
|
|
1780
1859
|
|
|
1781
|
-
|
|
1860
|
+
type HTTPQL {
|
|
1861
|
+
code: String!
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
input HTTPQLInput {
|
|
1865
|
+
code: String!
|
|
1866
|
+
}
|
|
1867
|
+
|
|
1868
|
+
type HiddenStreamWsMessage {
|
|
1869
|
+
hiddenId: ID!
|
|
1870
|
+
}
|
|
1782
1871
|
|
|
1783
1872
|
input HideFindingsInput @oneOf {
|
|
1784
1873
|
ids: [ID!]
|
|
@@ -1829,21 +1918,14 @@ input ImportTamperRuleInput {
|
|
|
1829
1918
|
file: Upload!
|
|
1830
1919
|
}
|
|
1831
1920
|
|
|
1832
|
-
union InstallBrowserError =
|
|
1833
|
-
UnsupportedPlatformUserError
|
|
1834
|
-
| CloudUserError
|
|
1835
|
-
| OtherUserError
|
|
1921
|
+
union InstallBrowserError = UnsupportedPlatformUserError | CloudUserError | OtherUserError
|
|
1836
1922
|
|
|
1837
1923
|
type InstallBrowserPayload {
|
|
1838
1924
|
browser: Browser
|
|
1839
1925
|
error: InstallBrowserError
|
|
1840
1926
|
}
|
|
1841
1927
|
|
|
1842
|
-
union InstallPluginPackageError =
|
|
1843
|
-
PluginUserError
|
|
1844
|
-
| StoreUserError
|
|
1845
|
-
| CloudUserError
|
|
1846
|
-
| OtherUserError
|
|
1928
|
+
union InstallPluginPackageError = PluginUserError | StoreUserError | CloudUserError | OtherUserError
|
|
1847
1929
|
|
|
1848
1930
|
input InstallPluginPackageInput {
|
|
1849
1931
|
force: Boolean
|
|
@@ -1858,6 +1940,7 @@ type InstallPluginPackagePayload {
|
|
|
1858
1940
|
type InstanceSettings {
|
|
1859
1941
|
aiProviders: AIProviders!
|
|
1860
1942
|
analytic: AnalyticStatus!
|
|
1943
|
+
network: NetworkState!
|
|
1861
1944
|
onboarding: OnboardingState!
|
|
1862
1945
|
}
|
|
1863
1946
|
|
|
@@ -1982,12 +2065,12 @@ type InterceptRequestMessage implements InterceptMessage {
|
|
|
1982
2065
|
|
|
1983
2066
|
type InterceptRequestOptions {
|
|
1984
2067
|
enabled: Boolean!
|
|
1985
|
-
filter:
|
|
2068
|
+
filter: Query
|
|
1986
2069
|
}
|
|
1987
2070
|
|
|
1988
2071
|
input InterceptRequestOptionsInput {
|
|
1989
2072
|
enabled: Boolean!
|
|
1990
|
-
filter:
|
|
2073
|
+
filter: QueryInput
|
|
1991
2074
|
}
|
|
1992
2075
|
|
|
1993
2076
|
type InterceptResponseMessage implements InterceptMessage {
|
|
@@ -1998,12 +2081,12 @@ type InterceptResponseMessage implements InterceptMessage {
|
|
|
1998
2081
|
|
|
1999
2082
|
type InterceptResponseOptions {
|
|
2000
2083
|
enabled: Boolean!
|
|
2001
|
-
filter:
|
|
2084
|
+
filter: Query
|
|
2002
2085
|
}
|
|
2003
2086
|
|
|
2004
2087
|
input InterceptResponseOptionsInput {
|
|
2005
2088
|
enabled: Boolean!
|
|
2006
|
-
filter:
|
|
2089
|
+
filter: QueryInput
|
|
2007
2090
|
}
|
|
2008
2091
|
|
|
2009
2092
|
type InterceptScopeOptions {
|
|
@@ -2047,11 +2130,21 @@ type InvalidHTTPQLUserError implements UserError {
|
|
|
2047
2130
|
query: String!
|
|
2048
2131
|
}
|
|
2049
2132
|
|
|
2133
|
+
type InvalidRangeUserError implements UserError {
|
|
2134
|
+
code: String!
|
|
2135
|
+
range: Range!
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2050
2138
|
type InvalidRegexUserError implements UserError {
|
|
2051
2139
|
code: String!
|
|
2052
2140
|
term: String!
|
|
2053
2141
|
}
|
|
2054
2142
|
|
|
2143
|
+
type InvalidStreamQLUserError implements UserError {
|
|
2144
|
+
code: String!
|
|
2145
|
+
query: String!
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2055
2148
|
"""
|
|
2056
2149
|
A scalar that can represent any JSON value.
|
|
2057
2150
|
"""
|
|
@@ -2062,7 +2155,7 @@ scalar JsonObject
|
|
|
2062
2155
|
scalar JsonRaw
|
|
2063
2156
|
|
|
2064
2157
|
union LocalizeWorkflowError =
|
|
2065
|
-
|
|
2158
|
+
| UnknownIdUserError
|
|
2066
2159
|
| ReadOnlyUserError
|
|
2067
2160
|
| WorkflowUserError
|
|
2068
2161
|
| OtherUserError
|
|
@@ -2107,47 +2200,31 @@ type MutationRoot {
|
|
|
2107
2200
|
cancelBackupTask(id: ID!): CancelBackupTaskPayload!
|
|
2108
2201
|
cancelRestoreBackupTask(id: ID!): CancelRestoreBackupTaskPayload!
|
|
2109
2202
|
cancelTask(id: ID!): CancelTaskPayload!
|
|
2203
|
+
clearReplayEntryDraft(id: ID!, kind: ReplaySessionKind!): ClearReplayEntryDraftPayload!
|
|
2110
2204
|
clearSitemapEntries: ClearSitemapEntriesPayload!
|
|
2111
|
-
createAssistantSession(
|
|
2112
|
-
|
|
2113
|
-
): CreateAssistantSessionPayload! @cloud
|
|
2114
|
-
createAutomateSession(
|
|
2115
|
-
input: CreateAutomateSessionInput!
|
|
2116
|
-
): CreateAutomateSessionPayload!
|
|
2205
|
+
createAssistantSession(input: CreateAssistantSessionInput!): CreateAssistantSessionPayload! @cloud
|
|
2206
|
+
createAutomateSession(input: CreateAutomateSessionInput!): CreateAutomateSessionPayload!
|
|
2117
2207
|
createBackup(projectId: ID!): CreateBackupPayload!
|
|
2118
2208
|
createDnsRewrite(input: CreateDNSRewriteInput!): CreateDNSRewritePayload!
|
|
2119
2209
|
createDnsUpstream(input: CreateDNSUpstreamInput!): CreateDNSUpstreamPayload!
|
|
2120
|
-
createEnvironment(input: CreateEnvironmentInput!): CreateEnvironmentPayload!
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
input: CreateFilterPresetInput!
|
|
2124
|
-
): CreateFilterPresetPayload! @cloud
|
|
2125
|
-
createFinding(
|
|
2126
|
-
requestId: ID!
|
|
2127
|
-
input: CreateFindingInput!
|
|
2128
|
-
): CreateFindingPayload!
|
|
2210
|
+
createEnvironment(input: CreateEnvironmentInput!): CreateEnvironmentPayload! @cloud
|
|
2211
|
+
createFilterPreset(input: CreateFilterPresetInput!): CreateFilterPresetPayload! @cloud
|
|
2212
|
+
createFinding(requestId: ID!, input: CreateFindingInput!): CreateFindingPayload!
|
|
2129
2213
|
createProject(input: CreateProjectInput!): CreateProjectPayload! @cloud
|
|
2130
|
-
createReplaySession(
|
|
2131
|
-
input: CreateReplaySessionInput!
|
|
2132
|
-
): CreateReplaySessionPayload!
|
|
2214
|
+
createReplaySession(input: CreateReplaySessionInput!): CreateReplaySessionPayload!
|
|
2133
2215
|
createReplaySessionCollection(
|
|
2134
2216
|
input: CreateReplaySessionCollectionInput!
|
|
2135
2217
|
): CreateReplaySessionCollectionPayload!
|
|
2218
|
+
createRequest(input: CreateRequestInput!): CreateRequestPayload!
|
|
2136
2219
|
createScope(input: CreateScopeInput!): CreateScopePayload!
|
|
2137
2220
|
createSitemapEntries(requestId: ID!): CreateSitemapEntriesPayload!
|
|
2138
2221
|
createTamperRule(input: CreateTamperRuleInput!): CreateTamperRulePayload!
|
|
2139
2222
|
createTamperRuleCollection(
|
|
2140
2223
|
input: CreateTamperRuleCollectionInput!
|
|
2141
2224
|
): CreateTamperRuleCollectionPayload!
|
|
2142
|
-
createUpstreamPlugin(
|
|
2143
|
-
|
|
2144
|
-
):
|
|
2145
|
-
createUpstreamProxyHttp(
|
|
2146
|
-
input: CreateUpstreamProxyHttpInput!
|
|
2147
|
-
): CreateUpstreamProxyHttpPayload!
|
|
2148
|
-
createUpstreamProxySocks(
|
|
2149
|
-
input: CreateUpstreamProxySocksInput!
|
|
2150
|
-
): CreateUpstreamProxySocksPayload!
|
|
2225
|
+
createUpstreamPlugin(input: CreateUpstreamPluginInput!): CreateUpstreamPluginPayload!
|
|
2226
|
+
createUpstreamProxyHttp(input: CreateUpstreamProxyHttpInput!): CreateUpstreamProxyHttpPayload!
|
|
2227
|
+
createUpstreamProxySocks(input: CreateUpstreamProxySocksInput!): CreateUpstreamProxySocksPayload!
|
|
2151
2228
|
createWorkflow(input: CreateWorkflowInput!): CreateWorkflowPayload! @cloud
|
|
2152
2229
|
deleteAssistantSession(id: ID!): DeleteAssistantSessionPayload!
|
|
2153
2230
|
deleteAutomateEntries(ids: [ID!]!): DeleteAutomateEntriesPayload!
|
|
@@ -2161,10 +2238,7 @@ type MutationRoot {
|
|
|
2161
2238
|
deleteFilterPreset(id: ID!): DeleteFilterPresetPayload!
|
|
2162
2239
|
deleteFindings(input: DeleteFindingsInput): DeleteFindingsPayload!
|
|
2163
2240
|
deleteHostedFile(id: ID!): DeleteHostedFilePayload!
|
|
2164
|
-
deleteInterceptEntries(
|
|
2165
|
-
filter: HTTPQL
|
|
2166
|
-
scopeId: ID
|
|
2167
|
-
): DeleteInterceptEntriesPayload!
|
|
2241
|
+
deleteInterceptEntries(filter: HTTPQLInput, scopeId: ID): DeleteInterceptEntriesPayload!
|
|
2168
2242
|
deleteInterceptEntry(id: ID!): DeleteInterceptEntryPayload!
|
|
2169
2243
|
deleteProject(id: ID!): DeleteProjectPayload!
|
|
2170
2244
|
deleteReplaySessionCollection(id: ID!): DeleteReplaySessionCollectionPayload!
|
|
@@ -2180,6 +2254,7 @@ type MutationRoot {
|
|
|
2180
2254
|
dropInterceptMessage(id: ID!): DropInterceptMessagePayload!
|
|
2181
2255
|
duplicateAutomateSession(id: ID!): DuplicateAutomateSessionPayload!
|
|
2182
2256
|
exportFindings(input: ExportFindingsInput!): ExportFindingsPayload!
|
|
2257
|
+
exportSitemapEntries(input: ExportSitemapEntriesInput!): ExportSitemapEntriesPayload! @cloud
|
|
2183
2258
|
exportTamper(input: ExportTamperInput!): ExportTamperPayload! @cloud
|
|
2184
2259
|
forwardInterceptMessage(
|
|
2185
2260
|
id: ID!
|
|
@@ -2190,9 +2265,7 @@ type MutationRoot {
|
|
|
2190
2265
|
importCertificate(input: ImportCertificateInput!): ImportCertificatePayload!
|
|
2191
2266
|
importData(input: ImportDataInput!): DataImportResult! @cloud
|
|
2192
2267
|
installBrowser: InstallBrowserPayload! @cloud
|
|
2193
|
-
installPluginPackage(
|
|
2194
|
-
input: InstallPluginPackageInput!
|
|
2195
|
-
): InstallPluginPackagePayload! @cloud
|
|
2268
|
+
installPluginPackage(input: InstallPluginPackageInput!): InstallPluginPackagePayload! @cloud
|
|
2196
2269
|
localizeWorkflow(id: ID!): LocalizeWorkflowPayload!
|
|
2197
2270
|
loginAsGuest: GuestAuthenticationPayload! @cloud
|
|
2198
2271
|
logout: LogoutPayload! @cloud
|
|
@@ -2202,19 +2275,13 @@ type MutationRoot {
|
|
|
2202
2275
|
pauseIntercept: PauseInterceptPayload!
|
|
2203
2276
|
persistProject(id: ID!): PersistProjectPayload!
|
|
2204
2277
|
rankDnsRewrite(id: ID!, input: RankInput!): RankDNSRewritePayload!
|
|
2278
|
+
rankReplaySession(id: ID!, input: RankInput!): RankReplaySessionPayload!
|
|
2279
|
+
rankReplaySessionCollection(id: ID!, input: RankInput!): RankReplaySessionCollectionPayload!
|
|
2205
2280
|
rankTamperRule(id: ID!, input: RankTamperRuleInput!): RankTamperRulePayload!
|
|
2206
2281
|
rankUpstreamPlugin(id: ID!, input: RankInput!): RankUpstreamPluginPayload!
|
|
2207
|
-
rankUpstreamProxyHttp(
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
): RankUpstreamProxyHttpPayload!
|
|
2211
|
-
rankUpstreamProxySocks(
|
|
2212
|
-
id: ID!
|
|
2213
|
-
input: RankInput!
|
|
2214
|
-
): RankUpstreamProxySocksPayload!
|
|
2215
|
-
refreshAuthenticationToken(
|
|
2216
|
-
refreshToken: Token!
|
|
2217
|
-
): RefreshAuthenticationTokenPayload! @cloud
|
|
2282
|
+
rankUpstreamProxyHttp(id: ID!, input: RankInput!): RankUpstreamProxyHttpPayload!
|
|
2283
|
+
rankUpstreamProxySocks(id: ID!, input: RankInput!): RankUpstreamProxySocksPayload!
|
|
2284
|
+
refreshAuthenticationToken(refreshToken: Token!): RefreshAuthenticationTokenPayload! @cloud
|
|
2218
2285
|
regenerateCertificate: RegenerateCertificatePayload!
|
|
2219
2286
|
renameAssistantSession(id: ID!, name: String!): RenameAssistantSessionPayload!
|
|
2220
2287
|
renameAutomateEntry(id: ID!, name: String!): RenameAutomateEntryPayload!
|
|
@@ -2224,127 +2291,79 @@ type MutationRoot {
|
|
|
2224
2291
|
renameHostedFile(id: ID!, name: String!): RenameHostedFilePayload!
|
|
2225
2292
|
renameProject(id: ID!, name: String!): RenameProjectPayload!
|
|
2226
2293
|
renameReplaySession(id: ID!, name: String!): RenameReplaySessionPayload!
|
|
2227
|
-
renameReplaySessionCollection(
|
|
2228
|
-
id: ID!
|
|
2229
|
-
name: String!
|
|
2230
|
-
): RenameReplaySessionCollectionPayload!
|
|
2294
|
+
renameReplaySessionCollection(id: ID!, name: String!): RenameReplaySessionCollectionPayload!
|
|
2231
2295
|
renameScope(id: ID!, name: String!): RenameScopePayload!
|
|
2232
2296
|
renameTamperRule(id: ID!, name: String!): RenameTamperRulePayload!
|
|
2233
|
-
renameTamperRuleCollection(
|
|
2234
|
-
id: ID!
|
|
2235
|
-
name: String!
|
|
2236
|
-
): RenameTamperRuleCollectionPayload!
|
|
2297
|
+
renameTamperRuleCollection(id: ID!, name: String!): RenameTamperRuleCollectionPayload!
|
|
2237
2298
|
renameWorkflow(id: ID!, name: String!): RenameWorkflowPayload!
|
|
2238
2299
|
renderRequest(id: ID!, input: RenderRequestInput!): RenderRequestPayload!
|
|
2239
2300
|
restoreBackup(input: RestoreBackupInput!): RestoreBackupPayload! @cloud
|
|
2240
2301
|
resumeAutomateTask(id: ID!): ResumeAutomateTaskPayload!
|
|
2241
2302
|
resumeIntercept: ResumeInterceptPayload!
|
|
2242
|
-
runActiveWorkflow(
|
|
2243
|
-
id: ID!
|
|
2244
|
-
input: RunActiveWorkflowInput!
|
|
2245
|
-
): RunActiveWorkflowPayload!
|
|
2303
|
+
runActiveWorkflow(id: ID!, input: RunActiveWorkflowInput!): RunActiveWorkflowPayload!
|
|
2246
2304
|
runConvertWorkflow(id: ID!, input: Blob!): RunConvertWorkflowPayload!
|
|
2247
2305
|
selectEnvironment(id: ID): SelectEnvironmentPayload!
|
|
2248
2306
|
selectProject(id: ID!): SelectProjectPayload! @cloud
|
|
2249
|
-
sendAssistantMessage(
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
): SetActiveReplaySessionEntryPayload!
|
|
2307
|
+
sendAssistantMessage(sessionId: ID!, message: String): SendAssistantMessagePayload! @cloud
|
|
2308
|
+
sendReplayTaskMessage(
|
|
2309
|
+
task: ID!
|
|
2310
|
+
input: SendReplayTaskMessageInput!
|
|
2311
|
+
): SendReplayTaskMessagePayload!
|
|
2312
|
+
sendReplayTaskMessageDraft(task: ID!): SendReplayTaskMessagePayload!
|
|
2313
|
+
setActiveReplaySessionEntry(id: ID!, entryId: ID!): SetActiveReplaySessionEntryPayload!
|
|
2257
2314
|
@deprecated(reason: "Remove usage, no replacement")
|
|
2258
2315
|
setGlobalConfigPort(input: Int!): SetConfigPortPayload!
|
|
2259
|
-
setGlobalConfigProject(
|
|
2260
|
-
|
|
2261
|
-
):
|
|
2262
|
-
setInstanceSettings(
|
|
2263
|
-
input: SetInstanceSettingsInput!
|
|
2264
|
-
): SetInstanceSettingsPayload!
|
|
2265
|
-
setInterceptOptions(
|
|
2266
|
-
input: InterceptOptionsInput!
|
|
2267
|
-
): SetInterceptOptionsPayload!
|
|
2316
|
+
setGlobalConfigProject(input: SetConfigProjectInput!): SetConfigProjectPayload!
|
|
2317
|
+
setInstanceSettings(input: SetInstanceSettingsInput!): SetInstanceSettingsPayload!
|
|
2318
|
+
setInterceptOptions(input: InterceptOptionsInput!): SetInterceptOptionsPayload!
|
|
2268
2319
|
setPluginData(id: ID!, data: JSON!): SetPluginDataPayload!
|
|
2269
|
-
setProjectConfigStream(
|
|
2270
|
-
input: ProjectConfigStreamInput!
|
|
2271
|
-
): SetProjectConfigStreamPayload!
|
|
2320
|
+
setProjectConfigStream(input: ProjectConfigStreamInput!): SetProjectConfigStreamPayload!
|
|
2272
2321
|
startAuthenticationFlow: StartAuthenticationFlowPayload! @cloud
|
|
2273
2322
|
startAutomateTask(automateSessionId: ID!): StartAutomateTaskPayload!
|
|
2274
|
-
|
|
2275
|
-
input:
|
|
2276
|
-
):
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
):
|
|
2323
|
+
startDeleteStreamWsMessageTask(
|
|
2324
|
+
input: StartDeleteStreamWsMessageTaskInput!
|
|
2325
|
+
): StartDeleteStreamWsMessageTaskPayload!
|
|
2326
|
+
startExportRequestsTask(input: StartExportRequestsTaskInput!): StartExportRequestsTaskPayload!
|
|
2327
|
+
@cloud
|
|
2328
|
+
startReplayTask(sessionId: ID!): StartReplayTaskPayload! @cloud
|
|
2329
|
+
stopReplayWsTasks(taskIds: [ID!]!): StopReplayWsTaskPayload!
|
|
2281
2330
|
testAiProvider(input: TestAIProviderInput!): TestAIProviderPayload! @cloud
|
|
2331
|
+
testExtractor(input: TestExtractorInput!): TestExtractorPayload!
|
|
2282
2332
|
testTamperRule(input: TestTamperRuleInput!): TestTamperRulePayload!
|
|
2283
|
-
testUpstreamProxyHttp(
|
|
2284
|
-
|
|
2285
|
-
):
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
): TestUpstreamProxySocksPayload!
|
|
2289
|
-
testWorkflowActive(
|
|
2290
|
-
input: TestWorkflowActiveInput!
|
|
2291
|
-
): TestWorkflowActivePayload!
|
|
2292
|
-
testWorkflowConvert(
|
|
2293
|
-
input: TestWorkflowConvertInput!
|
|
2294
|
-
): TestWorkflowConvertPayload!
|
|
2295
|
-
testWorkflowPassive(
|
|
2296
|
-
input: TestWorkflowPassiveInput!
|
|
2297
|
-
): TestWorkflowPassivePayload!
|
|
2333
|
+
testUpstreamProxyHttp(input: TestUpstreamProxyHttpInput!): TestUpstreamProxyHttpPayload!
|
|
2334
|
+
testUpstreamProxySocks(input: TestUpstreamProxySocksInput!): TestUpstreamProxySocksPayload!
|
|
2335
|
+
testWorkflowActive(input: TestWorkflowActiveInput!): TestWorkflowActivePayload!
|
|
2336
|
+
testWorkflowConvert(input: TestWorkflowConvertInput!): TestWorkflowConvertPayload!
|
|
2337
|
+
testWorkflowPassive(input: TestWorkflowPassiveInput!): TestWorkflowPassivePayload!
|
|
2298
2338
|
toggleDnsRewrite(id: ID!, enabled: Boolean!): ToggleDNSRewritePayload!
|
|
2299
2339
|
togglePlugin(id: ID!, enabled: Boolean!): TogglePluginPayload!
|
|
2300
2340
|
toggleTamperRule(id: ID!, enabled: Boolean!): ToggleTamperRulePayload!
|
|
2301
2341
|
toggleUpstreamPlugin(id: ID!, enabled: Boolean!): ToggleUpstreamPluginPayload!
|
|
2302
|
-
toggleUpstreamProxyHttp(
|
|
2303
|
-
|
|
2304
|
-
enabled: Boolean!
|
|
2305
|
-
): ToggleUpstreamProxyHttpPayload!
|
|
2306
|
-
toggleUpstreamProxySocks(
|
|
2307
|
-
id: ID!
|
|
2308
|
-
enabled: Boolean!
|
|
2309
|
-
): ToggleUpstreamProxySocksPayload!
|
|
2342
|
+
toggleUpstreamProxyHttp(id: ID!, enabled: Boolean!): ToggleUpstreamProxyHttpPayload!
|
|
2343
|
+
toggleUpstreamProxySocks(id: ID!, enabled: Boolean!): ToggleUpstreamProxySocksPayload!
|
|
2310
2344
|
toggleWorkflow(id: ID!, enabled: Boolean!): ToggleWorkflowPayload!
|
|
2311
2345
|
track(input: TrackInput!): TrackPayload!
|
|
2312
2346
|
uninstallPluginPackage(id: ID!): UninstallPluginPackagePayload!
|
|
2313
|
-
updateAutomateSession(
|
|
2314
|
-
|
|
2315
|
-
input: UpdateAutomateSessionInput!
|
|
2316
|
-
): UpdateAutomateSessionPayload! @cloud
|
|
2347
|
+
updateAutomateSession(id: ID!, input: UpdateAutomateSessionInput!): UpdateAutomateSessionPayload!
|
|
2348
|
+
@cloud
|
|
2317
2349
|
updateBrowser: UpdateBrowserPayload! @cloud
|
|
2318
|
-
updateDnsRewrite(
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
):
|
|
2322
|
-
updateDnsUpstream(
|
|
2323
|
-
id: ID!
|
|
2324
|
-
input: UpdateDNSUpstreamInput!
|
|
2325
|
-
): UpdateDNSUpstreamPayload!
|
|
2326
|
-
updateEnvironment(
|
|
2327
|
-
id: ID!
|
|
2328
|
-
input: UpdateEnvironmentInput!
|
|
2329
|
-
): UpdateEnvironmentPayload! @cloud
|
|
2330
|
-
updateFilterPreset(
|
|
2331
|
-
id: ID!
|
|
2332
|
-
input: UpdateFilterPresetInput!
|
|
2333
|
-
): UpdateFilterPresetPayload!
|
|
2350
|
+
updateDnsRewrite(id: ID!, input: UpdateDNSRewriteInput!): UpdateDNSRewritePayload!
|
|
2351
|
+
updateDnsUpstream(id: ID!, input: UpdateDNSUpstreamInput!): UpdateDNSUpstreamPayload!
|
|
2352
|
+
updateEnvironment(id: ID!, input: UpdateEnvironmentInput!): UpdateEnvironmentPayload! @cloud
|
|
2353
|
+
updateFilterPreset(id: ID!, input: UpdateFilterPresetInput!): UpdateFilterPresetPayload!
|
|
2334
2354
|
updateFinding(id: ID!, input: UpdateFindingInput!): UpdateFindingPayload!
|
|
2335
|
-
|
|
2336
|
-
id: ID!
|
|
2337
|
-
input: UpdateRequestMetadataInput!
|
|
2338
|
-
): UpdateRequestMetadataPayload!
|
|
2339
|
-
updateScope(id: ID!, input: UpdateScopeInput!): UpdateScopePayload!
|
|
2340
|
-
updateTamperRule(
|
|
2355
|
+
updateReplayEntryDraft(
|
|
2341
2356
|
id: ID!
|
|
2342
|
-
input:
|
|
2343
|
-
):
|
|
2344
|
-
|
|
2357
|
+
input: UpdateReplayEntryDraftInput!
|
|
2358
|
+
): UpdateReplayEntryDraftPayload!
|
|
2359
|
+
updateReplaySessionSettings(
|
|
2345
2360
|
id: ID!
|
|
2346
|
-
input:
|
|
2347
|
-
):
|
|
2361
|
+
input: ReplaySessionSettingsInput!
|
|
2362
|
+
): UpdateReplaySessionSettingsPayload!
|
|
2363
|
+
updateRequestMetadata(id: ID!, input: UpdateRequestMetadataInput!): UpdateRequestMetadataPayload!
|
|
2364
|
+
updateScope(id: ID!, input: UpdateScopeInput!): UpdateScopePayload!
|
|
2365
|
+
updateTamperRule(id: ID!, input: UpdateTamperRuleInput!): UpdateTamperRulePayload!
|
|
2366
|
+
updateUpstreamPlugin(id: ID!, input: UpdateUpstreamPluginInput!): UpdateUpstreamPluginPayload!
|
|
2348
2367
|
updateUpstreamProxyHttp(
|
|
2349
2368
|
id: ID!
|
|
2350
2369
|
input: UpdateUpstreamProxyHttpInput!
|
|
@@ -2353,9 +2372,7 @@ type MutationRoot {
|
|
|
2353
2372
|
id: ID!
|
|
2354
2373
|
input: UpdateUpstreamProxySocksInput!
|
|
2355
2374
|
): UpdateUpstreamProxySocksPayload!
|
|
2356
|
-
updateViewerSettings(
|
|
2357
|
-
input: UpdateViewerSettingsInput!
|
|
2358
|
-
): UpdateViewerSettingsPayload!
|
|
2375
|
+
updateViewerSettings(input: UpdateViewerSettingsInput!): UpdateViewerSettingsPayload!
|
|
2359
2376
|
updateWorkflow(id: ID!, input: UpdateWorkflowInput!): UpdateWorkflowPayload!
|
|
2360
2377
|
uploadHostedFile(input: UploadHostedFileInput!): UploadHostedFilePayload!
|
|
2361
2378
|
}
|
|
@@ -2365,6 +2382,10 @@ type NameTakenUserError implements UserError {
|
|
|
2365
2382
|
name: String!
|
|
2366
2383
|
}
|
|
2367
2384
|
|
|
2385
|
+
type NetworkState {
|
|
2386
|
+
stack: SettingsNetworkStack!
|
|
2387
|
+
}
|
|
2388
|
+
|
|
2368
2389
|
type NewerVersionUserError implements UserError {
|
|
2369
2390
|
code: String!
|
|
2370
2391
|
version: Int!
|
|
@@ -2432,10 +2453,7 @@ type PersistProjectPayload {
|
|
|
2432
2453
|
project: Project
|
|
2433
2454
|
}
|
|
2434
2455
|
|
|
2435
|
-
union PersistProjectPayloadError =
|
|
2436
|
-
PermissionDeniedUserError
|
|
2437
|
-
| UnknownIdUserError
|
|
2438
|
-
| OtherUserError
|
|
2456
|
+
union PersistProjectPayloadError = PermissionDeniedUserError | UnknownIdUserError | OtherUserError
|
|
2439
2457
|
|
|
2440
2458
|
interface Plugin {
|
|
2441
2459
|
enabled: Boolean!
|
|
@@ -2583,6 +2601,13 @@ type ProjectUserError implements UserError {
|
|
|
2583
2601
|
reason: ProjectErrorReason!
|
|
2584
2602
|
}
|
|
2585
2603
|
|
|
2604
|
+
union Query = HTTPQL | StreamQL
|
|
2605
|
+
|
|
2606
|
+
input QueryInput @oneOf {
|
|
2607
|
+
HTTPQL: HTTPQLInput
|
|
2608
|
+
streamQL: StreamQLInput
|
|
2609
|
+
}
|
|
2610
|
+
|
|
2586
2611
|
type QueryRoot {
|
|
2587
2612
|
assistantModels: [AssistantModel!]! @cloud
|
|
2588
2613
|
assistantSession(id: ID!): AssistantSession
|
|
@@ -2590,18 +2615,8 @@ type QueryRoot {
|
|
|
2590
2615
|
authenticationState: AuthenticationState!
|
|
2591
2616
|
automateEntry(id: ID!): AutomateEntry
|
|
2592
2617
|
automateSession(id: ID!): AutomateSession
|
|
2593
|
-
automateSessions(
|
|
2594
|
-
|
|
2595
|
-
before: String
|
|
2596
|
-
first: Int
|
|
2597
|
-
last: Int
|
|
2598
|
-
): AutomateSessionConnection!
|
|
2599
|
-
automateTasks(
|
|
2600
|
-
after: String
|
|
2601
|
-
before: String
|
|
2602
|
-
first: Int
|
|
2603
|
-
last: Int
|
|
2604
|
-
): AutomateTaskConnection!
|
|
2618
|
+
automateSessions(after: String, before: String, first: Int, last: Int): AutomateSessionConnection!
|
|
2619
|
+
automateTasks(after: String, before: String, first: Int, last: Int): AutomateTaskConnection!
|
|
2605
2620
|
backup(id: ID!): Backup
|
|
2606
2621
|
backupTasks: [BackupTask!]!
|
|
2607
2622
|
backups: [Backup!]!
|
|
@@ -2640,21 +2655,21 @@ type QueryRoot {
|
|
|
2640
2655
|
before: String
|
|
2641
2656
|
first: Int
|
|
2642
2657
|
last: Int
|
|
2643
|
-
filter:
|
|
2658
|
+
filter: HTTPQLInput
|
|
2644
2659
|
order: InterceptEntryOrderInput
|
|
2645
2660
|
scopeId: ID
|
|
2646
2661
|
): InterceptEntryConnection!
|
|
2647
2662
|
interceptEntriesByOffset(
|
|
2648
2663
|
limit: Int
|
|
2649
2664
|
offset: Int
|
|
2650
|
-
filter:
|
|
2665
|
+
filter: HTTPQLInput
|
|
2651
2666
|
order: InterceptEntryOrderInput
|
|
2652
2667
|
scopeId: ID
|
|
2653
2668
|
): InterceptEntryConnection!
|
|
2654
2669
|
interceptEntry(id: ID!): InterceptEntry
|
|
2655
2670
|
interceptEntryOffset(
|
|
2656
2671
|
id: ID!
|
|
2657
|
-
filter:
|
|
2672
|
+
filter: HTTPQLInput
|
|
2658
2673
|
order: InterceptEntryOrderInput
|
|
2659
2674
|
scopeId: ID
|
|
2660
2675
|
): InterceptEntryOffset
|
|
@@ -2669,24 +2684,20 @@ type QueryRoot {
|
|
|
2669
2684
|
interceptStatus: InterceptStatus!
|
|
2670
2685
|
pluginPackages: [PluginPackage!]!
|
|
2671
2686
|
projects: [Project!]! @cloud
|
|
2672
|
-
replayEntry(id: ID!): ReplayEntry
|
|
2687
|
+
replayEntry(id: ID!, sessionKind: ReplaySessionKind!): ReplayEntry
|
|
2673
2688
|
replaySession(id: ID!): ReplaySession
|
|
2689
|
+
replaySessionCollection(id: ID!): ReplaySessionCollection
|
|
2674
2690
|
replaySessionCollections(
|
|
2675
2691
|
after: String
|
|
2676
2692
|
before: String
|
|
2677
2693
|
first: Int
|
|
2678
2694
|
last: Int
|
|
2679
2695
|
): ReplaySessionCollectionConnection!
|
|
2680
|
-
replaySessions(
|
|
2681
|
-
after: String
|
|
2682
|
-
before: String
|
|
2683
|
-
first: Int
|
|
2684
|
-
last: Int
|
|
2685
|
-
): ReplaySessionConnection!
|
|
2696
|
+
replaySessions(after: String, before: String, first: Int, last: Int): ReplaySessionConnection!
|
|
2686
2697
|
request(id: ID!): Request
|
|
2687
2698
|
requestOffset(
|
|
2688
2699
|
id: ID!
|
|
2689
|
-
filter:
|
|
2700
|
+
filter: HTTPQLInput
|
|
2690
2701
|
order: RequestResponseOrderInput
|
|
2691
2702
|
scopeId: ID
|
|
2692
2703
|
): RequestOffset
|
|
@@ -2695,14 +2706,14 @@ type QueryRoot {
|
|
|
2695
2706
|
before: String
|
|
2696
2707
|
first: Int
|
|
2697
2708
|
last: Int
|
|
2698
|
-
filter:
|
|
2709
|
+
filter: HTTPQLInput
|
|
2699
2710
|
order: RequestResponseOrderInput
|
|
2700
2711
|
scopeId: ID
|
|
2701
2712
|
): RequestConnection!
|
|
2702
2713
|
requestsByOffset(
|
|
2703
2714
|
limit: Int
|
|
2704
2715
|
offset: Int
|
|
2705
|
-
filter:
|
|
2716
|
+
filter: HTTPQLInput
|
|
2706
2717
|
order: RequestResponseOrderInput
|
|
2707
2718
|
scopeId: ID
|
|
2708
2719
|
): RequestConnection!
|
|
@@ -2711,10 +2722,7 @@ type QueryRoot {
|
|
|
2711
2722
|
runtime: Runtime!
|
|
2712
2723
|
scope(id: ID!): Scope
|
|
2713
2724
|
scopes: [Scope!]!
|
|
2714
|
-
sitemapDescendantEntries(
|
|
2715
|
-
parentId: ID!
|
|
2716
|
-
depth: SitemapDescendantsDepth!
|
|
2717
|
-
): SitemapEntryConnection!
|
|
2725
|
+
sitemapDescendantEntries(parentId: ID!, depth: SitemapDescendantsDepth!): SitemapEntryConnection!
|
|
2718
2726
|
sitemapEntry(id: ID!): SitemapEntry
|
|
2719
2727
|
sitemapRootEntries(scopeId: ID): SitemapEntryConnection!
|
|
2720
2728
|
store: Store!
|
|
@@ -2727,12 +2735,14 @@ type QueryRoot {
|
|
|
2727
2735
|
first: Int
|
|
2728
2736
|
last: Int
|
|
2729
2737
|
order: StreamWsMessageOrderInput
|
|
2738
|
+
filter: StreamQLInput
|
|
2730
2739
|
streamId: ID!
|
|
2731
2740
|
): StreamWsMessageConnection!
|
|
2732
2741
|
streamWsMessagesByOffset(
|
|
2733
2742
|
limit: Int
|
|
2734
2743
|
offset: Int
|
|
2735
2744
|
order: StreamWsMessageOrderInput
|
|
2745
|
+
filter: StreamQLInput
|
|
2736
2746
|
streamId: ID!
|
|
2737
2747
|
): StreamWsMessageConnection!
|
|
2738
2748
|
streams(
|
|
@@ -2740,14 +2750,14 @@ type QueryRoot {
|
|
|
2740
2750
|
before: String
|
|
2741
2751
|
first: Int
|
|
2742
2752
|
last: Int
|
|
2743
|
-
|
|
2753
|
+
filter: StreamQLInput
|
|
2744
2754
|
order: StreamOrderInput
|
|
2745
2755
|
scopeId: ID
|
|
2746
2756
|
): StreamConnection!
|
|
2747
2757
|
streamsByOffset(
|
|
2748
2758
|
limit: Int
|
|
2749
2759
|
offset: Int
|
|
2750
|
-
|
|
2760
|
+
filter: StreamQLInput
|
|
2751
2761
|
order: StreamOrderInput
|
|
2752
2762
|
scopeId: ID
|
|
2753
2763
|
): StreamConnection!
|
|
@@ -2791,6 +2801,20 @@ input RankInput {
|
|
|
2791
2801
|
beforeId: ID
|
|
2792
2802
|
}
|
|
2793
2803
|
|
|
2804
|
+
type RankReplaySessionCollectionPayload {
|
|
2805
|
+
collection: ReplaySessionCollection
|
|
2806
|
+
error: RankSessionCollectionPayloadError
|
|
2807
|
+
}
|
|
2808
|
+
|
|
2809
|
+
type RankReplaySessionPayload {
|
|
2810
|
+
error: RankSessionPayloadError
|
|
2811
|
+
session: ReplaySession
|
|
2812
|
+
}
|
|
2813
|
+
|
|
2814
|
+
union RankSessionCollectionPayloadError = UnknownIdUserError | RankUserError | OtherUserError
|
|
2815
|
+
|
|
2816
|
+
union RankSessionPayloadError = UnknownIdUserError | RankUserError | OtherUserError
|
|
2817
|
+
|
|
2794
2818
|
union RankTamperRuleError = UnknownIdUserError | RankUserError | OtherUserError
|
|
2795
2819
|
|
|
2796
2820
|
input RankTamperRuleInput {
|
|
@@ -2832,7 +2856,7 @@ enum RedirectStrategy {
|
|
|
2832
2856
|
}
|
|
2833
2857
|
|
|
2834
2858
|
union RefreshAuthenticationTokenError =
|
|
2835
|
-
|
|
2859
|
+
| AuthenticationUserError
|
|
2836
2860
|
| CloudUserError
|
|
2837
2861
|
| InternalUserError
|
|
2838
2862
|
| OtherUserError
|
|
@@ -2887,10 +2911,7 @@ type RenameProjectPayload {
|
|
|
2887
2911
|
project: Project
|
|
2888
2912
|
}
|
|
2889
2913
|
|
|
2890
|
-
union RenameProjectPayloadError =
|
|
2891
|
-
NameTakenUserError
|
|
2892
|
-
| UnknownIdUserError
|
|
2893
|
-
| OtherUserError
|
|
2914
|
+
union RenameProjectPayloadError = NameTakenUserError | UnknownIdUserError | OtherUserError
|
|
2894
2915
|
|
|
2895
2916
|
type RenameReplaySessionCollectionPayload {
|
|
2896
2917
|
collection: ReplaySessionCollection
|
|
@@ -2912,10 +2933,7 @@ type RenameTamperRulePayload {
|
|
|
2912
2933
|
rule: TamperRule
|
|
2913
2934
|
}
|
|
2914
2935
|
|
|
2915
|
-
union RenameWorkflowError =
|
|
2916
|
-
UnknownIdUserError
|
|
2917
|
-
| ReadOnlyUserError
|
|
2918
|
-
| OtherUserError
|
|
2936
|
+
union RenameWorkflowError = UnknownIdUserError | ReadOnlyUserError | OtherUserError
|
|
2919
2937
|
|
|
2920
2938
|
type RenameWorkflowPayload {
|
|
2921
2939
|
error: RenameWorkflowError
|
|
@@ -2946,15 +2964,11 @@ type RenderRequestPayload {
|
|
|
2946
2964
|
render: Image
|
|
2947
2965
|
}
|
|
2948
2966
|
|
|
2949
|
-
|
|
2950
|
-
connection: ConnectionInfo!
|
|
2967
|
+
interface ReplayEntry {
|
|
2951
2968
|
createdAt: Timestamp!
|
|
2952
2969
|
error: String
|
|
2953
2970
|
id: ID!
|
|
2954
|
-
raw: Blob!
|
|
2955
|
-
request: Request
|
|
2956
2971
|
session: ReplaySession!
|
|
2957
|
-
settings: ReplayEntrySettings!
|
|
2958
2972
|
}
|
|
2959
2973
|
|
|
2960
2974
|
type ReplayEntryConnection {
|
|
@@ -2988,6 +3002,33 @@ type ReplayEntryEdge {
|
|
|
2988
3002
|
node: ReplayEntry!
|
|
2989
3003
|
}
|
|
2990
3004
|
|
|
3005
|
+
type ReplayEntryHttp implements ReplayEntry {
|
|
3006
|
+
connection: ConnectionInfo!
|
|
3007
|
+
createdAt: Timestamp!
|
|
3008
|
+
draft: ReplayEntryHttpDraft
|
|
3009
|
+
error: String
|
|
3010
|
+
id: ID!
|
|
3011
|
+
raw: Blob!
|
|
3012
|
+
request: Request
|
|
3013
|
+
session: ReplaySession!
|
|
3014
|
+
settings: ReplayEntryHttpSettings!
|
|
3015
|
+
}
|
|
3016
|
+
|
|
3017
|
+
type ReplayEntryHttpDraft {
|
|
3018
|
+
connection: ConnectionInfo!
|
|
3019
|
+
editorState: Blob!
|
|
3020
|
+
raw: Blob!
|
|
3021
|
+
settings: ReplayEntryHttpSettings!
|
|
3022
|
+
}
|
|
3023
|
+
|
|
3024
|
+
type ReplayEntryHttpSettings {
|
|
3025
|
+
placeholders: [ReplayPlaceholder!]!
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
input ReplayEntryHttpSettingsInput {
|
|
3029
|
+
placeholders: [ReplayPlaceholderInput!]!
|
|
3030
|
+
}
|
|
3031
|
+
|
|
2991
3032
|
enum ReplayEntryOrderBy {
|
|
2992
3033
|
ID
|
|
2993
3034
|
}
|
|
@@ -2997,14 +3038,26 @@ input ReplayEntryOrderInput {
|
|
|
2997
3038
|
ordering: Ordering!
|
|
2998
3039
|
}
|
|
2999
3040
|
|
|
3000
|
-
type
|
|
3001
|
-
|
|
3041
|
+
type ReplayEntryWs implements ReplayEntry {
|
|
3042
|
+
createdAt: Timestamp!
|
|
3043
|
+
draft: ReplayEntryWsDraft
|
|
3044
|
+
error: String
|
|
3045
|
+
http: ReplayEntryHttp!
|
|
3046
|
+
id: ID!
|
|
3047
|
+
messages: [StreamWsMessage!]!
|
|
3048
|
+
session: ReplaySession!
|
|
3049
|
+
stream: Stream
|
|
3002
3050
|
}
|
|
3003
3051
|
|
|
3004
|
-
|
|
3005
|
-
|
|
3006
|
-
|
|
3007
|
-
|
|
3052
|
+
type ReplayEntryWsDraft {
|
|
3053
|
+
direction: StreamMessageDirection!
|
|
3054
|
+
editorState: Blob!
|
|
3055
|
+
format: StreamWsMessageFormat!
|
|
3056
|
+
raw: Blob!
|
|
3057
|
+
}
|
|
3058
|
+
|
|
3059
|
+
input ReplayEntryWsSettingsInput {
|
|
3060
|
+
serverTimeoutMs: Int!
|
|
3008
3061
|
}
|
|
3009
3062
|
|
|
3010
3063
|
type ReplayEnvironmentPreprocessor {
|
|
@@ -3044,7 +3097,7 @@ input ReplayPreprocessorInput {
|
|
|
3044
3097
|
}
|
|
3045
3098
|
|
|
3046
3099
|
union ReplayPreprocessorOptions =
|
|
3047
|
-
|
|
3100
|
+
| ReplayPrefixPreprocessor
|
|
3048
3101
|
| ReplaySuffixPreprocessor
|
|
3049
3102
|
| ReplayUrlEncodePreprocessor
|
|
3050
3103
|
| ReplayWorkflowPreprocessor
|
|
@@ -3058,23 +3111,16 @@ input ReplayPreprocessorOptionsInput @oneOf {
|
|
|
3058
3111
|
workflow: ReplayWorkflowPreprocessorInput
|
|
3059
3112
|
}
|
|
3060
3113
|
|
|
3061
|
-
|
|
3062
|
-
activeEntry: ReplayEntry
|
|
3063
|
-
collection: ReplaySessionCollection!
|
|
3064
|
-
entries(
|
|
3065
|
-
after: String
|
|
3066
|
-
before: String
|
|
3067
|
-
first: Int
|
|
3068
|
-
last: Int
|
|
3069
|
-
order: ReplayEntryOrderInput
|
|
3070
|
-
): ReplayEntryConnection!
|
|
3114
|
+
interface ReplaySession {
|
|
3071
3115
|
id: ID!
|
|
3072
3116
|
name: String!
|
|
3117
|
+
rank: Rank!
|
|
3073
3118
|
}
|
|
3074
3119
|
|
|
3075
3120
|
type ReplaySessionCollection {
|
|
3076
3121
|
id: ID!
|
|
3077
3122
|
name: String!
|
|
3123
|
+
rank: Rank!
|
|
3078
3124
|
sessions: [ReplaySession!]!
|
|
3079
3125
|
}
|
|
3080
3126
|
|
|
@@ -3140,6 +3186,56 @@ type ReplaySessionEdge {
|
|
|
3140
3186
|
node: ReplaySession!
|
|
3141
3187
|
}
|
|
3142
3188
|
|
|
3189
|
+
type ReplaySessionHttp implements ReplaySession {
|
|
3190
|
+
activeEntry: ReplayEntry
|
|
3191
|
+
collection: ReplaySessionCollection!
|
|
3192
|
+
entries(
|
|
3193
|
+
after: String
|
|
3194
|
+
before: String
|
|
3195
|
+
first: Int
|
|
3196
|
+
last: Int
|
|
3197
|
+
order: ReplayEntryOrderInput
|
|
3198
|
+
): ReplayEntryConnection!
|
|
3199
|
+
id: ID!
|
|
3200
|
+
name: String!
|
|
3201
|
+
rank: Rank!
|
|
3202
|
+
settings: ReplaySessionHttpSettings
|
|
3203
|
+
}
|
|
3204
|
+
|
|
3205
|
+
type ReplaySessionHttpSettings {
|
|
3206
|
+
connectionClose: Boolean!
|
|
3207
|
+
updateContentLength: Boolean!
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
input ReplaySessionHttpSettingsInput {
|
|
3211
|
+
connectionClose: Boolean!
|
|
3212
|
+
updateContentLength: Boolean!
|
|
3213
|
+
}
|
|
3214
|
+
|
|
3215
|
+
enum ReplaySessionKind {
|
|
3216
|
+
HTTP
|
|
3217
|
+
WS
|
|
3218
|
+
}
|
|
3219
|
+
|
|
3220
|
+
input ReplaySessionSettingsInput @oneOf {
|
|
3221
|
+
http: ReplaySessionHttpSettingsInput
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
type ReplaySessionWs implements ReplaySession {
|
|
3225
|
+
activeEntry: ReplayEntry
|
|
3226
|
+
collection: ReplaySessionCollection!
|
|
3227
|
+
entries(
|
|
3228
|
+
after: String
|
|
3229
|
+
before: String
|
|
3230
|
+
first: Int
|
|
3231
|
+
last: Int
|
|
3232
|
+
order: ReplayEntryOrderInput
|
|
3233
|
+
): ReplayEntryConnection!
|
|
3234
|
+
id: ID!
|
|
3235
|
+
name: String!
|
|
3236
|
+
rank: Rank!
|
|
3237
|
+
}
|
|
3238
|
+
|
|
3143
3239
|
type ReplaySuffixPreprocessor {
|
|
3144
3240
|
value: String!
|
|
3145
3241
|
}
|
|
@@ -3152,6 +3248,7 @@ type ReplayTask implements Task {
|
|
|
3152
3248
|
createdAt: DateTime!
|
|
3153
3249
|
id: ID!
|
|
3154
3250
|
replayEntry: ReplayEntry!
|
|
3251
|
+
sessionKind: ReplaySessionKind!
|
|
3155
3252
|
}
|
|
3156
3253
|
|
|
3157
3254
|
type ReplayUrlEncodePreprocessor {
|
|
@@ -3281,10 +3378,7 @@ input ResponseRawInput {
|
|
|
3281
3378
|
raw: Blob!
|
|
3282
3379
|
}
|
|
3283
3380
|
|
|
3284
|
-
union RestoreBackupError =
|
|
3285
|
-
NameTakenUserError
|
|
3286
|
-
| PermissionDeniedUserError
|
|
3287
|
-
| OtherUserError
|
|
3381
|
+
union RestoreBackupError = NameTakenUserError | PermissionDeniedUserError | OtherUserError
|
|
3288
3382
|
|
|
3289
3383
|
input RestoreBackupInput {
|
|
3290
3384
|
name: String!
|
|
@@ -3302,10 +3396,7 @@ type RestoreBackupTask {
|
|
|
3302
3396
|
project: Project!
|
|
3303
3397
|
}
|
|
3304
3398
|
|
|
3305
|
-
union RestoreBackupTaskError =
|
|
3306
|
-
BackupUserError
|
|
3307
|
-
| InternalUserError
|
|
3308
|
-
| OtherUserError
|
|
3399
|
+
union RestoreBackupTaskError = BackupUserError | InternalUserError | OtherUserError
|
|
3309
3400
|
|
|
3310
3401
|
union ResumeAutomateTaskError = UnknownIdUserError | OtherUserError
|
|
3311
3402
|
|
|
@@ -3318,10 +3409,7 @@ type ResumeInterceptPayload {
|
|
|
3318
3409
|
status: InterceptStatus!
|
|
3319
3410
|
}
|
|
3320
3411
|
|
|
3321
|
-
union RunActiveWorkflowError =
|
|
3322
|
-
UnknownIdUserError
|
|
3323
|
-
| PermissionDeniedUserError
|
|
3324
|
-
| OtherUserError
|
|
3412
|
+
union RunActiveWorkflowError = UnknownIdUserError | PermissionDeniedUserError | OtherUserError
|
|
3325
3413
|
|
|
3326
3414
|
input RunActiveWorkflowInput {
|
|
3327
3415
|
requestId: ID!
|
|
@@ -3332,10 +3420,7 @@ type RunActiveWorkflowPayload {
|
|
|
3332
3420
|
task: WorkflowTask
|
|
3333
3421
|
}
|
|
3334
3422
|
|
|
3335
|
-
union RunConvertWorkflowError =
|
|
3336
|
-
WorkflowUserError
|
|
3337
|
-
| PermissionDeniedUserError
|
|
3338
|
-
| OtherUserError
|
|
3423
|
+
union RunConvertWorkflowError = WorkflowUserError | PermissionDeniedUserError | OtherUserError
|
|
3339
3424
|
|
|
3340
3425
|
type RunConvertWorkflowPayload {
|
|
3341
3426
|
error: RunConvertWorkflowError
|
|
@@ -3390,13 +3475,14 @@ type SelectProjectPayload {
|
|
|
3390
3475
|
error: SelectProjectPayloadError
|
|
3391
3476
|
}
|
|
3392
3477
|
|
|
3393
|
-
union SelectProjectPayloadError =
|
|
3394
|
-
|
|
3395
|
-
|
|
3396
|
-
|
|
3478
|
+
union SelectProjectPayloadError = ProjectUserError | UnknownIdUserError | OtherUserError
|
|
3479
|
+
|
|
3480
|
+
type SelectedProjectPayload {
|
|
3481
|
+
currentProject: CurrentProject
|
|
3482
|
+
}
|
|
3397
3483
|
|
|
3398
3484
|
union SendAssistantMessageError =
|
|
3399
|
-
|
|
3485
|
+
| PermissionDeniedUserError
|
|
3400
3486
|
| TaskInProgressUserError
|
|
3401
3487
|
| CloudUserError
|
|
3402
3488
|
| OtherUserError
|
|
@@ -3406,6 +3492,27 @@ type SendAssistantMessagePayload {
|
|
|
3406
3492
|
task: AssistantMessageTask
|
|
3407
3493
|
}
|
|
3408
3494
|
|
|
3495
|
+
input SendReplayStreamWsMessage {
|
|
3496
|
+
data: Blob!
|
|
3497
|
+
direction: StreamMessageDirection!
|
|
3498
|
+
format: StreamWsMessageFormat!
|
|
3499
|
+
}
|
|
3500
|
+
|
|
3501
|
+
union SendReplayTaskMessageError =
|
|
3502
|
+
| UnknownIdUserError
|
|
3503
|
+
| PermissionDeniedUserError
|
|
3504
|
+
| CloudUserError
|
|
3505
|
+
| OtherUserError
|
|
3506
|
+
|
|
3507
|
+
input SendReplayTaskMessageInput @oneOf {
|
|
3508
|
+
ws: SendReplayStreamWsMessage
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
type SendReplayTaskMessagePayload {
|
|
3512
|
+
error: SendReplayTaskMessageError
|
|
3513
|
+
message: StreamMessage
|
|
3514
|
+
}
|
|
3515
|
+
|
|
3409
3516
|
scalar Sensitive
|
|
3410
3517
|
|
|
3411
3518
|
type SetActiveReplaySessionEntryPayload {
|
|
@@ -3428,6 +3535,7 @@ type SetConfigProjectPayload {
|
|
|
3428
3535
|
input SetInstanceSettingsInput @oneOf {
|
|
3429
3536
|
aiProvider: SettingsAIProviderInput
|
|
3430
3537
|
analytics: SettingsAnalyticInput
|
|
3538
|
+
network: SettingsNetworkInput
|
|
3431
3539
|
onboarding: SettingsOnboardingInput
|
|
3432
3540
|
}
|
|
3433
3541
|
|
|
@@ -3461,6 +3569,15 @@ input SettingsAnalyticInput {
|
|
|
3461
3569
|
enabled: Boolean!
|
|
3462
3570
|
}
|
|
3463
3571
|
|
|
3572
|
+
input SettingsNetworkInput {
|
|
3573
|
+
stack: SettingsNetworkStack!
|
|
3574
|
+
}
|
|
3575
|
+
|
|
3576
|
+
enum SettingsNetworkStack {
|
|
3577
|
+
V1
|
|
3578
|
+
V2
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3464
3581
|
input SettingsOnboardingInput {
|
|
3465
3582
|
analytic: Boolean!
|
|
3466
3583
|
}
|
|
@@ -3546,7 +3663,7 @@ enum Source {
|
|
|
3546
3663
|
}
|
|
3547
3664
|
|
|
3548
3665
|
union StartAuthenticationFlowError =
|
|
3549
|
-
|
|
3666
|
+
| AuthenticationUserError
|
|
3550
3667
|
| CloudUserError
|
|
3551
3668
|
| InternalUserError
|
|
3552
3669
|
| OtherUserError
|
|
@@ -3560,8 +3677,16 @@ type StartAutomateTaskPayload {
|
|
|
3560
3677
|
automateTask: AutomateTask
|
|
3561
3678
|
}
|
|
3562
3679
|
|
|
3680
|
+
input StartDeleteStreamWsMessageTaskInput {
|
|
3681
|
+
ids: [ID!]!
|
|
3682
|
+
}
|
|
3683
|
+
|
|
3684
|
+
type StartDeleteStreamWsMessageTaskPayload {
|
|
3685
|
+
task: DeleteStreamWsMessageTask
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3563
3688
|
input StartExportRequestsTaskInput {
|
|
3564
|
-
filter:
|
|
3689
|
+
filter: HTTPQLInput
|
|
3565
3690
|
format: DataExportFormat!
|
|
3566
3691
|
includeRaw: Boolean!
|
|
3567
3692
|
scopeId: ID
|
|
@@ -3572,22 +3697,15 @@ type StartExportRequestsTaskPayload {
|
|
|
3572
3697
|
task: DataExportTask
|
|
3573
3698
|
}
|
|
3574
3699
|
|
|
3575
|
-
union StartExportRequestsTaskPayloadError =
|
|
3576
|
-
PermissionDeniedUserError
|
|
3577
|
-
| OtherUserError
|
|
3700
|
+
union StartExportRequestsTaskPayloadError = PermissionDeniedUserError | OtherUserError
|
|
3578
3701
|
|
|
3579
3702
|
union StartReplayTaskError =
|
|
3580
|
-
|
|
3703
|
+
| UnknownIdUserError
|
|
3704
|
+
| TaskInProgressUserError
|
|
3581
3705
|
| PermissionDeniedUserError
|
|
3582
3706
|
| CloudUserError
|
|
3583
3707
|
| OtherUserError
|
|
3584
3708
|
|
|
3585
|
-
input StartReplayTaskInput {
|
|
3586
|
-
connection: ConnectionInfoInput!
|
|
3587
|
-
raw: Blob!
|
|
3588
|
-
settings: ReplayEntrySettingsInput!
|
|
3589
|
-
}
|
|
3590
|
-
|
|
3591
3709
|
type StartReplayTaskPayload {
|
|
3592
3710
|
error: StartReplayTaskError
|
|
3593
3711
|
task: ReplayTask
|
|
@@ -3609,6 +3727,12 @@ type StartedTaskPayload {
|
|
|
3609
3727
|
task: Task!
|
|
3610
3728
|
}
|
|
3611
3729
|
|
|
3730
|
+
type StopReplayWsTaskPayload {
|
|
3731
|
+
error: StopReplayWsTaskPayloadError
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
union StopReplayWsTaskPayloadError = UnknownIdUserError | OtherUserError
|
|
3735
|
+
|
|
3612
3736
|
type Store {
|
|
3613
3737
|
pluginPackages: [StorePluginPackage!]! @cloud
|
|
3614
3738
|
}
|
|
@@ -3693,6 +3817,8 @@ type StreamEdge {
|
|
|
3693
3817
|
node: Stream!
|
|
3694
3818
|
}
|
|
3695
3819
|
|
|
3820
|
+
union StreamMessage = StreamWsMessage
|
|
3821
|
+
|
|
3696
3822
|
enum StreamMessageDirection {
|
|
3697
3823
|
CLIENT
|
|
3698
3824
|
SERVER
|
|
@@ -3712,6 +3838,14 @@ enum StreamProtocol {
|
|
|
3712
3838
|
WS
|
|
3713
3839
|
}
|
|
3714
3840
|
|
|
3841
|
+
type StreamQL {
|
|
3842
|
+
code: String!
|
|
3843
|
+
}
|
|
3844
|
+
|
|
3845
|
+
input StreamQLInput {
|
|
3846
|
+
code: String!
|
|
3847
|
+
}
|
|
3848
|
+
|
|
3715
3849
|
type StreamWsMessage {
|
|
3716
3850
|
edits: [StreamWsMessageEditRef!]!
|
|
3717
3851
|
head: StreamWsMessageEdit!
|
|
@@ -3767,6 +3901,9 @@ type StreamWsMessageEditRef {
|
|
|
3767
3901
|
|
|
3768
3902
|
enum StreamWsMessageFormat {
|
|
3769
3903
|
BINARY
|
|
3904
|
+
CLOSE
|
|
3905
|
+
PING
|
|
3906
|
+
PONG
|
|
3770
3907
|
TEXT
|
|
3771
3908
|
}
|
|
3772
3909
|
|
|
@@ -3785,9 +3922,7 @@ type SubscriptionRoot {
|
|
|
3785
3922
|
createdAssistantSession: CreatedAssistantSessionPayload!
|
|
3786
3923
|
createdAuthenticationToken(requestId: ID!): CreatedAuthenticationTokenPayload!
|
|
3787
3924
|
createdAutomateEntry: CreatedAutomateEntryPayload!
|
|
3788
|
-
createdAutomateEntryRequest(
|
|
3789
|
-
filter: HTTPQL
|
|
3790
|
-
): CreatedAutomateEntryRequestPayload!
|
|
3925
|
+
createdAutomateEntryRequest(filter: HTTPQLInput): CreatedAutomateEntryRequestPayload!
|
|
3791
3926
|
createdAutomateSession: CreatedAutomateSessionPayload!
|
|
3792
3927
|
createdAutomateTask: CreatedAutomateTaskPayload!
|
|
3793
3928
|
createdBackup: CreatedBackupPayload!
|
|
@@ -3797,10 +3932,7 @@ type SubscriptionRoot {
|
|
|
3797
3932
|
createdEnvironment: CreatedEnvironmentPayload!
|
|
3798
3933
|
createdFilterPreset: CreatedFilterPresetPayload!
|
|
3799
3934
|
createdFinding: CreatedFindingPayload!
|
|
3800
|
-
createdInterceptEntry(
|
|
3801
|
-
filter: HTTPQL
|
|
3802
|
-
scopeId: ID
|
|
3803
|
-
): CreatedInterceptEntryPayload!
|
|
3935
|
+
createdInterceptEntry(filter: HTTPQLInput, scopeId: ID): CreatedInterceptEntryPayload!
|
|
3804
3936
|
createdInterceptMessage: CreatedInterceptMessagePayload!
|
|
3805
3937
|
createdLogLines(duration: Duration!): CreatedLogLinesPayload!
|
|
3806
3938
|
createdPluginEvent: CreatedPluginEventPayload!
|
|
@@ -3808,11 +3940,11 @@ type SubscriptionRoot {
|
|
|
3808
3940
|
createdProject: CreatedProjectPayload!
|
|
3809
3941
|
createdReplaySession: CreatedReplaySessionPayload!
|
|
3810
3942
|
createdReplaySessionCollection: CreatedReplaySessionCollectionPayload!
|
|
3811
|
-
createdRequest(filter:
|
|
3943
|
+
createdRequest(filter: HTTPQLInput, scopeId: ID): CreatedRequestPayload!
|
|
3812
3944
|
createdScope: CreatedScopePayload!
|
|
3813
3945
|
createdSitemapEntry(scopeId: ID): CreatedSitemapEntryPayload!
|
|
3814
3946
|
createdStream(protocol: StreamProtocol!, scopeId: ID): CreatedStreamPayload!
|
|
3815
|
-
createdStreamWsMessage: CreatedStreamWsMessagePayload!
|
|
3947
|
+
createdStreamWsMessage(filter: StreamQLInput): CreatedStreamWsMessagePayload!
|
|
3816
3948
|
createdTamperRule: CreatedTamperRulePayload!
|
|
3817
3949
|
createdTamperRuleCollection: CreatedTamperRuleCollectionPayload!
|
|
3818
3950
|
createdUpstreamPlugin: CreatedUpstreamPluginPayload!
|
|
@@ -3840,6 +3972,7 @@ type SubscriptionRoot {
|
|
|
3840
3972
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload!
|
|
3841
3973
|
deletedScope: DeletedScopePayload!
|
|
3842
3974
|
deletedSitemapEntry: DeletedSitemapEntriesPayload!
|
|
3975
|
+
deletedStreamWsMessages: DeletedStreamWsMessagesPayload!
|
|
3843
3976
|
deletedTamperRule: DeletedTamperRulePayload!
|
|
3844
3977
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload!
|
|
3845
3978
|
deletedUpstreamPlugin: DeletedUpstreamPluginPayload!
|
|
@@ -3852,6 +3985,7 @@ type SubscriptionRoot {
|
|
|
3852
3985
|
finishedRestoreBackupTask: FinishedRestoreBackupTaskPayload!
|
|
3853
3986
|
finishedTask: FinishedTaskPayload!
|
|
3854
3987
|
installedBrowser: UploadedBrowserPayload!
|
|
3988
|
+
selectedProject: SelectedProjectPayload!
|
|
3855
3989
|
startedBackupTask: StartedBackupTaskPayload!
|
|
3856
3990
|
startedDeleteInterceptEntriesTask: StartedDeleteInterceptEntriesTaskPayload!
|
|
3857
3991
|
startedRestoreBackupTask: StartedRestoreBackupTaskPayload!
|
|
@@ -3874,22 +4008,21 @@ type SubscriptionRoot {
|
|
|
3874
4008
|
updatedFindings: UpdatedFindingsPayload!
|
|
3875
4009
|
updatedHostedFile: UpdatedHostedFilePayload!
|
|
3876
4010
|
updatedInstanceSettings: UpdatedInstanceSettingsPayload!
|
|
3877
|
-
updatedInterceptEntry(
|
|
3878
|
-
filter: HTTPQL
|
|
3879
|
-
scopeId: ID
|
|
3880
|
-
): UpdatedInterceptEntryPayload!
|
|
4011
|
+
updatedInterceptEntry(filter: HTTPQLInput, scopeId: ID): UpdatedInterceptEntryPayload!
|
|
3881
4012
|
updatedInterceptOptions: UpdatedInterceptOptionsPayload!
|
|
3882
4013
|
updatedInterceptStatus: UpdatedInterceptStatusPayload!
|
|
3883
4014
|
updatedPlugin: UpdatedPluginPayload!
|
|
3884
4015
|
updatedPluginPackage: UpdatedPluginPackagePayload!
|
|
3885
4016
|
updatedProject: UpdatedProjectPayload!
|
|
4017
|
+
updatedReplayEntryDraft: UpdatedReplayEntryDraftPayload!
|
|
4018
|
+
updatedReplayEntryWs: UpdatedReplayEntryWsPayload!
|
|
3886
4019
|
updatedReplaySession: UpdatedReplaySessionPayload!
|
|
3887
4020
|
updatedReplaySessionCollection: UpdatedReplaySessionCollectionPayload!
|
|
3888
|
-
updatedRequest(filter:
|
|
4021
|
+
updatedRequest(filter: HTTPQLInput, scopeId: ID): UpdatedRequestPayload!
|
|
3889
4022
|
updatedRequestMetadata: UpdatedRequestMetadataPayload!
|
|
3890
4023
|
updatedScope: UpdatedScopePayload!
|
|
3891
4024
|
updatedSitemapEntry(scopeId: ID): UpdatedSitemapEntryPayload!
|
|
3892
|
-
updatedStreamWsMessage: UpdatedStreamWsMessagePayload!
|
|
4025
|
+
updatedStreamWsMessage(filter: StreamQLInput): UpdatedStreamWsMessagePayload!
|
|
3893
4026
|
updatedTamperRule: UpdatedTamperRulePayload!
|
|
3894
4027
|
updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload!
|
|
3895
4028
|
updatedUpstreamPlugin: UpdatedUpstreamPluginPayload!
|
|
@@ -3923,10 +4056,7 @@ input TamperMatcherNameInput {
|
|
|
3923
4056
|
name: String!
|
|
3924
4057
|
}
|
|
3925
4058
|
|
|
3926
|
-
union TamperMatcherRaw =
|
|
3927
|
-
TamperMatcherValue
|
|
3928
|
-
| TamperMatcherRegex
|
|
3929
|
-
| TamperMatcherFull
|
|
4059
|
+
union TamperMatcherRaw = TamperMatcherValue | TamperMatcherRegex | TamperMatcherFull
|
|
3930
4060
|
|
|
3931
4061
|
input TamperMatcherRawInput @oneOf {
|
|
3932
4062
|
full: TamperMatcherFullInput
|
|
@@ -3999,7 +4129,7 @@ input TamperOperationFirstLineRawInput {
|
|
|
3999
4129
|
}
|
|
4000
4130
|
|
|
4001
4131
|
union TamperOperationHeader =
|
|
4002
|
-
|
|
4132
|
+
| TamperOperationHeaderRaw
|
|
4003
4133
|
| TamperOperationHeaderUpdate
|
|
4004
4134
|
| TamperOperationHeaderAdd
|
|
4005
4135
|
| TamperOperationHeaderRemove
|
|
@@ -4080,7 +4210,7 @@ input TamperOperationPathRawInput {
|
|
|
4080
4210
|
}
|
|
4081
4211
|
|
|
4082
4212
|
union TamperOperationQuery =
|
|
4083
|
-
|
|
4213
|
+
| TamperOperationQueryRaw
|
|
4084
4214
|
| TamperOperationQueryUpdate
|
|
4085
4215
|
| TamperOperationQueryAdd
|
|
4086
4216
|
| TamperOperationQueryRemove
|
|
@@ -4158,6 +4288,22 @@ input TamperOperationStatusCodeUpdateInput {
|
|
|
4158
4288
|
replacer: TamperReplacerInput!
|
|
4159
4289
|
}
|
|
4160
4290
|
|
|
4291
|
+
union TamperOperationStreamWsMessage = TamperOperationStreamWsMessageRaw
|
|
4292
|
+
|
|
4293
|
+
input TamperOperationStreamWsMessageInput @oneOf {
|
|
4294
|
+
raw: TamperOperationStreamWsMessageRawInput
|
|
4295
|
+
}
|
|
4296
|
+
|
|
4297
|
+
type TamperOperationStreamWsMessageRaw {
|
|
4298
|
+
matcher: TamperMatcherRaw!
|
|
4299
|
+
replacer: TamperReplacer!
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
input TamperOperationStreamWsMessageRawInput {
|
|
4303
|
+
matcher: TamperMatcherRawInput!
|
|
4304
|
+
replacer: TamperReplacerInput!
|
|
4305
|
+
}
|
|
4306
|
+
|
|
4161
4307
|
union TamperReplacer = TamperReplacerTerm | TamperReplacerWorkflow
|
|
4162
4308
|
|
|
4163
4309
|
input TamperReplacerInput @oneOf {
|
|
@@ -4183,7 +4329,7 @@ input TamperReplacerWorkflowInput {
|
|
|
4183
4329
|
|
|
4184
4330
|
type TamperRule {
|
|
4185
4331
|
collection: TamperRuleCollection!
|
|
4186
|
-
condition:
|
|
4332
|
+
condition: Query
|
|
4187
4333
|
enable: TamperRuleEnable
|
|
4188
4334
|
id: ID!
|
|
4189
4335
|
name: String!
|
|
@@ -4216,7 +4362,7 @@ type TamperRuleEnable {
|
|
|
4216
4362
|
}
|
|
4217
4363
|
|
|
4218
4364
|
union TamperSection =
|
|
4219
|
-
|
|
4365
|
+
| TamperSectionRequestMethod
|
|
4220
4366
|
| TamperSectionRequestPath
|
|
4221
4367
|
| TamperSectionRequestQuery
|
|
4222
4368
|
| TamperSectionRequestBody
|
|
@@ -4229,6 +4375,8 @@ union TamperSection =
|
|
|
4229
4375
|
| TamperSectionResponseFirstLine
|
|
4230
4376
|
| TamperSectionResponseHeader
|
|
4231
4377
|
| TamperSectionResponseAll
|
|
4378
|
+
| TamperSectionStreamWsMessageUpstream
|
|
4379
|
+
| TamperSectionStreamWsMessageDownstream
|
|
4232
4380
|
|
|
4233
4381
|
input TamperSectionInput @oneOf {
|
|
4234
4382
|
requestAll: TamperSectionRequestAllInput
|
|
@@ -4244,6 +4392,8 @@ input TamperSectionInput @oneOf {
|
|
|
4244
4392
|
responseFirstLine: TamperSectionResponseFirstLineInput
|
|
4245
4393
|
responseHeader: TamperSectionResponseHeaderInput
|
|
4246
4394
|
responseStatusCode: TamperSectionResponseStatusCodeInput
|
|
4395
|
+
streamWsMessageDownstream: TamperSectionStreamWsMessageInput
|
|
4396
|
+
streamWsMessageUpstream: TamperSectionStreamWsMessageInput
|
|
4247
4397
|
}
|
|
4248
4398
|
|
|
4249
4399
|
type TamperSectionRequestAll {
|
|
@@ -4350,6 +4500,18 @@ input TamperSectionResponseStatusCodeInput {
|
|
|
4350
4500
|
operation: TamperOperationStatusCodeInput!
|
|
4351
4501
|
}
|
|
4352
4502
|
|
|
4503
|
+
type TamperSectionStreamWsMessageDownstream {
|
|
4504
|
+
operation: TamperOperationStreamWsMessage!
|
|
4505
|
+
}
|
|
4506
|
+
|
|
4507
|
+
input TamperSectionStreamWsMessageInput {
|
|
4508
|
+
operation: TamperOperationStreamWsMessageInput!
|
|
4509
|
+
}
|
|
4510
|
+
|
|
4511
|
+
type TamperSectionStreamWsMessageUpstream {
|
|
4512
|
+
operation: TamperOperationStreamWsMessage!
|
|
4513
|
+
}
|
|
4514
|
+
|
|
4353
4515
|
type TamperSummary {
|
|
4354
4516
|
collectionsCreated: Int!
|
|
4355
4517
|
rulesImported: Int!
|
|
@@ -4385,6 +4547,15 @@ type TestAIProviderPayload {
|
|
|
4385
4547
|
success: Boolean
|
|
4386
4548
|
}
|
|
4387
4549
|
|
|
4550
|
+
input TestExtractorInput {
|
|
4551
|
+
extractor: AutomateExtractorInput!
|
|
4552
|
+
testInput: Blob!
|
|
4553
|
+
}
|
|
4554
|
+
|
|
4555
|
+
type TestExtractorPayload {
|
|
4556
|
+
extracts: [Blob!]
|
|
4557
|
+
}
|
|
4558
|
+
|
|
4388
4559
|
union TestTamperRuleError = InvalidRegexUserError | OtherUserError
|
|
4389
4560
|
|
|
4390
4561
|
input TestTamperRuleInput {
|
|
@@ -4416,10 +4587,7 @@ type TestUpstreamProxySocksPayload {
|
|
|
4416
4587
|
success: Boolean
|
|
4417
4588
|
}
|
|
4418
4589
|
|
|
4419
|
-
union TestWorkflowActiveError =
|
|
4420
|
-
WorkflowUserError
|
|
4421
|
-
| PermissionDeniedUserError
|
|
4422
|
-
| OtherUserError
|
|
4590
|
+
union TestWorkflowActiveError = WorkflowUserError | PermissionDeniedUserError | OtherUserError
|
|
4423
4591
|
|
|
4424
4592
|
input TestWorkflowActiveInput {
|
|
4425
4593
|
definition: JsonObject!
|
|
@@ -4432,10 +4600,7 @@ type TestWorkflowActivePayload {
|
|
|
4432
4600
|
runState: JsonObject
|
|
4433
4601
|
}
|
|
4434
4602
|
|
|
4435
|
-
union TestWorkflowConvertError =
|
|
4436
|
-
WorkflowUserError
|
|
4437
|
-
| PermissionDeniedUserError
|
|
4438
|
-
| OtherUserError
|
|
4603
|
+
union TestWorkflowConvertError = WorkflowUserError | PermissionDeniedUserError | OtherUserError
|
|
4439
4604
|
|
|
4440
4605
|
input TestWorkflowConvertInput {
|
|
4441
4606
|
data: Blob!
|
|
@@ -4448,10 +4613,7 @@ type TestWorkflowConvertPayload {
|
|
|
4448
4613
|
runState: JsonObject
|
|
4449
4614
|
}
|
|
4450
4615
|
|
|
4451
|
-
union TestWorkflowPassiveError =
|
|
4452
|
-
WorkflowUserError
|
|
4453
|
-
| PermissionDeniedUserError
|
|
4454
|
-
| OtherUserError
|
|
4616
|
+
union TestWorkflowPassiveError = WorkflowUserError | PermissionDeniedUserError | OtherUserError
|
|
4455
4617
|
|
|
4456
4618
|
input TestWorkflowPassiveInput {
|
|
4457
4619
|
definition: JsonObject!
|
|
@@ -4531,10 +4693,7 @@ type UnsupportedPlatformUserError implements UserError {
|
|
|
4531
4693
|
code: String!
|
|
4532
4694
|
}
|
|
4533
4695
|
|
|
4534
|
-
union UpdateAutomateSessionError =
|
|
4535
|
-
PermissionDeniedUserError
|
|
4536
|
-
| CloudUserError
|
|
4537
|
-
| OtherUserError
|
|
4696
|
+
union UpdateAutomateSessionError = PermissionDeniedUserError | CloudUserError | OtherUserError
|
|
4538
4697
|
|
|
4539
4698
|
input UpdateAutomateSessionInput {
|
|
4540
4699
|
connection: ConnectionInfoInput!
|
|
@@ -4548,7 +4707,7 @@ type UpdateAutomateSessionPayload {
|
|
|
4548
4707
|
}
|
|
4549
4708
|
|
|
4550
4709
|
union UpdateBrowserError =
|
|
4551
|
-
|
|
4710
|
+
| RenderFailedUserError
|
|
4552
4711
|
| UnsupportedPlatformUserError
|
|
4553
4712
|
| CloudUserError
|
|
4554
4713
|
| OtherUserError
|
|
@@ -4581,7 +4740,7 @@ type UpdateDNSUpstreamPayload {
|
|
|
4581
4740
|
}
|
|
4582
4741
|
|
|
4583
4742
|
union UpdateEnvironmentError =
|
|
4584
|
-
|
|
4743
|
+
| UnknownIdUserError
|
|
4585
4744
|
| NameTakenUserError
|
|
4586
4745
|
| NewerVersionUserError
|
|
4587
4746
|
| PermissionDeniedUserError
|
|
@@ -4598,14 +4757,12 @@ type UpdateEnvironmentPayload {
|
|
|
4598
4757
|
error: UpdateEnvironmentError
|
|
4599
4758
|
}
|
|
4600
4759
|
|
|
4601
|
-
union UpdateFilterPresetError =
|
|
4602
|
-
NameTakenUserError
|
|
4603
|
-
| AliasTakenUserError
|
|
4604
|
-
| OtherUserError
|
|
4760
|
+
union UpdateFilterPresetError = NameTakenUserError | AliasTakenUserError | OtherUserError
|
|
4605
4761
|
|
|
4606
4762
|
input UpdateFilterPresetInput {
|
|
4607
4763
|
alias: Alias!
|
|
4608
|
-
clause:
|
|
4764
|
+
clause: QueryInput!
|
|
4765
|
+
global: Boolean!
|
|
4609
4766
|
name: String!
|
|
4610
4767
|
}
|
|
4611
4768
|
|
|
@@ -4627,6 +4784,34 @@ type UpdateFindingPayload {
|
|
|
4627
4784
|
finding: Finding
|
|
4628
4785
|
}
|
|
4629
4786
|
|
|
4787
|
+
input UpdateReplayEntryDraftInput @oneOf {
|
|
4788
|
+
http: UpdateReplayEntryHttpDraftInput
|
|
4789
|
+
ws: UpdateReplayEntryWsDraftInput
|
|
4790
|
+
}
|
|
4791
|
+
|
|
4792
|
+
type UpdateReplayEntryDraftPayload {
|
|
4793
|
+
entry: ReplayEntry
|
|
4794
|
+
}
|
|
4795
|
+
|
|
4796
|
+
input UpdateReplayEntryHttpDraftInput {
|
|
4797
|
+
connection: ConnectionInfoInput!
|
|
4798
|
+
editorState: Blob!
|
|
4799
|
+
raw: Blob!
|
|
4800
|
+
settings: ReplayEntryHttpSettingsInput!
|
|
4801
|
+
}
|
|
4802
|
+
|
|
4803
|
+
input UpdateReplayEntryWsDraftInput {
|
|
4804
|
+
direction: StreamMessageDirection!
|
|
4805
|
+
editorState: Blob!
|
|
4806
|
+
format: StreamWsMessageFormat!
|
|
4807
|
+
raw: Blob!
|
|
4808
|
+
settings: ReplayEntryWsSettingsInput!
|
|
4809
|
+
}
|
|
4810
|
+
|
|
4811
|
+
type UpdateReplaySessionSettingsPayload {
|
|
4812
|
+
session: ReplaySession
|
|
4813
|
+
}
|
|
4814
|
+
|
|
4630
4815
|
input UpdateRequestMetadataInput {
|
|
4631
4816
|
color: String
|
|
4632
4817
|
}
|
|
@@ -4650,13 +4835,13 @@ type UpdateScopePayload {
|
|
|
4650
4835
|
}
|
|
4651
4836
|
|
|
4652
4837
|
union UpdateTamperRuleError =
|
|
4653
|
-
|
|
4838
|
+
| UnknownIdUserError
|
|
4654
4839
|
| InvalidRegexUserError
|
|
4655
4840
|
| InvalidHTTPQLUserError
|
|
4656
4841
|
| OtherUserError
|
|
4657
4842
|
|
|
4658
4843
|
input UpdateTamperRuleInput {
|
|
4659
|
-
condition:
|
|
4844
|
+
condition: QueryInput
|
|
4660
4845
|
name: String!
|
|
4661
4846
|
section: TamperSectionInput!
|
|
4662
4847
|
sources: [Source!]!
|
|
@@ -4713,7 +4898,7 @@ type UpdateViewerSettingsPayload {
|
|
|
4713
4898
|
}
|
|
4714
4899
|
|
|
4715
4900
|
union UpdateWorkflowError =
|
|
4716
|
-
|
|
4901
|
+
| UnknownIdUserError
|
|
4717
4902
|
| ReadOnlyUserError
|
|
4718
4903
|
| WorkflowUserError
|
|
4719
4904
|
| OtherUserError
|
|
@@ -4836,6 +5021,16 @@ type UpdatedProjectPayload {
|
|
|
4836
5021
|
project: Project!
|
|
4837
5022
|
}
|
|
4838
5023
|
|
|
5024
|
+
type UpdatedReplayEntryDraftPayload {
|
|
5025
|
+
entry: ReplayEntry!
|
|
5026
|
+
snapshot: Snapshot!
|
|
5027
|
+
}
|
|
5028
|
+
|
|
5029
|
+
type UpdatedReplayEntryWsPayload {
|
|
5030
|
+
entry: ReplayEntryWs
|
|
5031
|
+
snapshot: Snapshot!
|
|
5032
|
+
}
|
|
5033
|
+
|
|
4839
5034
|
type UpdatedReplaySessionCollectionPayload {
|
|
4840
5035
|
collectionEdge: ReplaySessionCollectionEdge!
|
|
4841
5036
|
snapshot: Snapshot!
|
|
@@ -4869,11 +5064,13 @@ type UpdatedSitemapEntryPayload {
|
|
|
4869
5064
|
snapshot: Snapshot!
|
|
4870
5065
|
}
|
|
4871
5066
|
|
|
4872
|
-
type
|
|
5067
|
+
type UpdatedStreamWsMessage {
|
|
4873
5068
|
messageEdge(order: StreamWsMessageOrderInput): StreamWsMessageEdge!
|
|
4874
5069
|
snapshot: Snapshot!
|
|
4875
5070
|
}
|
|
4876
5071
|
|
|
5072
|
+
union UpdatedStreamWsMessagePayload = UpdatedStreamWsMessage | HiddenStreamWsMessage
|
|
5073
|
+
|
|
4877
5074
|
type UpdatedTamperRuleCollectionPayload {
|
|
4878
5075
|
collectionEdge: TamperRuleCollectionEdge!
|
|
4879
5076
|
snapshot: Snapshot!
|
|
@@ -5020,6 +5217,17 @@ type UserSubscriptionPlan {
|
|
|
5020
5217
|
|
|
5021
5218
|
scalar Version
|
|
5022
5219
|
|
|
5220
|
+
enum WSErrorReason {
|
|
5221
|
+
COULD_NOT_UPGRADE_CONNECTION
|
|
5222
|
+
SERVER_UNRESPONSIVE
|
|
5223
|
+
}
|
|
5224
|
+
|
|
5225
|
+
type WSUserError implements UserError {
|
|
5226
|
+
code: String!
|
|
5227
|
+
message: String!
|
|
5228
|
+
reason: WSErrorReason!
|
|
5229
|
+
}
|
|
5230
|
+
|
|
5023
5231
|
type Workflow {
|
|
5024
5232
|
createdAt: DateTime!
|
|
5025
5233
|
definition: JsonObject!
|