Skip to content

Commit 88d4c4f

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 8e33901f of spec repo
1 parent 2e73b2f commit 88d4c4f

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
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-07-08 19:08:07.248096",
8-
"spec_repo_commit": "7b042e12"
7+
"regenerated": "2025-07-09 14:25:51.802150",
8+
"spec_repo_commit": "8e33901f"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-07-08 19:08:07.264039",
13-
"spec_repo_commit": "7b042e12"
12+
"regenerated": "2025-07-09 14:25:51.818964",
13+
"spec_repo_commit": "8e33901f"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15154,11 +15154,13 @@ components:
1515415154
enum:
1515515155
- logs
1515615156
- rum
15157+
- dora
1515715158
example: logs
1515815159
type: string
1515915160
x-enum-varnames:
1516015161
- LOGS
1516115162
- RUM
15163+
- DORA
1516215164
EventsGroupBy:
1516315165
description: A dimension on which to split a query's results.
1516415166
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
@@ -2363,7 +2363,7 @@ const enumsMap: { [key: string]: any[] } = {
23632363
"max",
23642364
"avg",
23652365
],
2366-
EventsDataSource: ["logs", "rum"],
2366+
EventsDataSource: ["logs", "rum", "dora"],
23672367
EventsSort: ["timestamp", "-timestamp"],
23682368
EventsSortType: ["alphabetical", "measure"],
23692369
FastlyAccountType: ["fastly-accounts"],

0 commit comments

Comments
 (0)