Skip to content

Commit a62d697

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit e790a980 of spec repo
1 parent cf48288 commit a62d697

File tree

3 files changed

+29
-4
lines changed

3 files changed

+29
-4
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-06-19 12:11:25.321241",
8-
"spec_repo_commit": "a171e0a8"
7+
"regenerated": "2025-06-20 14:27:10.684774",
8+
"spec_repo_commit": "e790a980"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-06-19 12:11:25.337389",
13-
"spec_repo_commit": "a171e0a8"
12+
"regenerated": "2025-06-20 14:27:10.701180",
13+
"spec_repo_commit": "e790a980"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3439,6 +3439,22 @@ components:
34393439
example:
34403440
focus: WORLD
34413441
properties:
3442+
custom_extent:
3443+
description: A custom extent of the map defined by an array of four numbers
3444+
in the order `[minLongitude, minLatitude, maxLongitude, maxLatitude]`.
3445+
example:
3446+
- -30
3447+
- -40
3448+
- 40
3449+
- 30
3450+
items:
3451+
description: The longitudinal or latitudinal coordinates of the bounding
3452+
box.
3453+
format: double
3454+
type: number
3455+
maxItems: 4
3456+
minItems: 4
3457+
type: array
34423458
focus:
34433459
description: The 2-letter ISO code of a country to focus the map on. Or
34443460
`WORLD`.

packages/datadog-api-client-v1/models/GeomapWidgetDefinitionView.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@ import { AttributeTypeMap } from "../../datadog-api-client-common/util";
1010
* The view of the world that the map should render.
1111
*/
1212
export class GeomapWidgetDefinitionView {
13+
/**
14+
* A custom extent of the map defined by an array of four numbers in the order `[minLongitude, minLatitude, maxLongitude, maxLatitude]`.
15+
*/
16+
"customExtent"?: [number, number, number, number];
1317
/**
1418
* The 2-letter ISO code of a country to focus the map on. Or `WORLD`.
1519
*/
@@ -31,6 +35,11 @@ export class GeomapWidgetDefinitionView {
3135
* @ignore
3236
*/
3337
static readonly attributeTypeMap: AttributeTypeMap = {
38+
customExtent: {
39+
baseName: "custom_extent",
40+
type: "[number, number, number, number]",
41+
format: "double",
42+
},
3443
focus: {
3544
baseName: "focus",
3645
type: "string",

0 commit comments

Comments
 (0)