Skip to content

Commit

Permalink
Regenerate client from commit 8a2ddba0 of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 1, 2024
1 parent cdfc167 commit 443f281
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 14:24:21.173399",
"spec_repo_commit": "d90ee2ef"
"regenerated": "2024-10-01 16:08:33.828704",
"spec_repo_commit": "8a2ddba0"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-01 14:24:21.190923",
"spec_repo_commit": "d90ee2ef"
"regenerated": "2024-10-01 16:08:33.843171",
"spec_repo_commit": "8a2ddba0"
}
}
}
12 changes: 6 additions & 6 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22079,18 +22079,18 @@ components:
type: integer
x:
description: The position of the widget on the x (horizontal) axis. Should
be a non-negative integer.
be a non-negative number.
example: 0
format: int64
format: double
minimum: 0
type: integer
type: number
y:
description: The position of the widget on the y (vertical) axis. Should
be a non-negative integer.
be a non-negative number.
example: 0
format: int64
format: double
minimum: 0
type: integer
type: number
required:
- x
- y
Expand Down
8 changes: 4 additions & 4 deletions packages/datadog-api-client-v1/models/WidgetLayout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ export class WidgetLayout {
*/
"width": number;
/**
* The position of the widget on the x (horizontal) axis. Should be a non-negative integer.
* The position of the widget on the x (horizontal) axis. Should be a non-negative number.
*/
"x": number;
/**
* The position of the widget on the y (vertical) axis. Should be a non-negative integer.
* The position of the widget on the y (vertical) axis. Should be a non-negative number.
*/
"y": number;

Expand Down Expand Up @@ -68,13 +68,13 @@ export class WidgetLayout {
baseName: "x",
type: "number",
required: true,
format: "int64",
format: "double",
},
y: {
baseName: "y",
type: "number",
required: true,
format: "int64",
format: "double",
},
additionalProperties: {
baseName: "additionalProperties",
Expand Down

0 comments on commit 443f281

Please sign in to comment.