@caido/schema-proxy 0.2.0 → 0.4.0
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 +1 -1
- package/schema.graphql +66 -246
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -224,13 +224,13 @@ type AutomateEntry {
|
|
|
224
224
|
before: String
|
|
225
225
|
first: Int
|
|
226
226
|
last: Int
|
|
227
|
-
filter:
|
|
227
|
+
filter: HTTPQL
|
|
228
228
|
order: AutomateEntryRequestOrderInput
|
|
229
229
|
): AutomateEntryRequestConnection!
|
|
230
230
|
requestsByOffset(
|
|
231
231
|
limit: Int
|
|
232
232
|
offset: Int
|
|
233
|
-
filter:
|
|
233
|
+
filter: HTTPQL
|
|
234
234
|
order: AutomateEntryRequestOrderInput
|
|
235
235
|
): AutomateEntryRequestConnection!
|
|
236
236
|
session: AutomateSession!
|
|
@@ -687,10 +687,6 @@ type CertificateUserError implements UserError {
|
|
|
687
687
|
reason: CertificateErrorReason!
|
|
688
688
|
}
|
|
689
689
|
|
|
690
|
-
type ClearReplayEntryDraftPayload {
|
|
691
|
-
entry: ReplayEntry
|
|
692
|
-
}
|
|
693
|
-
|
|
694
690
|
type ClearSitemapEntriesPayload {
|
|
695
691
|
deletedIds: [ID!]!
|
|
696
692
|
}
|
|
@@ -813,7 +809,7 @@ union CreateFilterPresetError =
|
|
|
813
809
|
|
|
814
810
|
input CreateFilterPresetInput {
|
|
815
811
|
alias: Alias!
|
|
816
|
-
clause:
|
|
812
|
+
clause: HTTPQL!
|
|
817
813
|
name: String!
|
|
818
814
|
}
|
|
819
815
|
|
|
@@ -863,7 +859,6 @@ type CreateReplaySessionCollectionPayload {
|
|
|
863
859
|
input CreateReplaySessionInput {
|
|
864
860
|
collectionId: ID
|
|
865
861
|
requestSource: RequestSourceInput
|
|
866
|
-
settings: ReplaySessionSettingsInput
|
|
867
862
|
}
|
|
868
863
|
|
|
869
864
|
type CreateReplaySessionPayload {
|
|
@@ -904,7 +899,7 @@ union CreateTamperRuleError =
|
|
|
904
899
|
|
|
905
900
|
input CreateTamperRuleInput {
|
|
906
901
|
collectionId: ID!
|
|
907
|
-
condition:
|
|
902
|
+
condition: HTTPQL
|
|
908
903
|
name: String!
|
|
909
904
|
section: TamperSectionInput!
|
|
910
905
|
sources: [Source!]!
|
|
@@ -1368,11 +1363,6 @@ type DeleteSitemapEntriesPayload {
|
|
|
1368
1363
|
errors: [DeleteSitemapEntriesError!]!
|
|
1369
1364
|
}
|
|
1370
1365
|
|
|
1371
|
-
type DeleteStreamWsMessageTask implements Task {
|
|
1372
|
-
createdAt: DateTime!
|
|
1373
|
-
id: ID!
|
|
1374
|
-
}
|
|
1375
|
-
|
|
1376
1366
|
type DeleteTamperRuleCollectionPayload {
|
|
1377
1367
|
deletedId: ID
|
|
1378
1368
|
}
|
|
@@ -1504,10 +1494,6 @@ type DeletedSitemapEntriesPayload {
|
|
|
1504
1494
|
snapshot: Snapshot!
|
|
1505
1495
|
}
|
|
1506
1496
|
|
|
1507
|
-
type DeletedStreamWsMessagesPayload {
|
|
1508
|
-
deletedIds: [ID!]!
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
1497
|
type DeletedTamperRuleCollectionPayload {
|
|
1512
1498
|
deletedCollectionId: ID!
|
|
1513
1499
|
snapshot: Snapshot!
|
|
@@ -1606,7 +1592,7 @@ input FilterClauseFindingInput {
|
|
|
1606
1592
|
|
|
1607
1593
|
type FilterPreset {
|
|
1608
1594
|
alias: Alias!
|
|
1609
|
-
clause:
|
|
1595
|
+
clause: HTTPQL!
|
|
1610
1596
|
id: ID!
|
|
1611
1597
|
name: String!
|
|
1612
1598
|
}
|
|
@@ -1792,17 +1778,7 @@ type GuestUser {
|
|
|
1792
1778
|
settings: UserSettings
|
|
1793
1779
|
}
|
|
1794
1780
|
|
|
1795
|
-
|
|
1796
|
-
code: String!
|
|
1797
|
-
}
|
|
1798
|
-
|
|
1799
|
-
input HTTPQLInput {
|
|
1800
|
-
code: String!
|
|
1801
|
-
}
|
|
1802
|
-
|
|
1803
|
-
type HiddenStreamWsMessage {
|
|
1804
|
-
hiddenId: ID!
|
|
1805
|
-
}
|
|
1781
|
+
scalar HTTPQL
|
|
1806
1782
|
|
|
1807
1783
|
input HideFindingsInput @oneOf {
|
|
1808
1784
|
ids: [ID!]
|
|
@@ -2006,12 +1982,12 @@ type InterceptRequestMessage implements InterceptMessage {
|
|
|
2006
1982
|
|
|
2007
1983
|
type InterceptRequestOptions {
|
|
2008
1984
|
enabled: Boolean!
|
|
2009
|
-
filter:
|
|
1985
|
+
filter: HTTPQL
|
|
2010
1986
|
}
|
|
2011
1987
|
|
|
2012
1988
|
input InterceptRequestOptionsInput {
|
|
2013
1989
|
enabled: Boolean!
|
|
2014
|
-
filter:
|
|
1990
|
+
filter: HTTPQL
|
|
2015
1991
|
}
|
|
2016
1992
|
|
|
2017
1993
|
type InterceptResponseMessage implements InterceptMessage {
|
|
@@ -2022,12 +1998,12 @@ type InterceptResponseMessage implements InterceptMessage {
|
|
|
2022
1998
|
|
|
2023
1999
|
type InterceptResponseOptions {
|
|
2024
2000
|
enabled: Boolean!
|
|
2025
|
-
filter:
|
|
2001
|
+
filter: HTTPQL
|
|
2026
2002
|
}
|
|
2027
2003
|
|
|
2028
2004
|
input InterceptResponseOptionsInput {
|
|
2029
2005
|
enabled: Boolean!
|
|
2030
|
-
filter:
|
|
2006
|
+
filter: HTTPQL
|
|
2031
2007
|
}
|
|
2032
2008
|
|
|
2033
2009
|
type InterceptScopeOptions {
|
|
@@ -2071,21 +2047,11 @@ type InvalidHTTPQLUserError implements UserError {
|
|
|
2071
2047
|
query: String!
|
|
2072
2048
|
}
|
|
2073
2049
|
|
|
2074
|
-
type InvalidRangeUserError implements UserError {
|
|
2075
|
-
code: String!
|
|
2076
|
-
range: Range!
|
|
2077
|
-
}
|
|
2078
|
-
|
|
2079
2050
|
type InvalidRegexUserError implements UserError {
|
|
2080
2051
|
code: String!
|
|
2081
2052
|
term: String!
|
|
2082
2053
|
}
|
|
2083
2054
|
|
|
2084
|
-
type InvalidStreamQLUserError implements UserError {
|
|
2085
|
-
code: String!
|
|
2086
|
-
query: String!
|
|
2087
|
-
}
|
|
2088
|
-
|
|
2089
2055
|
"""
|
|
2090
2056
|
A scalar that can represent any JSON value.
|
|
2091
2057
|
"""
|
|
@@ -2141,7 +2107,6 @@ type MutationRoot {
|
|
|
2141
2107
|
cancelBackupTask(id: ID!): CancelBackupTaskPayload!
|
|
2142
2108
|
cancelRestoreBackupTask(id: ID!): CancelRestoreBackupTaskPayload!
|
|
2143
2109
|
cancelTask(id: ID!): CancelTaskPayload!
|
|
2144
|
-
clearReplayEntryDraft(id: ID!): ClearReplayEntryDraftPayload!
|
|
2145
2110
|
clearSitemapEntries: ClearSitemapEntriesPayload!
|
|
2146
2111
|
createAssistantSession(
|
|
2147
2112
|
input: CreateAssistantSessionInput!
|
|
@@ -2197,7 +2162,7 @@ type MutationRoot {
|
|
|
2197
2162
|
deleteFindings(input: DeleteFindingsInput): DeleteFindingsPayload!
|
|
2198
2163
|
deleteHostedFile(id: ID!): DeleteHostedFilePayload!
|
|
2199
2164
|
deleteInterceptEntries(
|
|
2200
|
-
filter:
|
|
2165
|
+
filter: HTTPQL
|
|
2201
2166
|
scopeId: ID
|
|
2202
2167
|
): DeleteInterceptEntriesPayload!
|
|
2203
2168
|
deleteInterceptEntry(id: ID!): DeleteInterceptEntryPayload!
|
|
@@ -2237,11 +2202,6 @@ type MutationRoot {
|
|
|
2237
2202
|
pauseIntercept: PauseInterceptPayload!
|
|
2238
2203
|
persistProject(id: ID!): PersistProjectPayload!
|
|
2239
2204
|
rankDnsRewrite(id: ID!, input: RankInput!): RankDNSRewritePayload!
|
|
2240
|
-
rankReplaySession(id: ID!, input: RankInput!): RankReplaySessionPayload!
|
|
2241
|
-
rankReplaySessionCollection(
|
|
2242
|
-
id: ID!
|
|
2243
|
-
input: RankInput!
|
|
2244
|
-
): RankReplaySessionCollectionPayload!
|
|
2245
2205
|
rankTamperRule(id: ID!, input: RankTamperRuleInput!): RankTamperRulePayload!
|
|
2246
2206
|
rankUpstreamPlugin(id: ID!, input: RankInput!): RankUpstreamPluginPayload!
|
|
2247
2207
|
rankUpstreamProxyHttp(
|
|
@@ -2311,13 +2271,13 @@ type MutationRoot {
|
|
|
2311
2271
|
): SetProjectConfigStreamPayload!
|
|
2312
2272
|
startAuthenticationFlow: StartAuthenticationFlowPayload! @cloud
|
|
2313
2273
|
startAutomateTask(automateSessionId: ID!): StartAutomateTaskPayload!
|
|
2314
|
-
startDeleteStreamWsMessageTask(
|
|
2315
|
-
input: StartDeleteStreamWsMessageTaskInput!
|
|
2316
|
-
): StartDeleteStreamWsMessageTaskPayload!
|
|
2317
2274
|
startExportRequestsTask(
|
|
2318
2275
|
input: StartExportRequestsTaskInput!
|
|
2319
2276
|
): StartExportRequestsTaskPayload! @cloud
|
|
2320
|
-
startReplayTask(
|
|
2277
|
+
startReplayTask(
|
|
2278
|
+
sessionId: ID!
|
|
2279
|
+
input: StartReplayTaskInput!
|
|
2280
|
+
): StartReplayTaskPayload! @cloud
|
|
2321
2281
|
testAiProvider(input: TestAIProviderInput!): TestAIProviderPayload! @cloud
|
|
2322
2282
|
testTamperRule(input: TestTamperRuleInput!): TestTamperRulePayload!
|
|
2323
2283
|
testUpstreamProxyHttp(
|
|
@@ -2372,14 +2332,6 @@ type MutationRoot {
|
|
|
2372
2332
|
input: UpdateFilterPresetInput!
|
|
2373
2333
|
): UpdateFilterPresetPayload!
|
|
2374
2334
|
updateFinding(id: ID!, input: UpdateFindingInput!): UpdateFindingPayload!
|
|
2375
|
-
updateReplayEntryDraft(
|
|
2376
|
-
id: ID!
|
|
2377
|
-
input: UpdateReplayEntryDraftInput!
|
|
2378
|
-
): UpdateReplayEntryDraftPayload!
|
|
2379
|
-
updateReplaySessionSettings(
|
|
2380
|
-
id: ID!
|
|
2381
|
-
input: ReplaySessionSettingsInput!
|
|
2382
|
-
): UpdateReplaySessionSettingsPayload!
|
|
2383
2335
|
updateRequestMetadata(
|
|
2384
2336
|
id: ID!
|
|
2385
2337
|
input: UpdateRequestMetadataInput!
|
|
@@ -2631,13 +2583,6 @@ type ProjectUserError implements UserError {
|
|
|
2631
2583
|
reason: ProjectErrorReason!
|
|
2632
2584
|
}
|
|
2633
2585
|
|
|
2634
|
-
union Query = HTTPQL | StreamQL
|
|
2635
|
-
|
|
2636
|
-
input QueryInput @oneOf {
|
|
2637
|
-
HTTPQL: HTTPQLInput
|
|
2638
|
-
streamQL: StreamQLInput
|
|
2639
|
-
}
|
|
2640
|
-
|
|
2641
2586
|
type QueryRoot {
|
|
2642
2587
|
assistantModels: [AssistantModel!]! @cloud
|
|
2643
2588
|
assistantSession(id: ID!): AssistantSession
|
|
@@ -2695,21 +2640,21 @@ type QueryRoot {
|
|
|
2695
2640
|
before: String
|
|
2696
2641
|
first: Int
|
|
2697
2642
|
last: Int
|
|
2698
|
-
filter:
|
|
2643
|
+
filter: HTTPQL
|
|
2699
2644
|
order: InterceptEntryOrderInput
|
|
2700
2645
|
scopeId: ID
|
|
2701
2646
|
): InterceptEntryConnection!
|
|
2702
2647
|
interceptEntriesByOffset(
|
|
2703
2648
|
limit: Int
|
|
2704
2649
|
offset: Int
|
|
2705
|
-
filter:
|
|
2650
|
+
filter: HTTPQL
|
|
2706
2651
|
order: InterceptEntryOrderInput
|
|
2707
2652
|
scopeId: ID
|
|
2708
2653
|
): InterceptEntryConnection!
|
|
2709
2654
|
interceptEntry(id: ID!): InterceptEntry
|
|
2710
2655
|
interceptEntryOffset(
|
|
2711
2656
|
id: ID!
|
|
2712
|
-
filter:
|
|
2657
|
+
filter: HTTPQL
|
|
2713
2658
|
order: InterceptEntryOrderInput
|
|
2714
2659
|
scopeId: ID
|
|
2715
2660
|
): InterceptEntryOffset
|
|
@@ -2741,7 +2686,7 @@ type QueryRoot {
|
|
|
2741
2686
|
request(id: ID!): Request
|
|
2742
2687
|
requestOffset(
|
|
2743
2688
|
id: ID!
|
|
2744
|
-
filter:
|
|
2689
|
+
filter: HTTPQL
|
|
2745
2690
|
order: RequestResponseOrderInput
|
|
2746
2691
|
scopeId: ID
|
|
2747
2692
|
): RequestOffset
|
|
@@ -2750,14 +2695,14 @@ type QueryRoot {
|
|
|
2750
2695
|
before: String
|
|
2751
2696
|
first: Int
|
|
2752
2697
|
last: Int
|
|
2753
|
-
filter:
|
|
2698
|
+
filter: HTTPQL
|
|
2754
2699
|
order: RequestResponseOrderInput
|
|
2755
2700
|
scopeId: ID
|
|
2756
2701
|
): RequestConnection!
|
|
2757
2702
|
requestsByOffset(
|
|
2758
2703
|
limit: Int
|
|
2759
2704
|
offset: Int
|
|
2760
|
-
filter:
|
|
2705
|
+
filter: HTTPQL
|
|
2761
2706
|
order: RequestResponseOrderInput
|
|
2762
2707
|
scopeId: ID
|
|
2763
2708
|
): RequestConnection!
|
|
@@ -2782,14 +2727,12 @@ type QueryRoot {
|
|
|
2782
2727
|
first: Int
|
|
2783
2728
|
last: Int
|
|
2784
2729
|
order: StreamWsMessageOrderInput
|
|
2785
|
-
filter: StreamQLInput
|
|
2786
2730
|
streamId: ID!
|
|
2787
2731
|
): StreamWsMessageConnection!
|
|
2788
2732
|
streamWsMessagesByOffset(
|
|
2789
2733
|
limit: Int
|
|
2790
2734
|
offset: Int
|
|
2791
2735
|
order: StreamWsMessageOrderInput
|
|
2792
|
-
filter: StreamQLInput
|
|
2793
2736
|
streamId: ID!
|
|
2794
2737
|
): StreamWsMessageConnection!
|
|
2795
2738
|
streams(
|
|
@@ -2797,14 +2740,14 @@ type QueryRoot {
|
|
|
2797
2740
|
before: String
|
|
2798
2741
|
first: Int
|
|
2799
2742
|
last: Int
|
|
2800
|
-
|
|
2743
|
+
protocol: StreamProtocol!
|
|
2801
2744
|
order: StreamOrderInput
|
|
2802
2745
|
scopeId: ID
|
|
2803
2746
|
): StreamConnection!
|
|
2804
2747
|
streamsByOffset(
|
|
2805
2748
|
limit: Int
|
|
2806
2749
|
offset: Int
|
|
2807
|
-
|
|
2750
|
+
protocol: StreamProtocol!
|
|
2808
2751
|
order: StreamOrderInput
|
|
2809
2752
|
scopeId: ID
|
|
2810
2753
|
): StreamConnection!
|
|
@@ -2848,26 +2791,6 @@ input RankInput {
|
|
|
2848
2791
|
beforeId: ID
|
|
2849
2792
|
}
|
|
2850
2793
|
|
|
2851
|
-
type RankReplaySessionCollectionPayload {
|
|
2852
|
-
collection: ReplaySessionCollection
|
|
2853
|
-
error: RankSessionCollectionPayloadError
|
|
2854
|
-
}
|
|
2855
|
-
|
|
2856
|
-
type RankReplaySessionPayload {
|
|
2857
|
-
error: RankSessionPayloadError
|
|
2858
|
-
session: ReplaySession
|
|
2859
|
-
}
|
|
2860
|
-
|
|
2861
|
-
union RankSessionCollectionPayloadError =
|
|
2862
|
-
UnknownIdUserError
|
|
2863
|
-
| RankUserError
|
|
2864
|
-
| OtherUserError
|
|
2865
|
-
|
|
2866
|
-
union RankSessionPayloadError =
|
|
2867
|
-
UnknownIdUserError
|
|
2868
|
-
| RankUserError
|
|
2869
|
-
| OtherUserError
|
|
2870
|
-
|
|
2871
2794
|
union RankTamperRuleError = UnknownIdUserError | RankUserError | OtherUserError
|
|
2872
2795
|
|
|
2873
2796
|
input RankTamperRuleInput {
|
|
@@ -3023,11 +2946,15 @@ type RenderRequestPayload {
|
|
|
3023
2946
|
render: Image
|
|
3024
2947
|
}
|
|
3025
2948
|
|
|
3026
|
-
|
|
2949
|
+
type ReplayEntry {
|
|
2950
|
+
connection: ConnectionInfo!
|
|
3027
2951
|
createdAt: Timestamp!
|
|
3028
2952
|
error: String
|
|
3029
2953
|
id: ID!
|
|
2954
|
+
raw: Blob!
|
|
2955
|
+
request: Request
|
|
3030
2956
|
session: ReplaySession!
|
|
2957
|
+
settings: ReplayEntrySettings!
|
|
3031
2958
|
}
|
|
3032
2959
|
|
|
3033
2960
|
type ReplayEntryConnection {
|
|
@@ -3061,40 +2988,23 @@ type ReplayEntryEdge {
|
|
|
3061
2988
|
node: ReplayEntry!
|
|
3062
2989
|
}
|
|
3063
2990
|
|
|
3064
|
-
|
|
3065
|
-
|
|
3066
|
-
createdAt: Timestamp!
|
|
3067
|
-
draft: ReplayEntryHttpDraft
|
|
3068
|
-
error: String
|
|
3069
|
-
id: ID!
|
|
3070
|
-
raw: Blob!
|
|
3071
|
-
request: Request
|
|
3072
|
-
session: ReplaySession!
|
|
3073
|
-
settings: ReplayEntryHttpSettings!
|
|
2991
|
+
enum ReplayEntryOrderBy {
|
|
2992
|
+
ID
|
|
3074
2993
|
}
|
|
3075
2994
|
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
raw: Blob!
|
|
3080
|
-
settings: ReplayEntryHttpSettings!
|
|
2995
|
+
input ReplayEntryOrderInput {
|
|
2996
|
+
by: ReplayEntryOrderBy!
|
|
2997
|
+
ordering: Ordering!
|
|
3081
2998
|
}
|
|
3082
2999
|
|
|
3083
|
-
type
|
|
3000
|
+
type ReplayEntrySettings {
|
|
3084
3001
|
placeholders: [ReplayPlaceholder!]!
|
|
3085
3002
|
}
|
|
3086
3003
|
|
|
3087
|
-
input
|
|
3004
|
+
input ReplayEntrySettingsInput {
|
|
3005
|
+
connectionClose: Boolean!
|
|
3088
3006
|
placeholders: [ReplayPlaceholderInput!]!
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
enum ReplayEntryOrderBy {
|
|
3092
|
-
ID
|
|
3093
|
-
}
|
|
3094
|
-
|
|
3095
|
-
input ReplayEntryOrderInput {
|
|
3096
|
-
by: ReplayEntryOrderBy!
|
|
3097
|
-
ordering: Ordering!
|
|
3007
|
+
updateContentLength: Boolean!
|
|
3098
3008
|
}
|
|
3099
3009
|
|
|
3100
3010
|
type ReplayEnvironmentPreprocessor {
|
|
@@ -3148,16 +3058,23 @@ input ReplayPreprocessorOptionsInput @oneOf {
|
|
|
3148
3058
|
workflow: ReplayWorkflowPreprocessorInput
|
|
3149
3059
|
}
|
|
3150
3060
|
|
|
3151
|
-
|
|
3061
|
+
type ReplaySession {
|
|
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!
|
|
3152
3071
|
id: ID!
|
|
3153
3072
|
name: String!
|
|
3154
|
-
rank: Rank!
|
|
3155
3073
|
}
|
|
3156
3074
|
|
|
3157
3075
|
type ReplaySessionCollection {
|
|
3158
3076
|
id: ID!
|
|
3159
3077
|
name: String!
|
|
3160
|
-
rank: Rank!
|
|
3161
3078
|
sessions: [ReplaySession!]!
|
|
3162
3079
|
}
|
|
3163
3080
|
|
|
@@ -3223,36 +3140,6 @@ type ReplaySessionEdge {
|
|
|
3223
3140
|
node: ReplaySession!
|
|
3224
3141
|
}
|
|
3225
3142
|
|
|
3226
|
-
type ReplaySessionHttp implements ReplaySession {
|
|
3227
|
-
activeEntry: ReplayEntry
|
|
3228
|
-
collection: ReplaySessionCollection!
|
|
3229
|
-
entries(
|
|
3230
|
-
after: String
|
|
3231
|
-
before: String
|
|
3232
|
-
first: Int
|
|
3233
|
-
last: Int
|
|
3234
|
-
order: ReplayEntryOrderInput
|
|
3235
|
-
): ReplayEntryConnection!
|
|
3236
|
-
id: ID!
|
|
3237
|
-
name: String!
|
|
3238
|
-
rank: Rank!
|
|
3239
|
-
settings: ReplaySessionHttpSettings
|
|
3240
|
-
}
|
|
3241
|
-
|
|
3242
|
-
type ReplaySessionHttpSettings {
|
|
3243
|
-
connectionClose: Boolean!
|
|
3244
|
-
updateContentLength: Boolean!
|
|
3245
|
-
}
|
|
3246
|
-
|
|
3247
|
-
input ReplaySessionHttpSettingsInput {
|
|
3248
|
-
connectionClose: Boolean!
|
|
3249
|
-
updateContentLength: Boolean!
|
|
3250
|
-
}
|
|
3251
|
-
|
|
3252
|
-
input ReplaySessionSettingsInput @oneOf {
|
|
3253
|
-
http: ReplaySessionHttpSettingsInput
|
|
3254
|
-
}
|
|
3255
|
-
|
|
3256
3143
|
type ReplaySuffixPreprocessor {
|
|
3257
3144
|
value: String!
|
|
3258
3145
|
}
|
|
@@ -3673,16 +3560,8 @@ type StartAutomateTaskPayload {
|
|
|
3673
3560
|
automateTask: AutomateTask
|
|
3674
3561
|
}
|
|
3675
3562
|
|
|
3676
|
-
input StartDeleteStreamWsMessageTaskInput {
|
|
3677
|
-
ids: [ID!]!
|
|
3678
|
-
}
|
|
3679
|
-
|
|
3680
|
-
type StartDeleteStreamWsMessageTaskPayload {
|
|
3681
|
-
task: DeleteStreamWsMessageTask
|
|
3682
|
-
}
|
|
3683
|
-
|
|
3684
3563
|
input StartExportRequestsTaskInput {
|
|
3685
|
-
filter:
|
|
3564
|
+
filter: HTTPQL
|
|
3686
3565
|
format: DataExportFormat!
|
|
3687
3566
|
includeRaw: Boolean!
|
|
3688
3567
|
scopeId: ID
|
|
@@ -3698,12 +3577,17 @@ union StartExportRequestsTaskPayloadError =
|
|
|
3698
3577
|
| OtherUserError
|
|
3699
3578
|
|
|
3700
3579
|
union StartReplayTaskError =
|
|
3701
|
-
|
|
3702
|
-
| TaskInProgressUserError
|
|
3580
|
+
TaskInProgressUserError
|
|
3703
3581
|
| PermissionDeniedUserError
|
|
3704
3582
|
| CloudUserError
|
|
3705
3583
|
| OtherUserError
|
|
3706
3584
|
|
|
3585
|
+
input StartReplayTaskInput {
|
|
3586
|
+
connection: ConnectionInfoInput!
|
|
3587
|
+
raw: Blob!
|
|
3588
|
+
settings: ReplayEntrySettingsInput!
|
|
3589
|
+
}
|
|
3590
|
+
|
|
3707
3591
|
type StartReplayTaskPayload {
|
|
3708
3592
|
error: StartReplayTaskError
|
|
3709
3593
|
task: ReplayTask
|
|
@@ -3828,14 +3712,6 @@ enum StreamProtocol {
|
|
|
3828
3712
|
WS
|
|
3829
3713
|
}
|
|
3830
3714
|
|
|
3831
|
-
type StreamQL {
|
|
3832
|
-
code: String!
|
|
3833
|
-
}
|
|
3834
|
-
|
|
3835
|
-
input StreamQLInput {
|
|
3836
|
-
code: String!
|
|
3837
|
-
}
|
|
3838
|
-
|
|
3839
3715
|
type StreamWsMessage {
|
|
3840
3716
|
edits: [StreamWsMessageEditRef!]!
|
|
3841
3717
|
head: StreamWsMessageEdit!
|
|
@@ -3910,7 +3786,7 @@ type SubscriptionRoot {
|
|
|
3910
3786
|
createdAuthenticationToken(requestId: ID!): CreatedAuthenticationTokenPayload!
|
|
3911
3787
|
createdAutomateEntry: CreatedAutomateEntryPayload!
|
|
3912
3788
|
createdAutomateEntryRequest(
|
|
3913
|
-
filter:
|
|
3789
|
+
filter: HTTPQL
|
|
3914
3790
|
): CreatedAutomateEntryRequestPayload!
|
|
3915
3791
|
createdAutomateSession: CreatedAutomateSessionPayload!
|
|
3916
3792
|
createdAutomateTask: CreatedAutomateTaskPayload!
|
|
@@ -3922,7 +3798,7 @@ type SubscriptionRoot {
|
|
|
3922
3798
|
createdFilterPreset: CreatedFilterPresetPayload!
|
|
3923
3799
|
createdFinding: CreatedFindingPayload!
|
|
3924
3800
|
createdInterceptEntry(
|
|
3925
|
-
filter:
|
|
3801
|
+
filter: HTTPQL
|
|
3926
3802
|
scopeId: ID
|
|
3927
3803
|
): CreatedInterceptEntryPayload!
|
|
3928
3804
|
createdInterceptMessage: CreatedInterceptMessagePayload!
|
|
@@ -3932,11 +3808,11 @@ type SubscriptionRoot {
|
|
|
3932
3808
|
createdProject: CreatedProjectPayload!
|
|
3933
3809
|
createdReplaySession: CreatedReplaySessionPayload!
|
|
3934
3810
|
createdReplaySessionCollection: CreatedReplaySessionCollectionPayload!
|
|
3935
|
-
createdRequest(filter:
|
|
3811
|
+
createdRequest(filter: HTTPQL, scopeId: ID): CreatedRequestPayload!
|
|
3936
3812
|
createdScope: CreatedScopePayload!
|
|
3937
3813
|
createdSitemapEntry(scopeId: ID): CreatedSitemapEntryPayload!
|
|
3938
3814
|
createdStream(protocol: StreamProtocol!, scopeId: ID): CreatedStreamPayload!
|
|
3939
|
-
createdStreamWsMessage
|
|
3815
|
+
createdStreamWsMessage: CreatedStreamWsMessagePayload!
|
|
3940
3816
|
createdTamperRule: CreatedTamperRulePayload!
|
|
3941
3817
|
createdTamperRuleCollection: CreatedTamperRuleCollectionPayload!
|
|
3942
3818
|
createdUpstreamPlugin: CreatedUpstreamPluginPayload!
|
|
@@ -3964,7 +3840,6 @@ type SubscriptionRoot {
|
|
|
3964
3840
|
deletedReplaySessionCollection: DeletedReplaySessionCollectionPayload!
|
|
3965
3841
|
deletedScope: DeletedScopePayload!
|
|
3966
3842
|
deletedSitemapEntry: DeletedSitemapEntriesPayload!
|
|
3967
|
-
deletedStreamWsMessages: DeletedStreamWsMessagesPayload!
|
|
3968
3843
|
deletedTamperRule: DeletedTamperRulePayload!
|
|
3969
3844
|
deletedTamperRuleCollection: DeletedTamperRuleCollectionPayload!
|
|
3970
3845
|
deletedUpstreamPlugin: DeletedUpstreamPluginPayload!
|
|
@@ -4000,7 +3875,7 @@ type SubscriptionRoot {
|
|
|
4000
3875
|
updatedHostedFile: UpdatedHostedFilePayload!
|
|
4001
3876
|
updatedInstanceSettings: UpdatedInstanceSettingsPayload!
|
|
4002
3877
|
updatedInterceptEntry(
|
|
4003
|
-
filter:
|
|
3878
|
+
filter: HTTPQL
|
|
4004
3879
|
scopeId: ID
|
|
4005
3880
|
): UpdatedInterceptEntryPayload!
|
|
4006
3881
|
updatedInterceptOptions: UpdatedInterceptOptionsPayload!
|
|
@@ -4010,11 +3885,11 @@ type SubscriptionRoot {
|
|
|
4010
3885
|
updatedProject: UpdatedProjectPayload!
|
|
4011
3886
|
updatedReplaySession: UpdatedReplaySessionPayload!
|
|
4012
3887
|
updatedReplaySessionCollection: UpdatedReplaySessionCollectionPayload!
|
|
4013
|
-
updatedRequest(filter:
|
|
3888
|
+
updatedRequest(filter: HTTPQL, scopeId: ID): UpdatedRequestPayload!
|
|
4014
3889
|
updatedRequestMetadata: UpdatedRequestMetadataPayload!
|
|
4015
3890
|
updatedScope: UpdatedScopePayload!
|
|
4016
3891
|
updatedSitemapEntry(scopeId: ID): UpdatedSitemapEntryPayload!
|
|
4017
|
-
updatedStreamWsMessage
|
|
3892
|
+
updatedStreamWsMessage: UpdatedStreamWsMessagePayload!
|
|
4018
3893
|
updatedTamperRule: UpdatedTamperRulePayload!
|
|
4019
3894
|
updatedTamperRuleCollection: UpdatedTamperRuleCollectionPayload!
|
|
4020
3895
|
updatedUpstreamPlugin: UpdatedUpstreamPluginPayload!
|
|
@@ -4283,22 +4158,6 @@ input TamperOperationStatusCodeUpdateInput {
|
|
|
4283
4158
|
replacer: TamperReplacerInput!
|
|
4284
4159
|
}
|
|
4285
4160
|
|
|
4286
|
-
union TamperOperationStreamWsMessage = TamperOperationStreamWsMessageRaw
|
|
4287
|
-
|
|
4288
|
-
input TamperOperationStreamWsMessageInput @oneOf {
|
|
4289
|
-
raw: TamperOperationStreamWsMessageRawInput
|
|
4290
|
-
}
|
|
4291
|
-
|
|
4292
|
-
type TamperOperationStreamWsMessageRaw {
|
|
4293
|
-
matcher: TamperMatcherRaw!
|
|
4294
|
-
replacer: TamperReplacer!
|
|
4295
|
-
}
|
|
4296
|
-
|
|
4297
|
-
input TamperOperationStreamWsMessageRawInput {
|
|
4298
|
-
matcher: TamperMatcherRawInput!
|
|
4299
|
-
replacer: TamperReplacerInput!
|
|
4300
|
-
}
|
|
4301
|
-
|
|
4302
4161
|
union TamperReplacer = TamperReplacerTerm | TamperReplacerWorkflow
|
|
4303
4162
|
|
|
4304
4163
|
input TamperReplacerInput @oneOf {
|
|
@@ -4324,7 +4183,7 @@ input TamperReplacerWorkflowInput {
|
|
|
4324
4183
|
|
|
4325
4184
|
type TamperRule {
|
|
4326
4185
|
collection: TamperRuleCollection!
|
|
4327
|
-
condition:
|
|
4186
|
+
condition: HTTPQL
|
|
4328
4187
|
enable: TamperRuleEnable
|
|
4329
4188
|
id: ID!
|
|
4330
4189
|
name: String!
|
|
@@ -4370,8 +4229,6 @@ union TamperSection =
|
|
|
4370
4229
|
| TamperSectionResponseFirstLine
|
|
4371
4230
|
| TamperSectionResponseHeader
|
|
4372
4231
|
| TamperSectionResponseAll
|
|
4373
|
-
| TamperSectionStreamWsMessageUpstream
|
|
4374
|
-
| TamperSectionStreamWsMessageDownstream
|
|
4375
4232
|
|
|
4376
4233
|
input TamperSectionInput @oneOf {
|
|
4377
4234
|
requestAll: TamperSectionRequestAllInput
|
|
@@ -4387,8 +4244,6 @@ input TamperSectionInput @oneOf {
|
|
|
4387
4244
|
responseFirstLine: TamperSectionResponseFirstLineInput
|
|
4388
4245
|
responseHeader: TamperSectionResponseHeaderInput
|
|
4389
4246
|
responseStatusCode: TamperSectionResponseStatusCodeInput
|
|
4390
|
-
streamWsMessageDownstream: TamperSectionStreamWsMessageInput
|
|
4391
|
-
streamWsMessageUpstream: TamperSectionStreamWsMessageInput
|
|
4392
4247
|
}
|
|
4393
4248
|
|
|
4394
4249
|
type TamperSectionRequestAll {
|
|
@@ -4495,18 +4350,6 @@ input TamperSectionResponseStatusCodeInput {
|
|
|
4495
4350
|
operation: TamperOperationStatusCodeInput!
|
|
4496
4351
|
}
|
|
4497
4352
|
|
|
4498
|
-
type TamperSectionStreamWsMessageDownstream {
|
|
4499
|
-
operation: TamperOperationStreamWsMessage!
|
|
4500
|
-
}
|
|
4501
|
-
|
|
4502
|
-
input TamperSectionStreamWsMessageInput {
|
|
4503
|
-
operation: TamperOperationStreamWsMessageInput!
|
|
4504
|
-
}
|
|
4505
|
-
|
|
4506
|
-
type TamperSectionStreamWsMessageUpstream {
|
|
4507
|
-
operation: TamperOperationStreamWsMessage!
|
|
4508
|
-
}
|
|
4509
|
-
|
|
4510
4353
|
type TamperSummary {
|
|
4511
4354
|
collectionsCreated: Int!
|
|
4512
4355
|
rulesImported: Int!
|
|
@@ -4762,7 +4605,7 @@ union UpdateFilterPresetError =
|
|
|
4762
4605
|
|
|
4763
4606
|
input UpdateFilterPresetInput {
|
|
4764
4607
|
alias: Alias!
|
|
4765
|
-
clause:
|
|
4608
|
+
clause: HTTPQL!
|
|
4766
4609
|
name: String!
|
|
4767
4610
|
}
|
|
4768
4611
|
|
|
@@ -4784,25 +4627,6 @@ type UpdateFindingPayload {
|
|
|
4784
4627
|
finding: Finding
|
|
4785
4628
|
}
|
|
4786
4629
|
|
|
4787
|
-
input UpdateReplayEntryDraftInput @oneOf {
|
|
4788
|
-
http: UpdateReplayEntryHttpDraftInput
|
|
4789
|
-
}
|
|
4790
|
-
|
|
4791
|
-
type UpdateReplayEntryDraftPayload {
|
|
4792
|
-
entry: ReplayEntry
|
|
4793
|
-
}
|
|
4794
|
-
|
|
4795
|
-
input UpdateReplayEntryHttpDraftInput {
|
|
4796
|
-
connection: ConnectionInfoInput!
|
|
4797
|
-
editorState: Blob!
|
|
4798
|
-
raw: Blob!
|
|
4799
|
-
settings: ReplayEntryHttpSettingsInput!
|
|
4800
|
-
}
|
|
4801
|
-
|
|
4802
|
-
type UpdateReplaySessionSettingsPayload {
|
|
4803
|
-
session: ReplaySession
|
|
4804
|
-
}
|
|
4805
|
-
|
|
4806
4630
|
input UpdateRequestMetadataInput {
|
|
4807
4631
|
color: String
|
|
4808
4632
|
}
|
|
@@ -4832,7 +4656,7 @@ union UpdateTamperRuleError =
|
|
|
4832
4656
|
| OtherUserError
|
|
4833
4657
|
|
|
4834
4658
|
input UpdateTamperRuleInput {
|
|
4835
|
-
condition:
|
|
4659
|
+
condition: HTTPQL
|
|
4836
4660
|
name: String!
|
|
4837
4661
|
section: TamperSectionInput!
|
|
4838
4662
|
sources: [Source!]!
|
|
@@ -5045,15 +4869,11 @@ type UpdatedSitemapEntryPayload {
|
|
|
5045
4869
|
snapshot: Snapshot!
|
|
5046
4870
|
}
|
|
5047
4871
|
|
|
5048
|
-
type
|
|
4872
|
+
type UpdatedStreamWsMessagePayload {
|
|
5049
4873
|
messageEdge(order: StreamWsMessageOrderInput): StreamWsMessageEdge!
|
|
5050
4874
|
snapshot: Snapshot!
|
|
5051
4875
|
}
|
|
5052
4876
|
|
|
5053
|
-
union UpdatedStreamWsMessagePayload =
|
|
5054
|
-
UpdatedStreamWsMessage
|
|
5055
|
-
| HiddenStreamWsMessage
|
|
5056
|
-
|
|
5057
4877
|
type UpdatedTamperRuleCollectionPayload {
|
|
5058
4878
|
collectionEdge: TamperRuleCollectionEdge!
|
|
5059
4879
|
snapshot: Snapshot!
|