Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13992,19 +13992,19 @@ components:
x-enum-varnames:
- NETFLOW_SANKEY
SankeyRumDataSource:
default: rum
description: Sankey widget with RUM data source.
default: product_analytics
description: Product Analytics or RUM data source type.
enum:
- rum
- product_analytics
example: rum
example: product_analytics
type: string
x-enum-varnames:
- RUM
- PRODUCT_ANALYTICS
SankeyRumQuery:
additionalProperties: false
description: Sankey widget with RUM data source query.
description: Query configuration for Product Analytics or RUM Sankey widget.
properties:
audience_filters:
$ref: "#/components/schemas/ProductAnalyticsAudienceFilters"
Expand Down Expand Up @@ -14044,7 +14044,7 @@ components:
type: object
SankeyRumQueryMode:
default: source
description: Sankey mode for RUM queries.
description: Sankey mode for Product Analytics or RUM queries.
enum:
- source
- target
Expand All @@ -14055,7 +14055,7 @@ components:
- TARGET
SankeyRumRequest:
additionalProperties: false
description: Sankey widget with RUM data source.
description: Sankey widget request for Product Analytics or RUM data source.
properties:
query:
$ref: "#/components/schemas/SankeyRumQuery"
Expand Down
2 changes: 1 addition & 1 deletion services/dashboards/src/v1/models/SankeyRumDataSource.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { UnparsedObject } from "@datadog/datadog-api-client";

/**
* Sankey widget with RUM data source.
* Product Analytics or RUM data source type.
*/
export type SankeyRumDataSource =
| typeof RUM
Expand Down
6 changes: 3 additions & 3 deletions services/dashboards/src/v1/models/SankeyRumQuery.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import { SankeyRumDataSource } from "./SankeyRumDataSource";
import { SankeyRumQueryMode } from "./SankeyRumQueryMode";

/**
* Sankey widget with RUM data source query.
* Query configuration for Product Analytics or RUM Sankey widget.
*/
export class SankeyRumQuery {
/**
* Product Analytics/RUM audience filters.
*/
"audienceFilters"?: ProductAnalyticsAudienceFilters;
/**
* Sankey widget with RUM data source.
* Product Analytics or RUM data source type.
*/
"dataSource": SankeyRumDataSource;
/**
Expand All @@ -27,7 +27,7 @@ export class SankeyRumQuery {
*/
"joinKeys"?: SankeyJoinKeys;
/**
* Sankey mode for RUM queries.
* Sankey mode for Product Analytics or RUM queries.
*/
"mode": SankeyRumQueryMode;
/**
Expand Down
2 changes: 1 addition & 1 deletion services/dashboards/src/v1/models/SankeyRumQueryMode.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { UnparsedObject } from "@datadog/datadog-api-client";

/**
* Sankey mode for RUM queries.
* Sankey mode for Product Analytics or RUM queries.
*/
export type SankeyRumQueryMode = typeof SOURCE | typeof TARGET | UnparsedObject;
export const SOURCE = "source";
Expand Down
4 changes: 2 additions & 2 deletions services/dashboards/src/v1/models/SankeyRumRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ import { SankeyRumQuery } from "./SankeyRumQuery";
import { SankeyWidgetDefinitionType } from "./SankeyWidgetDefinitionType";

/**
* Sankey widget with RUM data source.
* Sankey widget request for Product Analytics or RUM data source.
*/
export class SankeyRumRequest {
/**
* Sankey widget with RUM data source query.
* Query configuration for Product Analytics or RUM Sankey widget.
*/
"query": SankeyRumQuery;
/**
Expand Down
Loading