@mailwoman/kind-classifier 8.6.0 → 9.0.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 +1 -1
- package/index.ts +1 -1
- package/out/index.d.ts +1 -1
- package/out/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -61,7 +61,7 @@ locale-gate → kind-classifier → phrase-grouper → classifier → ...
|
|
|
61
61
|
- [`@mailwoman/query-shape`](../query-shape) — feeds structural data into this stage
|
|
62
62
|
- [`@mailwoman/locale-gate`](../locale-gate) — feeds locale context
|
|
63
63
|
- [`@mailwoman/phrase-grouper`](../phrase-grouper) — Stage 2.7, next in the pipeline
|
|
64
|
-
- [Staged Pipeline Contract](https://
|
|
64
|
+
- [Staged Pipeline Contract](https://github.com/sister-software/mailwoman/blob/main/docs/engineering/reference/STAGES.mdx)
|
|
65
65
|
|
|
66
66
|
## License
|
|
67
67
|
|
package/index.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* possibilities (alternatives) alongside the top pick so the coordinator can fall back when the
|
|
11
11
|
* winning kind isn't actionable.
|
|
12
12
|
*
|
|
13
|
-
* See `docs/
|
|
13
|
+
* See `docs/engineering/reference/STAGES.md` § Stage 2.5 for the contract.
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
16
|
export { classifyKind, classifyKindSync, createKindClassifier } from "./classify.ts"
|
package/out/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* possibilities (alternatives) alongside the top pick so the coordinator can fall back when the
|
|
11
11
|
* winning kind isn't actionable.
|
|
12
12
|
*
|
|
13
|
-
* See `docs/
|
|
13
|
+
* See `docs/engineering/reference/STAGES.md` § Stage 2.5 for the contract.
|
|
14
14
|
*/
|
|
15
15
|
export { classifyKind, classifyKindSync, createKindClassifier } from "./classify.ts";
|
|
16
16
|
export type { KindClassifierOpts } from "./classify.ts";
|
package/out/index.js
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* possibilities (alternatives) alongside the top pick so the coordinator can fall back when the
|
|
11
11
|
* winning kind isn't actionable.
|
|
12
12
|
*
|
|
13
|
-
* See `docs/
|
|
13
|
+
* See `docs/engineering/reference/STAGES.md` § Stage 2.5 for the contract.
|
|
14
14
|
*/
|
|
15
15
|
export { classifyKind, classifyKindSync, createKindClassifier } from "./classify.js";
|
|
16
16
|
export { matchPOISubject } from "./poi.js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mailwoman/kind-classifier",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "Stage 2.5 of the runtime pipeline — categorize inputs by query shape (postcode_only / locality_only / structured_address / intersection / po_box / landmark / vague). Rule-based for v1.",
|
|
5
5
|
"license": "AGPL-3.0-only OR LicenseRef-Commercial",
|
|
6
6
|
"repository": {
|
|
@@ -41,6 +41,6 @@
|
|
|
41
41
|
}
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@mailwoman/core": "
|
|
44
|
+
"@mailwoman/core": "9.0.0"
|
|
45
45
|
}
|
|
46
46
|
}
|