File tree Expand file tree Collapse file tree 4 files changed +9
-4
lines changed
packages/datadog-api-client-v1/models Expand file tree Collapse file tree 4 files changed +9
-4
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.4",
7
- "regenerated": "2023-06-15 13:52:12.792888 ",
8
- "spec_repo_commit": "cd68c9b8 "
7
+ "regenerated": "2023-06-15 14:21:28.636683 ",
8
+ "spec_repo_commit": "aa16daa0 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.4",
12
- "regenerated": "2023-06-15 13:52:12.810917 ",
13
- "spec_repo_commit": "cd68c9b8 "
12
+ "regenerated": "2023-06-15 14:21:28.649631 ",
13
+ "spec_repo_commit": "aa16daa0 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -12408,6 +12408,7 @@ components:
12408
12408
- isInMoreThan
12409
12409
- isInLessThan
12410
12410
- doesNotExist
12411
+ - isUndefined
12411
12412
example: contains
12412
12413
type: string
12413
12414
x-enum-varnames:
@@ -12425,6 +12426,7 @@ components:
12425
12426
- IS_IN_MORE_DAYS_THAN
12426
12427
- IS_IN_LESS_DAYS_THAN
12427
12428
- DOES_NOT_EXIST
12429
+ - IS_UNDEFINED
12428
12430
SyntheticsAssertionTarget:
12429
12431
description: An assertion which uses a simple target.
12430
12432
properties:
Original file line number Diff line number Diff line change @@ -1056,6 +1056,7 @@ const enumsMap: { [key: string]: any[] } = {
1056
1056
"isInMoreThan" ,
1057
1057
"isInLessThan" ,
1058
1058
"doesNotExist" ,
1059
+ "isUndefined" ,
1059
1060
] ,
1060
1061
SyntheticsAssertionType : [
1061
1062
"body" ,
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ export type SyntheticsAssertionOperator =
25
25
| typeof IS_IN_MORE_DAYS_THAN
26
26
| typeof IS_IN_LESS_DAYS_THAN
27
27
| typeof DOES_NOT_EXIST
28
+ | typeof IS_UNDEFINED
28
29
| UnparsedObject ;
29
30
export const CONTAINS = "contains" ;
30
31
export const DOES_NOT_CONTAIN = "doesNotContain" ;
@@ -40,3 +41,4 @@ export const VALIDATES = "validates";
40
41
export const IS_IN_MORE_DAYS_THAN = "isInMoreThan" ;
41
42
export const IS_IN_LESS_DAYS_THAN = "isInLessThan" ;
42
43
export const DOES_NOT_EXIST = "doesNotExist" ;
44
+ export const IS_UNDEFINED = "isUndefined" ;
You can’t perform that action at this time.
0 commit comments