Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17698,6 +17698,8 @@ components:
- assertPageLacks
- assertRequests
- click
- drag
- drop
- extractFromJavascript
- extractFromEmailBody
- extractVariable
Expand Down Expand Up @@ -17728,6 +17730,8 @@ components:
- ASSERT_PAGE_LACKS
- ASSERT_REQUESTS
- CLICK
- DRAG
- DROP
- EXTRACT_FROM_JAVASCRIPT
- EXTRACT_FROM_EMAIL_BODY
- EXTRACT_VARIABLE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ public class SyntheticsStepType extends ModelEnum<String> {
"assertPageLacks",
"assertRequests",
"click",
"drag",
"drop",
"extractFromJavascript",
"extractFromEmailBody",
"extractVariable",
Expand Down Expand Up @@ -72,6 +74,8 @@ public class SyntheticsStepType extends ModelEnum<String> {
new SyntheticsStepType("assertPageLacks");
public static final SyntheticsStepType ASSERT_REQUESTS = new SyntheticsStepType("assertRequests");
public static final SyntheticsStepType CLICK = new SyntheticsStepType("click");
public static final SyntheticsStepType DRAG = new SyntheticsStepType("drag");
public static final SyntheticsStepType DROP = new SyntheticsStepType("drop");
public static final SyntheticsStepType EXTRACT_FROM_JAVASCRIPT =
new SyntheticsStepType("extractFromJavascript");
public static final SyntheticsStepType EXTRACT_FROM_EMAIL_BODY =
Expand Down
Loading