@jrpool/kilotest 31.0.1 → 31.1.0

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 (2) hide show
  1. package/openapi.yaml +4 -4
  2. package/package.json +1 -1
package/openapi.yaml CHANGED
@@ -15,7 +15,7 @@ servers:
15
15
  paths:
16
16
  /api/testRecForm:
17
17
  post:
18
- operationId: testRecForm
18
+ operationId: submitWebAccessibilityTestRequest
19
19
  summary: Receives a testing recommendation
20
20
  description: Receives a recommendation for Kilotest to test a particular web page.
21
21
  requestBody:
@@ -35,7 +35,7 @@ paths:
35
35
 
36
36
  /api/targets:
37
37
  get:
38
- operationId: targets
38
+ operationId: summarizeAccessibilityOfAllTestedWebPages
39
39
  summary: Summarizes all available reports
40
40
  description: Returns summary data about every non-hidden report available from Kilotest, including the name and URL of the tested web page, when the testing was performed, how many issues were reported, and URLs for retrieving more detailed data from the report.
41
41
  responses:
@@ -48,7 +48,7 @@ paths:
48
48
 
49
49
  /api/reportIssues/{timeStamp}/{jobID}:
50
50
  get:
51
- operationId: getReportIssues
51
+ operationId: listAccessibilityIssuesOnOneWebPage
52
52
  summary: Gets data on issues from a specific report
53
53
  description: Returns data about the issues reported in a specific Kilotest report, grouped by priority. The data on each issue include the tools that reported it, the number of HTML elements exhibiting it, and URLs for retrieving element-level detail. The timeStamp and jobID components identify the report and are available in the targets response.
54
54
  parameters:
@@ -81,7 +81,7 @@ paths:
81
81
 
82
82
  /api/reportIssue/{issueID}/{timeStamp}/{jobID}:
83
83
  get:
84
- operationId: getReportIssue
84
+ operationId: listHTMLElementsHavingOneAccessibilityIssue
85
85
  summary: Gets details about a specific issue in a specific report (NOT YET IMPLEMENTED)
86
86
  description: Returns details about a single issue within a specific report, including which HTML elements exhibit the issue and, for each such element, URLs for retrieving tool-by-tool diagnoses of the issue on the element. NOT YET IMPLEMENTED.
87
87
  parameters:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jrpool/kilotest",
3
- "version": "31.0.1",
3
+ "version": "31.1.0",
4
4
  "description": "An ensemble testing service with a focus on accessibility",
5
5
  "main": "index.js",
6
6
  "scripts": {