Skip to content

Commit b498728

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit dbd34db of spec repo
1 parent a338a8a commit b498728

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "c3e3e39",
3-
"generated": "2025-08-13 13:35:51.784"
2+
"spec_repo_commit": "dbd34db",
3+
"generated": "2025-08-13 21:11:24.946"
44
}

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -981,6 +981,10 @@ components:
981981
increase_good:
982982
description: Whether to show increase as good.
983983
type: boolean
984+
limit:
985+
description: The number of items to show.
986+
format: int64
987+
type: integer
984988
log_query:
985989
$ref: '#/components/schemas/LogQueryDefinition'
986990
network_query:

services/dashboards/src/v1/models/ChangeWidgetRequest.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ export class ChangeWidgetRequest {
3838
* Whether to show increase as good.
3939
*/
4040
"increaseGood"?: boolean;
41+
/**
42+
* The number of items to show.
43+
*/
44+
"limit"?: number;
4145
/**
4246
* The log query.
4347
*/
@@ -125,6 +129,11 @@ export class ChangeWidgetRequest {
125129
baseName: "increase_good",
126130
type: "boolean",
127131
},
132+
limit: {
133+
baseName: "limit",
134+
type: "number",
135+
format: "int64",
136+
},
128137
logQuery: {
129138
baseName: "log_query",
130139
type: "LogQueryDefinition",

0 commit comments

Comments
 (0)