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
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
{
|
|
14
14
|
"type": "array",
|
|
15
15
|
"items": {
|
|
16
|
-
"
|
|
16
|
+
"anyOf": [
|
|
17
17
|
{
|
|
18
18
|
"type": "string"
|
|
19
19
|
}
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
{
|
|
37
37
|
"type": "array",
|
|
38
38
|
"items": {
|
|
39
|
-
"
|
|
39
|
+
"anyOf": [
|
|
40
40
|
{
|
|
41
41
|
"type": "string"
|
|
42
42
|
}
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
68
68
|
},
|
|
69
69
|
"elementClass": {
|
|
70
|
-
"
|
|
70
|
+
"anyOf": [
|
|
71
71
|
{
|
|
72
72
|
"type": "string"
|
|
73
73
|
},
|
|
@@ -84,7 +84,7 @@
|
|
|
84
84
|
"type": "object",
|
|
85
85
|
"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.",
|
|
86
86
|
"additionalProperties": {
|
|
87
|
-
"
|
|
87
|
+
"anyOf": [
|
|
88
88
|
{
|
|
89
89
|
"type": "string"
|
|
90
90
|
},
|
|
@@ -120,7 +120,7 @@
|
|
|
120
120
|
{
|
|
121
121
|
"type": "array",
|
|
122
122
|
"items": {
|
|
123
|
-
"
|
|
123
|
+
"anyOf": [
|
|
124
124
|
{
|
|
125
125
|
"type": "string"
|
|
126
126
|
}
|
|
@@ -143,7 +143,7 @@
|
|
|
143
143
|
{
|
|
144
144
|
"type": "array",
|
|
145
145
|
"items": {
|
|
146
|
-
"
|
|
146
|
+
"anyOf": [
|
|
147
147
|
{
|
|
148
148
|
"type": "string"
|
|
149
149
|
}
|
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
"description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
|
|
175
175
|
},
|
|
176
176
|
"elementClass": {
|
|
177
|
-
"
|
|
177
|
+
"anyOf": [
|
|
178
178
|
{
|
|
179
179
|
"type": "string"
|
|
180
180
|
},
|
|
@@ -191,7 +191,7 @@
|
|
|
191
191
|
"type": "object",
|
|
192
192
|
"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.",
|
|
193
193
|
"additionalProperties": {
|
|
194
|
-
"
|
|
194
|
+
"anyOf": [
|
|
195
195
|
{
|
|
196
196
|
"type": "string"
|
|
197
197
|
},
|