doc-detective-common 3.4.1-dev.1 → 3.4.1-dev.3

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.
Files changed (31) hide show
  1. package/dist/schemas/click_v3.schema.json +142 -6
  2. package/dist/schemas/config_v3.schema.json +2146 -66
  3. package/dist/schemas/find_v3.schema.json +626 -20
  4. package/dist/schemas/report_v3.schema.json +2139 -59
  5. package/dist/schemas/resolvedTests_v3.schema.json +4304 -144
  6. package/dist/schemas/screenshot_v3.schema.json +204 -0
  7. package/dist/schemas/spec_v3.schema.json +2139 -59
  8. package/dist/schemas/step_v3.schema.json +1075 -35
  9. package/dist/schemas/test_v3.schema.json +2139 -59
  10. package/dist/schemas/type_v3.schema.json +94 -0
  11. package/package.json +1 -1
  12. package/src/resolvePaths.js +5 -0
  13. package/src/schemas/build/click_v3.schema.json +71 -3
  14. package/src/schemas/build/find_v3.schema.json +77 -4
  15. package/src/schemas/build/screenshot_v3.schema.json +68 -0
  16. package/src/schemas/build/type_v3.schema.json +47 -0
  17. package/src/schemas/output_schemas/click_v3.schema.json +142 -6
  18. package/src/schemas/output_schemas/config_v3.schema.json +2146 -66
  19. package/src/schemas/output_schemas/find_v3.schema.json +626 -20
  20. package/src/schemas/output_schemas/report_v3.schema.json +2139 -59
  21. package/src/schemas/output_schemas/resolvedTests_v3.schema.json +4304 -144
  22. package/src/schemas/output_schemas/screenshot_v3.schema.json +204 -0
  23. package/src/schemas/output_schemas/spec_v3.schema.json +2139 -59
  24. package/src/schemas/output_schemas/step_v3.schema.json +1075 -35
  25. package/src/schemas/output_schemas/test_v3.schema.json +2139 -59
  26. package/src/schemas/output_schemas/type_v3.schema.json +94 -0
  27. package/src/schemas/schemas.json +14926 -366
  28. package/src/schemas/src_schemas/click_v3.schema.json +71 -3
  29. package/src/schemas/src_schemas/find_v3.schema.json +77 -4
  30. package/src/schemas/src_schemas/screenshot_v3.schema.json +68 -0
  31. package/src/schemas/src_schemas/type_v3.schema.json +47 -0
@@ -53,6 +53,53 @@
53
53
  "selector": {
54
54
  "type": "string",
55
55
  "description": "Selector for the element to type into. If not specified, the typing occurs in the active element."
56
+ },
57
+ "elementText": {
58
+ "type": "string",
59
+ "description": "Display text of the element to type into. If combined with other element finding fields, the element must match all specified criteria."
60
+ },
61
+ "elementId": {
62
+ "type": "string",
63
+ "description": "ID attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
64
+ },
65
+ "elementTestId": {
66
+ "type": "string",
67
+ "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
68
+ },
69
+ "elementClass": {
70
+ "oneOf": [
71
+ {
72
+ "type": "string"
73
+ },
74
+ {
75
+ "type": "array",
76
+ "items": {
77
+ "type": "string"
78
+ }
79
+ }
80
+ ],
81
+ "description": "Class or array of classes that the element must have. Each class supports exact match or regex pattern using /pattern/ syntax. Element must have all specified classes."
82
+ },
83
+ "elementAttribute": {
84
+ "type": "object",
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
+ "additionalProperties": {
87
+ "oneOf": [
88
+ {
89
+ "type": "string"
90
+ },
91
+ {
92
+ "type": "number"
93
+ },
94
+ {
95
+ "type": "boolean"
96
+ }
97
+ ]
98
+ }
99
+ },
100
+ "elementAria": {
101
+ "type": "string",
102
+ "description": "Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax."
56
103
  }
57
104
  },
58
105
  "required": [
@@ -113,6 +160,53 @@
113
160
  "selector": {
114
161
  "type": "string",
115
162
  "description": "Selector for the element to type into. If not specified, the typing occurs in the active element."
163
+ },
164
+ "elementText": {
165
+ "type": "string",
166
+ "description": "Display text of the element to type into. If combined with other element finding fields, the element must match all specified criteria."
167
+ },
168
+ "elementId": {
169
+ "type": "string",
170
+ "description": "ID attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
171
+ },
172
+ "elementTestId": {
173
+ "type": "string",
174
+ "description": "data-testid attribute of the element to find. Supports exact match or regex pattern using /pattern/ syntax."
175
+ },
176
+ "elementClass": {
177
+ "oneOf": [
178
+ {
179
+ "type": "string"
180
+ },
181
+ {
182
+ "type": "array",
183
+ "items": {
184
+ "type": "string"
185
+ }
186
+ }
187
+ ],
188
+ "description": "Class or array of classes that the element must have. Each class supports exact match or regex pattern using /pattern/ syntax. Element must have all specified classes."
189
+ },
190
+ "elementAttribute": {
191
+ "type": "object",
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
+ "additionalProperties": {
194
+ "oneOf": [
195
+ {
196
+ "type": "string"
197
+ },
198
+ {
199
+ "type": "number"
200
+ },
201
+ {
202
+ "type": "boolean"
203
+ }
204
+ ]
205
+ }
206
+ },
207
+ "elementAria": {
208
+ "type": "string",
209
+ "description": "Computed accessible name of the element per ARIA specification. Supports exact match or regex pattern using /pattern/ syntax."
116
210
  }
117
211
  },
118
212
  "required": [