Skip to content

Commit d27768c

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

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-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

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ public class SyntheticsStepType extends ModelEnum<String> {
3636
"assertPageLacks",
3737
"assertRequests",
3838
"click",
39+
"drag",
40+
"drop",
3941
"extractFromJavascript",
4042
"extractFromEmailBody",
4143
"extractVariable",
@@ -72,6 +74,8 @@ public class SyntheticsStepType extends ModelEnum<String> {
7274
new SyntheticsStepType("assertPageLacks");
7375
public static final SyntheticsStepType ASSERT_REQUESTS = new SyntheticsStepType("assertRequests");
7476
public static final SyntheticsStepType CLICK = new SyntheticsStepType("click");
77+
public static final SyntheticsStepType DRAG = new SyntheticsStepType("drag");
78+
public static final SyntheticsStepType DROP = new SyntheticsStepType("drop");
7579
public static final SyntheticsStepType EXTRACT_FROM_JAVASCRIPT =
7680
new SyntheticsStepType("extractFromJavascript");
7781
public static final SyntheticsStepType EXTRACT_FROM_EMAIL_BODY =

0 commit comments

Comments
 (0)