File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
services/dashboards/src/v1/models Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "spec_repo_commit": "fde8b90 ",
3
- "generated": "2025-08-18 20:32:20.186 "
2
+ "spec_repo_commit": "e9346e4 ",
3
+ "generated": "2025-08-19 15:54:39.235 "
4
4
}
Original file line number Diff line number Diff line change @@ -981,6 +981,10 @@ components:
981
981
increase_good:
982
982
description: Whether to show increase as good.
983
983
type: boolean
984
+ limit:
985
+ description: The number of items to show.
986
+ format: int64
987
+ type: integer
984
988
log_query:
985
989
$ref: '#/components/schemas/LogQueryDefinition'
986
990
network_query:
Original file line number Diff line number Diff line change @@ -38,6 +38,10 @@ export class ChangeWidgetRequest {
38
38
* Whether to show increase as good.
39
39
*/
40
40
"increaseGood" ?: boolean ;
41
+ /**
42
+ * The number of items to show.
43
+ */
44
+ "limit" ?: number ;
41
45
/**
42
46
* The log query.
43
47
*/
@@ -125,6 +129,11 @@ export class ChangeWidgetRequest {
125
129
baseName : "increase_good" ,
126
130
type : "boolean" ,
127
131
} ,
132
+ limit : {
133
+ baseName : "limit" ,
134
+ type : "number" ,
135
+ format : "int64" ,
136
+ } ,
128
137
logQuery : {
129
138
baseName : "log_query" ,
130
139
type : "LogQueryDefinition" ,
You can’t perform that action at this time.
0 commit comments