@mailwoman/match 9.0.0 → 9.2.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/README.md +3 -3
  2. package/package.json +13 -4
package/README.md CHANGED
@@ -86,9 +86,9 @@ withTermFrequency(model: FSModel, records: SourceRecord[]): FSModel
86
86
  - [`@mailwoman/formatter`](../formatter) — `canonicalKey` used for blocking
87
87
  - [`@mailwoman/address-id`](../address-id) — complementary exact-match join key
88
88
  - [`@mailwoman/registry`](../registry) — high-level `resolveEntities` that composes this pipeline
89
- - [Geocode-First Record Matching](https://mailwoman.sister.software/articles/concepts/geocode-first-record-matching/)
90
- - [Dedup Entity Truth](https://mailwoman.sister.software/articles/concepts/dedup-entity-truth/)
91
- - [Spatial Expectation & Density](https://mailwoman.sister.software/articles/concepts/spatial-expectation-and-density/)
89
+ - [Geocode-First Record Matching](https://mailwoman.ai/articles/concepts/geocode-first-record-matching/)
90
+ - [Dedup Entity Truth](https://mailwoman.ai/articles/concepts/dedup-entity-truth/)
91
+ - [Spatial Expectation & Density](https://mailwoman.ai/articles/concepts/spatial-expectation-and-density/)
92
92
 
93
93
  ## License
94
94
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@mailwoman/match",
3
- "version": "9.0.0",
3
+ "version": "9.2.0",
4
4
  "description": "The geocode-first record matcher: block → score → cluster. This first cut ships the string comparators (Jaro / Jaro-Winkler + an edit-distance fallback for compound surnames) that the Fellegi-Sunter scorer is built on.",
5
5
  "license": "AGPL-3.0-only OR LicenseRef-Commercial",
6
6
  "repository": {
7
7
  "type": "git",
8
8
  "url": "https://github.com/sister-software/mailwoman.git",
9
- "directory": "match"
9
+ "directory": "packages/match"
10
10
  },
11
11
  "files": [
12
12
  "out/**/*.js",
@@ -20,7 +20,8 @@
20
20
  "!*.test.ts",
21
21
  "!*.test.tsx",
22
22
  "!**/*.test.ts",
23
- "!**/*.test.tsx"
23
+ "!**/*.test.tsx",
24
+ "!test/**"
24
25
  ],
25
26
  "type": "module",
26
27
  "exports": {
@@ -56,6 +57,10 @@
56
57
  "./tf": {
57
58
  "types": "./out/tf.d.ts",
58
59
  "default": "./out/tf.js"
60
+ },
61
+ "./gbt": {
62
+ "types": "./out/gbt.d.ts",
63
+ "default": "./out/gbt.js"
59
64
  }
60
65
  },
61
66
  "publishConfig": {
@@ -93,11 +98,15 @@
93
98
  "./tf": {
94
99
  "types": "./out/tf.d.ts",
95
100
  "default": "./out/tf.js"
101
+ },
102
+ "./gbt": {
103
+ "types": "./out/gbt.d.ts",
104
+ "default": "./out/gbt.js"
96
105
  }
97
106
  }
98
107
  },
99
108
  "dependencies": {
100
- "@mailwoman/spatial": "9.0.0",
109
+ "@mailwoman/spatial": "9.2.0",
101
110
  "fastest-levenshtein": "^1.0.16"
102
111
  },
103
112
  "devDependencies": {