File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed
services/synthetics/src/v1/models Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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";
4345export const ASSERT_PAGE_LACKS = "assertPageLacks" ;
4446export const ASSERT_REQUESTS = "assertRequests" ;
4547export const CLICK = "click" ;
48+ export const DRAG = "drag" ;
49+ export const DROP = "drop" ;
4650export const EXTRACT_FROM_JAVASCRIPT = "extractFromJavascript" ;
4751export const EXTRACT_FROM_EMAIL_BODY = "extractFromEmailBody" ;
4852export const EXTRACT_VARIABLE = "extractVariable" ;
Original file line number Diff line number Diff 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" ,
You can’t perform that action at this time.
0 commit comments