Skip to content

Commit feadf45

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

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

services/synthetics/src/v1/models/SyntheticsStepType.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ export type SyntheticsStepType =
1515
| typeof ASSERT_PAGE_LACKS
1616
| typeof ASSERT_REQUESTS
1717
| typeof CLICK
18+
| typeof DRAG
19+
| typeof DROP
1820
| typeof EXTRACT_FROM_JAVASCRIPT
1921
| typeof EXTRACT_FROM_EMAIL_BODY
2022
| typeof EXTRACT_VARIABLE
@@ -43,6 +45,8 @@ export const ASSERT_PAGE_CONTAINS = "assertPageContains";
4345
export const ASSERT_PAGE_LACKS = "assertPageLacks";
4446
export const ASSERT_REQUESTS = "assertRequests";
4547
export const CLICK = "click";
48+
export const DRAG = "drag";
49+
export const DROP = "drop";
4650
export const EXTRACT_FROM_JAVASCRIPT = "extractFromJavascript";
4751
export const EXTRACT_FROM_EMAIL_BODY = "extractFromEmailBody";
4852
export const EXTRACT_VARIABLE = "extractVariable";

services/synthetics/src/v1/models/TypingInfo.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,8 @@ export const TypingInfo: ModelTypingInfo = {
343343
"assertPageLacks",
344344
"assertRequests",
345345
"click",
346+
"drag",
347+
"drop",
346348
"extractFromJavascript",
347349
"extractFromEmailBody",
348350
"extractVariable",

0 commit comments

Comments
 (0)