@zalkera/client 0.11.0 → 0.13.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.
- package/README.md +5 -2
- package/bin/check-aeo-surfaces.mjs +706 -0
- package/contracts/aeo-surface-guarantees.json +4 -4
- package/dist/index.cjs +27 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +57 -5
- package/dist/index.d.ts +57 -5
- package/dist/index.js +24 -2
- package/dist/index.js.map +1 -1
- package/lib/site-crawl.mjs +227 -0
- package/llms.txt +27 -5
- package/package.json +57 -50
package/README.md
CHANGED
|
@@ -65,8 +65,11 @@ await zalkera.submitInquiry({name, email, subject, message}, {clientIp});
|
|
|
65
65
|
`node_modules/@zalkera/client/contracts/aeo-surface-guarantees.json`
|
|
66
66
|
패키지 하위 경로로도 열린다 — `require("@zalkera/client/contracts/aeo-surface-guarantees.json")`,
|
|
67
67
|
ESM 은 `import … with { type: "json" }`(실측 확인).
|
|
68
|
-
- 이 표를 읽어 **개시된 사이트를 크롤해** 판정하는
|
|
69
|
-
`
|
|
68
|
+
- 이 표를 읽어 **개시된 사이트를 크롤해** 판정하는 **검사기도 이 패키지가 배송한다** —
|
|
69
|
+
`npx zalkera-aeo-check <사이트URL> --category BOOKING`(bin `zalkera-aeo-check`).
|
|
70
|
+
소스가 아니라 산출물을 재므로 스택·디자인을 가리지 않는다.
|
|
71
|
+
보장 주장이 없는 사이트는 `--category` 대신 `--site-wide-only`(robots·sitemap·JSON-LD 절대 URL 만).
|
|
72
|
+
스토어프론트 템플릿의 `npm run check:aeo` 는 이 bin 을 부르는 wrapper 다.
|
|
70
73
|
- 정본은 잘커라 백엔드에 있고 여기 실린 것은 그 **발행 산출물**이다(발행 전 기계 대조).
|
|
71
74
|
|
|
72
75
|
## API 스펙 (메서드)
|