Skip to content

Commit 4cfda2d

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 4c38a89 of spec repo
1 parent 717af64 commit 4cfda2d

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

.generated-info

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"spec_repo_commit": "ef70ddf",
3-
"generated": "2025-07-17 17:28:07.763"
2+
"spec_repo_commit": "4c38a89",
3+
"generated": "2025-07-17 19:09:51.216"
44
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15479,11 +15479,13 @@ components:
1547915479
enum:
1548015480
- logs
1548115481
- rum
15482+
- dora
1548215483
example: logs
1548315484
type: string
1548415485
x-enum-varnames:
1548515486
- LOGS
1548615487
- RUM
15488+
- DORA
1548715489
EventsGroupBy:
1548815490
description: A dimension on which to split a query's results.
1548915491
properties:

packages/datadog-api-client-v2/models/EventsDataSource.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,11 @@ import { UnparsedObject } from "../../datadog-api-client-common/util";
1010
* A data source that is powered by the Events Platform.
1111
*/
1212

13-
export type EventsDataSource = typeof LOGS | typeof RUM | UnparsedObject;
13+
export type EventsDataSource =
14+
| typeof LOGS
15+
| typeof RUM
16+
| typeof DORA
17+
| UnparsedObject;
1418
export const LOGS = "logs";
1519
export const RUM = "rum";
20+
export const DORA = "dora";

packages/datadog-api-client-v2/models/ObjectSerializer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2398,7 +2398,7 @@ const enumsMap: { [key: string]: any[] } = {
23982398
"max",
23992399
"avg",
24002400
],
2401-
EventsDataSource: ["logs", "rum"],
2401+
EventsDataSource: ["logs", "rum", "dora"],
24022402
EventsSort: ["timestamp", "-timestamp"],
24032403
EventsSortType: ["alphabetical", "measure"],
24042404
FastlyAccountType: ["fastly-accounts"],

0 commit comments

Comments
 (0)