File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2025-04-08 20:55:41.621292 ",
8
- "spec_repo_commit": "21cf6edb "
7
+ "regenerated": "2025-04-10 11:41:51.981428 ",
8
+ "spec_repo_commit": "7f98e0a9 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2025-04-08 20:55:41.637249 ",
13
- "spec_repo_commit": "21cf6edb "
12
+ "regenerated": "2025-04-10 11:41:52.001570 ",
13
+ "spec_repo_commit": "7f98e0a9 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -16663,6 +16663,7 @@ components:
16663
16663
- assertFromJavascript
16664
16664
- assertPageContains
16665
16665
- assertPageLacks
16666
+ - assertRequests
16666
16667
- click
16667
16668
- extractFromJavascript
16668
16669
- extractVariable
@@ -16691,6 +16692,7 @@ components:
16691
16692
- ASSERT_FROM_JAVASCRIPT
16692
16693
- ASSERT_PAGE_CONTAINS
16693
16694
- ASSERT_PAGE_LACKS
16695
+ - ASSERT_REQUESTS
16694
16696
- CLICK
16695
16697
- EXTRACT_FROM_JAVASCRIPT
16696
16698
- EXTRACT_VARIABLE
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ pub enum SyntheticsStepType {
16
16
ASSERT_FROM_JAVASCRIPT ,
17
17
ASSERT_PAGE_CONTAINS ,
18
18
ASSERT_PAGE_LACKS ,
19
+ ASSERT_REQUESTS ,
19
20
CLICK ,
20
21
EXTRACT_FROM_JAVASCRIPT ,
21
22
EXTRACT_VARIABLE ,
@@ -47,6 +48,7 @@ impl ToString for SyntheticsStepType {
47
48
Self :: ASSERT_FROM_JAVASCRIPT => String :: from ( "assertFromJavascript" ) ,
48
49
Self :: ASSERT_PAGE_CONTAINS => String :: from ( "assertPageContains" ) ,
49
50
Self :: ASSERT_PAGE_LACKS => String :: from ( "assertPageLacks" ) ,
51
+ Self :: ASSERT_REQUESTS => String :: from ( "assertRequests" ) ,
50
52
Self :: CLICK => String :: from ( "click" ) ,
51
53
Self :: EXTRACT_FROM_JAVASCRIPT => String :: from ( "extractFromJavascript" ) ,
52
54
Self :: EXTRACT_VARIABLE => String :: from ( "extractVariable" ) ,
@@ -96,6 +98,7 @@ impl<'de> Deserialize<'de> for SyntheticsStepType {
96
98
"assertFromJavascript" => Self :: ASSERT_FROM_JAVASCRIPT ,
97
99
"assertPageContains" => Self :: ASSERT_PAGE_CONTAINS ,
98
100
"assertPageLacks" => Self :: ASSERT_PAGE_LACKS ,
101
+ "assertRequests" => Self :: ASSERT_REQUESTS ,
99
102
"click" => Self :: CLICK ,
100
103
"extractFromJavascript" => Self :: EXTRACT_FROM_JAVASCRIPT ,
101
104
"extractVariable" => Self :: EXTRACT_VARIABLE ,
You can’t perform that action at this time.
0 commit comments