Skip to content

Commit 680ba00

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 9dc6b6ea of spec repo
1 parent bd1cd99 commit 680ba00

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
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.5",
7-
"regenerated": "2023-07-21 15:02:52.745114",
8-
"spec_repo_commit": "1b0797fc"
7+
"regenerated": "2023-07-24 15:27:27.183153",
8+
"spec_repo_commit": "9dc6b6ea"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.5",
12-
"regenerated": "2023-07-21 15:02:52.758154",
13-
"spec_repo_commit": "1b0797fc"
12+
"regenerated": "2023-07-24 15:27:27.196168",
13+
"spec_repo_commit": "9dc6b6ea"
1414
}
1515
}
1616
}

.generator/schemas/v2/openapi.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1498,6 +1498,10 @@ components:
14981498
type: string
14991499
tags:
15001500
$ref: '#/components/schemas/TagsEventAttribute'
1501+
test_level:
1502+
description: The event test level.
1503+
example: session
1504+
type: string
15011505
timestamp:
15021506
$ref: '#/components/schemas/TimestampEventAttribute'
15031507
type: object
@@ -2500,7 +2504,7 @@ components:
25002504
links:
25012505
$ref: '#/components/schemas/CIAppResponseLinks'
25022506
meta:
2503-
$ref: '#/components/schemas/CIAppResponseMetadata'
2507+
$ref: '#/components/schemas/CIAppResponseMetadataWithPagination'
25042508
type: object
25052509
CIAppTestsBucketResponse:
25062510
description: Bucket values.

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ export class CIAppEventAttributes {
2424
* Array of tags associated with your event.
2525
*/
2626
"tags"?: Array<string>;
27+
/**
28+
* The event test level.
29+
*/
30+
"testLevel"?: string;
2731
/**
2832
* Timestamp of your event.
2933
*/
@@ -50,6 +54,10 @@ export class CIAppEventAttributes {
5054
baseName: "tags",
5155
type: "Array<string>",
5256
},
57+
testLevel: {
58+
baseName: "test_level",
59+
type: "string",
60+
},
5361
timestamp: {
5462
baseName: "timestamp",
5563
type: "Date",

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Copyright 2020-Present Datadog, Inc.
55
*/
66
import { CIAppResponseLinks } from "./CIAppResponseLinks";
7-
import { CIAppResponseMetadata } from "./CIAppResponseMetadata";
7+
import { CIAppResponseMetadataWithPagination } from "./CIAppResponseMetadataWithPagination";
88
import { CIAppTestsAggregationBucketsResponse } from "./CIAppTestsAggregationBucketsResponse";
99

1010
import { AttributeTypeMap } from "../../datadog-api-client-common/util";
@@ -24,7 +24,7 @@ export class CIAppTestsAnalyticsAggregateResponse {
2424
/**
2525
* The metadata associated with a request.
2626
*/
27-
"meta"?: CIAppResponseMetadata;
27+
"meta"?: CIAppResponseMetadataWithPagination;
2828

2929
/**
3030
* @ignore
@@ -45,7 +45,7 @@ export class CIAppTestsAnalyticsAggregateResponse {
4545
},
4646
meta: {
4747
baseName: "meta",
48-
type: "CIAppResponseMetadata",
48+
type: "CIAppResponseMetadataWithPagination",
4949
},
5050
};
5151

0 commit comments

Comments
 (0)