Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change int to float. #1843

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-04 10:38:21.095295",
"spec_repo_commit": "7a63d530"
"regenerated": "2024-10-04 13:47:52.630963",
"spec_repo_commit": "7679754f"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-04 10:38:21.111270",
"spec_repo_commit": "7a63d530"
"regenerated": "2024-10-04 13:47:52.645276",
"spec_repo_commit": "7679754f"
}
}
}
12 changes: 6 additions & 6 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22548,18 +22548,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
Loading