Skip to content

Commit cafc7b3

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add drag and drop as new synthetics browser step type (#3831)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 2ba7580 commit cafc7b3

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

.generator/schemas/v1/openapi.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17712,6 +17712,8 @@ components:
1771217712
- assertPageLacks
1771317713
- assertRequests
1771417714
- click
17715+
- drag
17716+
- drop
1771517717
- extractFromJavascript
1771617718
- extractFromEmailBody
1771717719
- extractVariable
@@ -17742,6 +17744,8 @@ components:
1774217744
- ASSERT_PAGE_LACKS
1774317745
- ASSERT_REQUESTS
1774417746
- CLICK
17747+
- DRAG
17748+
- DROP
1774517749
- EXTRACT_FROM_JAVASCRIPT
1774617750
- EXTRACT_FROM_EMAIL_BODY
1774717751
- EXTRACT_VARIABLE

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1651,6 +1651,8 @@ const enumsMap: { [key: string]: any[] } = {
16511651
"assertPageLacks",
16521652
"assertRequests",
16531653
"click",
1654+
"drag",
1655+
"drop",
16541656
"extractFromJavascript",
16551657
"extractFromEmailBody",
16561658
"extractVariable",

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ export type SyntheticsStepType =
2222
| typeof ASSERT_PAGE_LACKS
2323
| typeof ASSERT_REQUESTS
2424
| typeof CLICK
25+
| typeof DRAG
26+
| typeof DROP
2527
| typeof EXTRACT_FROM_JAVASCRIPT
2628
| typeof EXTRACT_FROM_EMAIL_BODY
2729
| typeof EXTRACT_VARIABLE
@@ -50,6 +52,8 @@ export const ASSERT_PAGE_CONTAINS = "assertPageContains";
5052
export const ASSERT_PAGE_LACKS = "assertPageLacks";
5153
export const ASSERT_REQUESTS = "assertRequests";
5254
export const CLICK = "click";
55+
export const DRAG = "drag";
56+
export const DROP = "drop";
5357
export const EXTRACT_FROM_JAVASCRIPT = "extractFromJavascript";
5458
export const EXTRACT_FROM_EMAIL_BODY = "extractFromEmailBody";
5559
export const EXTRACT_VARIABLE = "extractVariable";

0 commit comments

Comments
 (0)