Skip to content

Commit b4a3dd6

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

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-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:42.865376",
8-
"spec_repo_commit": "21cf6edb"
7+
"regenerated": "2025-04-10 11:41:52.470601",
8+
"spec_repo_commit": "7f98e0a9"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-04-08 20:55:42.884212",
13-
"spec_repo_commit": "21cf6edb"
12+
"regenerated": "2025-04-10 11:41:52.486222",
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

packages/datadog-api-client-v1/models/ObjectSerializer.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1437,6 +1437,7 @@ const enumsMap: { [key: string]: any[] } = {
14371437
"assertFromJavascript",
14381438
"assertPageContains",
14391439
"assertPageLacks",
1440+
"assertRequests",
14401441
"click",
14411442
"extractFromJavascript",
14421443
"extractVariable",

packages/datadog-api-client-v1/models/SyntheticsStepType.ts

+2
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export type SyntheticsStepType =
2020
| typeof ASSERT_FROM_JAVASCRIPT
2121
| typeof ASSERT_PAGE_CONTAINS
2222
| typeof ASSERT_PAGE_LACKS
23+
| typeof ASSERT_REQUESTS
2324
| typeof CLICK
2425
| typeof EXTRACT_FROM_JAVASCRIPT
2526
| typeof EXTRACT_VARIABLE
@@ -46,6 +47,7 @@ export const ASSERT_FILE_DOWNLOAD = "assertFileDownload";
4647
export const ASSERT_FROM_JAVASCRIPT = "assertFromJavascript";
4748
export const ASSERT_PAGE_CONTAINS = "assertPageContains";
4849
export const ASSERT_PAGE_LACKS = "assertPageLacks";
50+
export const ASSERT_REQUESTS = "assertRequests";
4951
export const CLICK = "click";
5052
export const EXTRACT_FROM_JAVASCRIPT = "extractFromJavascript";
5153
export const EXTRACT_VARIABLE = "extractVariable";

0 commit comments

Comments
 (0)