@ia-qa/self-healing 1.3.5 → 1.4.1
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/README.md +53 -2
- package/TUTORIAL.md +31 -0
- package/dist/cli/baseline.js +7 -0
- package/dist/cli/baseline.js.map +1 -1
- package/dist/cli/diff.d.ts +7 -0
- package/dist/cli/diff.js +25 -0
- package/dist/cli/diff.js.map +1 -1
- package/dist/cli/discover.js +90 -18
- package/dist/cli/discover.js.map +1 -1
- package/dist/cli/index.js +1 -0
- package/dist/cli/index.js.map +1 -1
- package/dist/cli/ingest.js +6 -0
- package/dist/cli/ingest.js.map +1 -1
- package/dist/cli/map.js +10 -0
- package/dist/cli/map.js.map +1 -1
- package/dist/cli/run.js +19 -0
- package/dist/cli/run.js.map +1 -1
- package/dist/cli/summary.d.ts +19 -0
- package/dist/cli/summary.js +15 -0
- package/dist/cli/summary.js.map +1 -0
- package/dist/crawl.d.ts +2 -0
- package/dist/crawl.js +9 -2
- package/dist/crawl.js.map +1 -1
- package/dist/discovery/safety.d.ts +35 -5
- package/dist/discovery/safety.js +37 -15
- package/dist/discovery/safety.js.map +1 -1
- package/dist/discovery/sitemap.d.ts +26 -5
- package/dist/discovery/sitemap.js +29 -8
- package/dist/discovery/sitemap.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,9 +10,9 @@ export { renderPageContract, saveMarkdown, markdownPath } from './markdown';
|
|
|
10
10
|
export { mapUrl, pageNameFromUrl } from './mapUrl';
|
|
11
11
|
export { resolvePageName } from './pageName';
|
|
12
12
|
export { isSafeCandidateUrl, normalizedPath, toCandidate, mergePages, UNSAFE_URL_RE, } from './discovery/safety';
|
|
13
|
-
export type { Candidate } from './discovery/safety';
|
|
13
|
+
export type { Candidate, HostOptions } from './discovery/safety';
|
|
14
14
|
export { discoverFromSitemap, extractLocs, isSitemapIndex, sitemapsFromRobots, } from './discovery/sitemap';
|
|
15
|
-
export type { SitemapOptions, FetchLike } from './discovery/sitemap';
|
|
15
|
+
export type { SitemapOptions, SitemapResult, SitemapStats, FetchLike } from './discovery/sitemap';
|
|
16
16
|
export { crawlApp } from './crawl';
|
|
17
17
|
export type { CrawlOptions } from './crawl';
|
|
18
18
|
export type { PageNameResolution } from './pageName';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ia-qa/self-healing",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Local-first self-healing for UI tests: a local MCP server + CLI that map your app's pages to a role/name/selector contract, diff selector drift (PASS/FIX/BLOCK), and apply deterministic fixes to Cypress/Playwright/Selenium tests. Runs on your machine — nothing leaves it.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"self-healing",
|