From bbbe7abd2ab44071c5b7f9ec0da63d0da8e4dad4 Mon Sep 17 00:00:00 2001 From: "ci.datadog-api-spec" Date: Wed, 3 Dec 2025 10:17:12 +0000 Subject: [PATCH] Regenerate client from commit cb2fd9f of spec repo --- .generator/schemas/v1/openapi.yaml | 16 ++++++++++++++-- .../v1/models/GeomapWidgetDefinitionView.ts | 2 +- .../src/v1/models/GeomapWidgetRequest.ts | 18 ++++++++++++++++++ 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/.generator/schemas/v1/openapi.yaml b/.generator/schemas/v1/openapi.yaml index e4c949659000..7e498efb8526 100644 --- a/.generator/schemas/v1/openapi.yaml +++ b/.generator/schemas/v1/openapi.yaml @@ -3506,8 +3506,9 @@ components: focus: WORLD properties: focus: - description: The 2-letter ISO code of a country to focus the map on. Or - `WORLD`. + description: The 2-letter ISO code of a country to focus the map on, or + `WORLD` for global view, or a region (`EMEA`, `APAC`, `LATAM`), or a continent + (`NORTH_AMERICA`, `SOUTH_AMERICA`, `EUROPE`, `AFRICA`, `ASIA`, `OCEANIA`). example: WORLD type: string required: @@ -3526,6 +3527,12 @@ components: items: $ref: '#/components/schemas/ListStreamColumn' type: array + conditional_formats: + description: Threshold (numeric) conditional formatting rules may be used + by the regions layer. + items: + $ref: '#/components/schemas/WidgetConditionalFormat' + type: array formulas: description: List of formulas that operate on queries. items: @@ -3551,6 +3558,11 @@ components: $ref: '#/components/schemas/LogQueryDefinition' sort: $ref: '#/components/schemas/WidgetSortBy' + text_formats: + description: Text formatting rules may be used by the points layer. + items: + $ref: '#/components/schemas/TableWidgetTextFormatRule' + type: array type: object GraphSnapshot: description: Object representing a graph snapshot. diff --git a/services/dashboards/src/v1/models/GeomapWidgetDefinitionView.ts b/services/dashboards/src/v1/models/GeomapWidgetDefinitionView.ts index cdf47f4d31fe..48d39ff0f939 100644 --- a/services/dashboards/src/v1/models/GeomapWidgetDefinitionView.ts +++ b/services/dashboards/src/v1/models/GeomapWidgetDefinitionView.ts @@ -5,7 +5,7 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client"; */ export class GeomapWidgetDefinitionView { /** - * The 2-letter ISO code of a country to focus the map on. Or `WORLD`. + * The 2-letter ISO code of a country to focus the map on, or `WORLD` for global view, or a region (`EMEA`, `APAC`, `LATAM`), or a continent (`NORTH_AMERICA`, `SOUTH_AMERICA`, `EUROPE`, `AFRICA`, `ASIA`, `OCEANIA`). */ "focus": string; /** diff --git a/services/dashboards/src/v1/models/GeomapWidgetRequest.ts b/services/dashboards/src/v1/models/GeomapWidgetRequest.ts index 2bd775f40010..55014a710269 100644 --- a/services/dashboards/src/v1/models/GeomapWidgetRequest.ts +++ b/services/dashboards/src/v1/models/GeomapWidgetRequest.ts @@ -5,6 +5,8 @@ import { FormulaAndFunctionResponseFormat } from "./FormulaAndFunctionResponseFo import { ListStreamColumn } from "./ListStreamColumn"; import { ListStreamQuery } from "./ListStreamQuery"; import { LogQueryDefinition } from "./LogQueryDefinition"; +import { TableWidgetTextFormatRule } from "./TableWidgetTextFormatRule"; +import { WidgetConditionalFormat } from "./WidgetConditionalFormat"; import { WidgetFormula } from "./WidgetFormula"; import { WidgetSortBy } from "./WidgetSortBy"; @@ -16,6 +18,10 @@ export class GeomapWidgetRequest { * Widget columns. */ "columns"?: Array; + /** + * Threshold (numeric) conditional formatting rules may be used by the regions layer. + */ + "conditionalFormats"?: Array; /** * List of formulas that operate on queries. */ @@ -52,6 +58,10 @@ export class GeomapWidgetRequest { * The controls for sorting the widget. */ "sort"?: WidgetSortBy; + /** + * Text formatting rules may be used by the points layer. + */ + "textFormats"?: Array; /** * A container for additional, undeclared properties. * This is a holder for any undeclared properties as specified with @@ -71,6 +81,10 @@ export class GeomapWidgetRequest { baseName: "columns", type: "Array", }, + conditionalFormats: { + baseName: "conditional_formats", + type: "Array", + }, formulas: { baseName: "formulas", type: "Array", @@ -107,6 +121,10 @@ export class GeomapWidgetRequest { baseName: "sort", type: "WidgetSortBy", }, + textFormats: { + baseName: "text_formats", + type: "Array", + }, additionalProperties: { baseName: "additionalProperties", type: "{ [key: string]: any; }",