@harnessio/react-sto-core-client 0.6.1 → 0.6.2
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.
|
@@ -80,6 +80,16 @@ export interface FrontendAllIssuesListQueryQueryParams {
|
|
|
80
80
|
* @example "reachable"
|
|
81
81
|
*/
|
|
82
82
|
reachability?: string;
|
|
83
|
+
/**
|
|
84
|
+
* EPSS Probability filter (single select): gte_15 (>=15%), gte_5 (>=5%), gte_1 (>=1%), lt_1 (<1%), na (N/A - No EPSS data)
|
|
85
|
+
* @example "gte_15"
|
|
86
|
+
*/
|
|
87
|
+
epss?: string;
|
|
88
|
+
/**
|
|
89
|
+
* EPSS Percentile filter (single select): gte_99 (>=99th), gte_90 (>=90th), gte_80 (>=80th), lt_80 (<80th), na (N/A - No EPSS data)
|
|
90
|
+
* @example "gte_99"
|
|
91
|
+
*/
|
|
92
|
+
epssPercentile?: string;
|
|
83
93
|
}
|
|
84
94
|
export type FrontendAllIssuesListOkResponse = ResponseWithPagination<FrontendAllIssuesListResponseBody>;
|
|
85
95
|
export type FrontendAllIssuesListErrorResponse = NotFound;
|
|
@@ -102,9 +102,15 @@ export interface FrontendPipelineSecurityIssuesCsvQueryQueryParams {
|
|
|
102
102
|
*/
|
|
103
103
|
originStatuses?: string;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* EPSS Probability filter (single select): gte_15 (>=15%), gte_5 (>=5%), gte_1 (>=1%), lt_1 (<1%), na (N/A - No EPSS data)
|
|
106
|
+
* @example "gte_15"
|
|
106
107
|
*/
|
|
107
108
|
epss?: string;
|
|
109
|
+
/**
|
|
110
|
+
* EPSS Percentile filter (single select): gte_99 (>=99th), gte_90 (>=90th), gte_80 (>=80th), lt_80 (<80th), na (N/A - No EPSS data)
|
|
111
|
+
* @example "gte_99"
|
|
112
|
+
*/
|
|
113
|
+
epssPercentile?: string;
|
|
108
114
|
/**
|
|
109
115
|
* @example "Yes"
|
|
110
116
|
*/
|
|
@@ -102,9 +102,15 @@ export interface FrontendPipelineSecurityIssuesQueryQueryParams {
|
|
|
102
102
|
*/
|
|
103
103
|
originStatuses?: string;
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* EPSS Probability filter (single select): gte_15 (>=15%), gte_5 (>=5%), gte_1 (>=1%), lt_1 (<1%), na (N/A - No EPSS data)
|
|
106
|
+
* @example "gte_15"
|
|
106
107
|
*/
|
|
107
108
|
epss?: string;
|
|
109
|
+
/**
|
|
110
|
+
* EPSS Percentile filter (single select): gte_99 (>=99th), gte_90 (>=90th), gte_80 (>=80th), lt_80 (<80th), na (N/A - No EPSS data)
|
|
111
|
+
* @example "gte_99"
|
|
112
|
+
*/
|
|
113
|
+
epssPercentile?: string;
|
|
108
114
|
/**
|
|
109
115
|
* @example "Yes"
|
|
110
116
|
*/
|