Skip to content

Commit 18a55e6

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Add assertRequests browser step type (#2797)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent 2c82ebd commit 18a55e6

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

.apigentools-info

+4-4
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-04-08 20:55:38.627224",
8-
"spec_repo_commit": "21cf6edb"
7+
"regenerated": "2025-04-10 11:41:55.216291",
8+
"spec_repo_commit": "7f98e0a9"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-08 20:55:38.642824",
13-
"spec_repo_commit": "21cf6edb"
12+
"regenerated": "2025-04-10 11:41:55.232985",
13+
"spec_repo_commit": "7f98e0a9"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -16663,6 +16663,7 @@ components:
1666316663
- assertFromJavascript
1666416664
- assertPageContains
1666516665
- assertPageLacks
16666+
- assertRequests
1666616667
- click
1666716668
- extractFromJavascript
1666816669
- extractVariable
@@ -16691,6 +16692,7 @@ components:
1669116692
- ASSERT_FROM_JAVASCRIPT
1669216693
- ASSERT_PAGE_CONTAINS
1669316694
- ASSERT_PAGE_LACKS
16695+
- ASSERT_REQUESTS
1669416696
- CLICK
1669516697
- EXTRACT_FROM_JAVASCRIPT
1669616698
- EXTRACT_VARIABLE

src/main/java/com/datadog/api/client/v1/model/SyntheticsStepType.java

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public class SyntheticsStepType extends ModelEnum<String> {
3434
"assertFromJavascript",
3535
"assertPageContains",
3636
"assertPageLacks",
37+
"assertRequests",
3738
"click",
3839
"extractFromJavascript",
3940
"extractVariable",
@@ -68,6 +69,7 @@ public class SyntheticsStepType extends ModelEnum<String> {
6869
new SyntheticsStepType("assertPageContains");
6970
public static final SyntheticsStepType ASSERT_PAGE_LACKS =
7071
new SyntheticsStepType("assertPageLacks");
72+
public static final SyntheticsStepType ASSERT_REQUESTS = new SyntheticsStepType("assertRequests");
7173
public static final SyntheticsStepType CLICK = new SyntheticsStepType("click");
7274
public static final SyntheticsStepType EXTRACT_FROM_JAVASCRIPT =
7375
new SyntheticsStepType("extractFromJavascript");

0 commit comments

Comments
 (0)