doc-detective-common 3.4.1-dev.3 → 3.4.1-dev.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/checkLink_v3.schema.json +2 -2
- package/dist/schemas/click_v3.schema.json +4 -4
- package/dist/schemas/config_v3.schema.json +147 -121
- package/dist/schemas/find_v3.schema.json +41 -28
- package/dist/schemas/httpRequest_v3.schema.json +2 -2
- package/dist/schemas/report_v3.schema.json +144 -118
- package/dist/schemas/resolvedTests_v3.schema.json +291 -239
- package/dist/schemas/runCode_v3.schema.json +4 -4
- package/dist/schemas/runShell_v3.schema.json +4 -4
- package/dist/schemas/screenshot_v3.schema.json +6 -6
- package/dist/schemas/spec_v3.schema.json +144 -118
- package/dist/schemas/step_v3.schema.json +71 -58
- package/dist/schemas/test_v3.schema.json +143 -117
- package/dist/schemas/type_v3.schema.json +8 -8
- package/package.json +1 -1
- package/src/schemas/build/checkLink_v3.schema.json +1 -1
- package/src/schemas/build/click_v3.schema.json +2 -2
- package/src/schemas/build/find_v3.schema.json +15 -2
- package/src/schemas/build/httpRequest_v3.schema.json +1 -1
- package/src/schemas/build/runCode_v3.schema.json +2 -2
- package/src/schemas/build/runShell_v3.schema.json +2 -2
- package/src/schemas/build/screenshot_v3.schema.json +2 -2
- package/src/schemas/build/test_v3.schema.json +1 -1
- package/src/schemas/build/type_v3.schema.json +3 -3
- package/src/schemas/output_schemas/checkLink_v3.schema.json +2 -2
- package/src/schemas/output_schemas/click_v3.schema.json +4 -4
- package/src/schemas/output_schemas/config_v3.schema.json +147 -121
- package/src/schemas/output_schemas/find_v3.schema.json +41 -28
- package/src/schemas/output_schemas/httpRequest_v3.schema.json +2 -2
- package/src/schemas/output_schemas/report_v3.schema.json +144 -118
- package/src/schemas/output_schemas/resolvedTests_v3.schema.json +291 -239
- package/src/schemas/output_schemas/runCode_v3.schema.json +4 -4
- package/src/schemas/output_schemas/runShell_v3.schema.json +4 -4
- package/src/schemas/output_schemas/screenshot_v3.schema.json +6 -6
- package/src/schemas/output_schemas/spec_v3.schema.json +144 -118
- package/src/schemas/output_schemas/step_v3.schema.json +71 -58
- package/src/schemas/output_schemas/test_v3.schema.json +143 -117
- package/src/schemas/output_schemas/type_v3.schema.json +8 -8
- package/src/schemas/schemas.json +1011 -829
- package/src/schemas/src_schemas/checkLink_v3.schema.json +1 -1
- package/src/schemas/src_schemas/click_v3.schema.json +2 -2
- package/src/schemas/src_schemas/find_v3.schema.json +12 -2
- package/src/schemas/src_schemas/httpRequest_v3.schema.json +1 -1
- package/src/schemas/src_schemas/runCode_v3.schema.json +2 -2
- package/src/schemas/src_schemas/runShell_v3.schema.json +2 -2
- package/src/schemas/src_schemas/screenshot_v3.schema.json +2 -2
- package/src/schemas/src_schemas/test_v3.schema.json +1 -1
- package/src/schemas/src_schemas/type_v3.schema.json +3 -3
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
76
76
|
},
|
|
77
77
|
"elementClass": {
|
|
78
|
-
"
|
|
78
|
+
"anyOf": [
|
|
79
79
|
{
|
|
80
80
|
"type": "string"
|
|
81
81
|
},
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"type": "object",
|
|
93
93
|
"description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
|
|
94
94
|
"additionalProperties": {
|
|
95
|
-
"
|
|
95
|
+
"anyOf": [
|
|
96
96
|
{
|
|
97
97
|
"type": "string"
|
|
98
98
|
},
|
|
@@ -198,7 +198,7 @@
|
|
|
198
198
|
"description": "data-testid attribute of the element to click. Supports exact match or regex pattern using /pattern/ syntax."
|
|
199
199
|
},
|
|
200
200
|
"elementClass": {
|
|
201
|
-
"
|
|
201
|
+
"anyOf": [
|
|
202
202
|
{
|
|
203
203
|
"type": "string"
|
|
204
204
|
},
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
"type": "object",
|
|
216
216
|
"description": "Object of attribute key-value pairs that the element must have. Values can be strings (supporting /pattern/ regex), numbers, or booleans. Boolean true matches attribute presence, false matches absence.",
|
|
217
217
|
"additionalProperties": {
|
|
218
|
-
"
|
|
218
|
+
"anyOf": [
|
|
219
219
|
{
|
|
220
220
|
"type": "string"
|
|
221
221
|
},
|