File tree 4 files changed +20
-8
lines changed
packages/datadog-api-client-v2/models
4 files changed +20
-8
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"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 "
9
9
},
10
10
"v2": {
11
11
"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 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -1498,6 +1498,10 @@ components:
1498
1498
type: string
1499
1499
tags:
1500
1500
$ref: '#/components/schemas/TagsEventAttribute'
1501
+ test_level:
1502
+ description: The event test level.
1503
+ example: session
1504
+ type: string
1501
1505
timestamp:
1502
1506
$ref: '#/components/schemas/TimestampEventAttribute'
1503
1507
type: object
@@ -2500,7 +2504,7 @@ components:
2500
2504
links:
2501
2505
$ref: '#/components/schemas/CIAppResponseLinks'
2502
2506
meta:
2503
- $ref: '#/components/schemas/CIAppResponseMetadata '
2507
+ $ref: '#/components/schemas/CIAppResponseMetadataWithPagination '
2504
2508
type: object
2505
2509
CIAppTestsBucketResponse:
2506
2510
description: Bucket values.
Original file line number Diff line number Diff line change @@ -24,6 +24,10 @@ export class CIAppEventAttributes {
24
24
* Array of tags associated with your event.
25
25
*/
26
26
"tags" ?: Array < string > ;
27
+ /**
28
+ * The event test level.
29
+ */
30
+ "testLevel" ?: string ;
27
31
/**
28
32
* Timestamp of your event.
29
33
*/
@@ -50,6 +54,10 @@ export class CIAppEventAttributes {
50
54
baseName : "tags" ,
51
55
type : "Array<string>" ,
52
56
} ,
57
+ testLevel : {
58
+ baseName : "test_level" ,
59
+ type : "string" ,
60
+ } ,
53
61
timestamp : {
54
62
baseName : "timestamp" ,
55
63
type : "Date" ,
Original file line number Diff line number Diff line change 4
4
* Copyright 2020-Present Datadog, Inc.
5
5
*/
6
6
import { CIAppResponseLinks } from "./CIAppResponseLinks" ;
7
- import { CIAppResponseMetadata } from "./CIAppResponseMetadata " ;
7
+ import { CIAppResponseMetadataWithPagination } from "./CIAppResponseMetadataWithPagination " ;
8
8
import { CIAppTestsAggregationBucketsResponse } from "./CIAppTestsAggregationBucketsResponse" ;
9
9
10
10
import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
@@ -24,7 +24,7 @@ export class CIAppTestsAnalyticsAggregateResponse {
24
24
/**
25
25
* The metadata associated with a request.
26
26
*/
27
- "meta" ?: CIAppResponseMetadata ;
27
+ "meta" ?: CIAppResponseMetadataWithPagination ;
28
28
29
29
/**
30
30
* @ignore
@@ -45,7 +45,7 @@ export class CIAppTestsAnalyticsAggregateResponse {
45
45
} ,
46
46
meta : {
47
47
baseName : "meta" ,
48
- type : "CIAppResponseMetadata " ,
48
+ type : "CIAppResponseMetadataWithPagination " ,
49
49
} ,
50
50
} ;
51
51
You can’t perform that action at this time.
0 commit comments