@toolpath/tool-scraper 0.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.
- package/LICENSE +21 -0
- package/README.md +98 -0
- package/dist/conventions.d.ts +124 -0
- package/dist/conventions.js +143 -0
- package/dist/errors.d.ts +46 -0
- package/dist/errors.js +53 -0
- package/dist/families/destinytool.d.ts +49 -0
- package/dist/families/destinytool.js +55 -0
- package/dist/families/index.d.ts +59 -0
- package/dist/families/index.js +91 -0
- package/dist/families/kennametal.d.ts +757 -0
- package/dist/families/kennametal.js +660 -0
- package/dist/families/regofix.d.ts +185 -0
- package/dist/families/regofix.js +250 -0
- package/dist/family.d.ts +130 -0
- package/dist/family.js +38 -0
- package/dist/fetch.d.ts +98 -0
- package/dist/fetch.js +116 -0
- package/dist/identity.d.ts +133 -0
- package/dist/identity.js +118 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +31 -0
- package/dist/node/cad-mirror.d.ts +55 -0
- package/dist/node/cad-mirror.js +89 -0
- package/dist/node/cli.d.ts +35 -0
- package/dist/node/cli.js +340 -0
- package/dist/node/csv.d.ts +47 -0
- package/dist/node/csv.js +123 -0
- package/dist/node/index.d.ts +16 -0
- package/dist/node/index.js +16 -0
- package/dist/node/main.d.ts +13 -0
- package/dist/node/main.js +14 -0
- package/dist/node/paths.d.ts +60 -0
- package/dist/node/paths.js +80 -0
- package/dist/node/receipts.d.ts +100 -0
- package/dist/node/receipts.js +107 -0
- package/dist/order.d.ts +10 -0
- package/dist/order.js +12 -0
- package/dist/provenance.d.ts +125 -0
- package/dist/provenance.js +133 -0
- package/dist/records.d.ts +305 -0
- package/dist/records.js +297 -0
- package/dist/registry.d.ts +63 -0
- package/dist/registry.js +145 -0
- package/dist/scrape.d.ts +70 -0
- package/dist/scrape.js +37 -0
- package/dist/thread.d.ts +48 -0
- package/dist/thread.js +98 -0
- package/dist/uuid5.d.ts +31 -0
- package/dist/uuid5.js +64 -0
- package/dist/vendors/destinytool/index.d.ts +11 -0
- package/dist/vendors/destinytool/index.js +11 -0
- package/dist/vendors/destinytool/records.d.ts +118 -0
- package/dist/vendors/destinytool/records.js +266 -0
- package/dist/vendors/destinytool/scrape.d.ts +108 -0
- package/dist/vendors/destinytool/scrape.js +192 -0
- package/dist/vendors/kennametal/cad.d.ts +87 -0
- package/dist/vendors/kennametal/cad.js +119 -0
- package/dist/vendors/kennametal/index.d.ts +21 -0
- package/dist/vendors/kennametal/index.js +21 -0
- package/dist/vendors/kennametal/materials.d.ts +143 -0
- package/dist/vendors/kennametal/materials.js +200 -0
- package/dist/vendors/kennametal/records.d.ts +88 -0
- package/dist/vendors/kennametal/records.js +241 -0
- package/dist/vendors/kennametal/scrape.d.ts +111 -0
- package/dist/vendors/kennametal/scrape.js +226 -0
- package/dist/vendors/kennametal/thread-column.d.ts +28 -0
- package/dist/vendors/kennametal/thread-column.js +41 -0
- package/dist/vendors/regofix/index.d.ts +8 -0
- package/dist/vendors/regofix/index.js +8 -0
- package/dist/vendors/regofix/scrape.d.ts +237 -0
- package/dist/vendors/regofix/scrape.js +521 -0
- package/package.json +76 -0
|
@@ -0,0 +1,757 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Kennametal's and WIDIA's families.
|
|
3
|
+
*
|
|
4
|
+
* One module because they are one platform: the same AEM/Hybris component on the
|
|
5
|
+
* same URL shape, differing only in host, component node and vendor string —
|
|
6
|
+
* `identity.BRANDS` is where that is recorded, and `vendors/kennametal/` is the
|
|
7
|
+
* one adapter that serves both. Their *receipts* stay separate, because an
|
|
8
|
+
* adapter is a fact about code and a scraped CSV is a fact about who published
|
|
9
|
+
* it.
|
|
10
|
+
*
|
|
11
|
+
* `familyCode` is the vendor's numeric family code, lifted out of the family
|
|
12
|
+
* page URL to scrape the table in the first place. It is config rather than
|
|
13
|
+
* runbook prose because `materials` needs it *after* the scrape, to re-query the
|
|
14
|
+
* same family through the workpiece-material facet — recording it here is what
|
|
15
|
+
* makes the material sweep re-runnable without going back to the browser.
|
|
16
|
+
*
|
|
17
|
+
* **Holder families carry no `familyCode`**, and that is a gap rather than a
|
|
18
|
+
* rule: they were scraped by hand from a code read off the page at the time. A
|
|
19
|
+
* re-scrape needs the code passed on the command line until somebody records it.
|
|
20
|
+
*/
|
|
21
|
+
export declare const FAMILIES: {
|
|
22
|
+
readonly 'godrill_3xd_metric.csv': {
|
|
23
|
+
readonly id: "godrill-3xd-metric";
|
|
24
|
+
readonly rows: 259;
|
|
25
|
+
readonly familyCode: "100003658";
|
|
26
|
+
readonly kind: "drill";
|
|
27
|
+
readonly columns: {
|
|
28
|
+
readonly DC: "D1";
|
|
29
|
+
readonly SFDM: "D";
|
|
30
|
+
readonly OAL: "L";
|
|
31
|
+
readonly LCF: "L3";
|
|
32
|
+
};
|
|
33
|
+
readonly facts: {
|
|
34
|
+
readonly unit: {
|
|
35
|
+
readonly value: "millimeters";
|
|
36
|
+
readonly source: "vendor-stated";
|
|
37
|
+
readonly cite: "the vendor titles the family \"…3xD straight shank metric\"; both unit columns are published, so this decides which is displayed";
|
|
38
|
+
};
|
|
39
|
+
readonly flutes: {
|
|
40
|
+
readonly value: 2;
|
|
41
|
+
readonly source: "assumed";
|
|
42
|
+
readonly note: "no flute-count column; every GOdrill in this family is a two-flute twist drill";
|
|
43
|
+
readonly checked: "2026-07-24";
|
|
44
|
+
readonly by: "JG";
|
|
45
|
+
};
|
|
46
|
+
readonly pointAngle: {
|
|
47
|
+
readonly value: 140;
|
|
48
|
+
readonly source: "assumed";
|
|
49
|
+
readonly note: "no point angle is published anywhere on this family; 140° is the common GOdrill grind. Contrast the KenDrill TXD families, where L5 lets it be derived";
|
|
50
|
+
readonly checked: "2026-07-24";
|
|
51
|
+
readonly by: "JG";
|
|
52
|
+
};
|
|
53
|
+
readonly coolantThrough: {
|
|
54
|
+
readonly value: false;
|
|
55
|
+
readonly source: "assumed";
|
|
56
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
57
|
+
readonly checked: "2026-08-05";
|
|
58
|
+
readonly by: "JG";
|
|
59
|
+
};
|
|
60
|
+
readonly nonFerrous: {
|
|
61
|
+
readonly value: false;
|
|
62
|
+
readonly source: "vendor-stated";
|
|
63
|
+
readonly cite: "the workpiece-material facet returns P M K N S H — ferrous groups included";
|
|
64
|
+
};
|
|
65
|
+
readonly bmc: {
|
|
66
|
+
readonly value: "carbide";
|
|
67
|
+
readonly source: "vendor-stated";
|
|
68
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
readonly 'kenna_universal_3xd_metric.csv': {
|
|
73
|
+
readonly id: "kenna-universal-3xd-metric";
|
|
74
|
+
readonly rows: 177;
|
|
75
|
+
readonly familyCode: "100004307";
|
|
76
|
+
readonly kind: "drill";
|
|
77
|
+
readonly columns: {
|
|
78
|
+
readonly DC: "D1";
|
|
79
|
+
readonly SFDM: "D";
|
|
80
|
+
readonly OAL: "L";
|
|
81
|
+
readonly LCF: "L3";
|
|
82
|
+
};
|
|
83
|
+
readonly facts: {
|
|
84
|
+
readonly unit: {
|
|
85
|
+
readonly value: "millimeters";
|
|
86
|
+
readonly source: "vendor-stated";
|
|
87
|
+
readonly cite: "the vendor titles the family \"…3xD IC straight shank metric\"; both unit columns are published";
|
|
88
|
+
};
|
|
89
|
+
readonly flutes: {
|
|
90
|
+
readonly value: 2;
|
|
91
|
+
readonly source: "assumed";
|
|
92
|
+
readonly note: "no flute-count column; a two-flute twist drill";
|
|
93
|
+
readonly checked: "2026-07-24";
|
|
94
|
+
readonly by: "JG";
|
|
95
|
+
};
|
|
96
|
+
readonly pointAngle: {
|
|
97
|
+
readonly value: 140;
|
|
98
|
+
readonly source: "assumed";
|
|
99
|
+
readonly note: "no point angle published on this family; the same grind assumed as GOdrill";
|
|
100
|
+
readonly checked: "2026-07-24";
|
|
101
|
+
readonly by: "JG";
|
|
102
|
+
};
|
|
103
|
+
readonly coolantThrough: {
|
|
104
|
+
readonly value: false;
|
|
105
|
+
readonly source: "assumed";
|
|
106
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
107
|
+
readonly checked: "2026-08-05";
|
|
108
|
+
readonly by: "JG";
|
|
109
|
+
};
|
|
110
|
+
readonly nonFerrous: {
|
|
111
|
+
readonly value: false;
|
|
112
|
+
readonly source: "vendor-stated";
|
|
113
|
+
readonly cite: "the workpiece-material facet returns P M K N S (no H) — ferrous groups included";
|
|
114
|
+
};
|
|
115
|
+
readonly bmc: {
|
|
116
|
+
readonly value: "carbide";
|
|
117
|
+
readonly source: "vendor-stated";
|
|
118
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
119
|
+
};
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
readonly 'kendrill_txd_5xd_inch.csv': {
|
|
123
|
+
readonly id: "kendrill-txd-5xd-inch";
|
|
124
|
+
readonly rows: 20;
|
|
125
|
+
readonly familyCode: "100165153";
|
|
126
|
+
readonly kind: "drill";
|
|
127
|
+
readonly columns: {
|
|
128
|
+
readonly DC: "D1";
|
|
129
|
+
readonly SFDM: "D";
|
|
130
|
+
readonly OAL: "L";
|
|
131
|
+
readonly LCF: "L3";
|
|
132
|
+
};
|
|
133
|
+
readonly facts: {
|
|
134
|
+
readonly unit: {
|
|
135
|
+
readonly value: "inches";
|
|
136
|
+
readonly source: "vendor-stated";
|
|
137
|
+
readonly cite: "catalog numbers are K467A… encoding the size in ten-thousandths of an inch (K467A02344SP is 15/64), and the inch column carries the exact value while the metric one is rounded";
|
|
138
|
+
};
|
|
139
|
+
readonly flutes: {
|
|
140
|
+
readonly value: 2;
|
|
141
|
+
readonly source: "assumed";
|
|
142
|
+
readonly note: "no flute-count column; the vendor's \"Straight Fluted\" names the helix, not the count";
|
|
143
|
+
readonly checked: "2026-08-06";
|
|
144
|
+
readonly by: "JG";
|
|
145
|
+
};
|
|
146
|
+
readonly pointAngle: {
|
|
147
|
+
readonly value: 142;
|
|
148
|
+
readonly source: "derived";
|
|
149
|
+
readonly note: "no point angle is published on either family, either variant table or a product page. L5 (point length) is, and for a conical point L5 = D1 / (2·tan(SIG/2)). Least squares over all 49 rows gives 142.46° inch and 142.55° metric; at 142° the worst L5 residual is 0.05 mm — the vendor's own rounding — against 0.24 mm at 140°, which is ruled out";
|
|
150
|
+
};
|
|
151
|
+
readonly coolantThrough: {
|
|
152
|
+
readonly value: true;
|
|
153
|
+
readonly source: "vendor-stated";
|
|
154
|
+
readonly cite: "\"Internal Coolant\" is in the vendor's own family title";
|
|
155
|
+
};
|
|
156
|
+
readonly nonFerrous: {
|
|
157
|
+
readonly value: true;
|
|
158
|
+
readonly source: "vendor-stated";
|
|
159
|
+
readonly cite: "grade KD1415 is \"PCD-tip brazed to carbide for … aluminum …, non-ferrous heavy metals, and plastics\"; breadcrumb \"PCD Tooling / PCD Drills • Aluminum Machining\"; the facet returns N1-N4 and nothing else";
|
|
160
|
+
};
|
|
161
|
+
readonly bmc: {
|
|
162
|
+
readonly value: "diamond";
|
|
163
|
+
readonly source: "vendor-stated";
|
|
164
|
+
readonly cite: "grade KD1415 is PCD — the cutting material, not the carbide body it is brazed to";
|
|
165
|
+
};
|
|
166
|
+
};
|
|
167
|
+
};
|
|
168
|
+
readonly 'kendrill_txd_5xd_metric.csv': {
|
|
169
|
+
readonly id: "kendrill-txd-5xd-metric";
|
|
170
|
+
readonly rows: 29;
|
|
171
|
+
readonly familyCode: "100164033";
|
|
172
|
+
readonly kind: "drill";
|
|
173
|
+
readonly columns: {
|
|
174
|
+
readonly DC: "D1";
|
|
175
|
+
readonly SFDM: "D";
|
|
176
|
+
readonly OAL: "L";
|
|
177
|
+
readonly LCF: "L3";
|
|
178
|
+
};
|
|
179
|
+
readonly facts: {
|
|
180
|
+
readonly unit: {
|
|
181
|
+
readonly value: "millimeters";
|
|
182
|
+
readonly source: "vendor-stated";
|
|
183
|
+
readonly cite: "catalog numbers are B467A… encoding the size in hundredths of a millimetre (B467A06000SP is 6.00 mm), and the metric column carries the exact value while the inch one is rounded";
|
|
184
|
+
};
|
|
185
|
+
readonly flutes: {
|
|
186
|
+
readonly value: 2;
|
|
187
|
+
readonly source: "assumed";
|
|
188
|
+
readonly note: "no flute-count column; the vendor's \"Straight Fluted\" names the helix, not the count";
|
|
189
|
+
readonly checked: "2026-08-06";
|
|
190
|
+
readonly by: "JG";
|
|
191
|
+
};
|
|
192
|
+
readonly pointAngle: {
|
|
193
|
+
readonly value: 142;
|
|
194
|
+
readonly source: "derived";
|
|
195
|
+
readonly note: "no point angle is published on either family, either variant table or a product page. L5 (point length) is, and for a conical point L5 = D1 / (2·tan(SIG/2)). Least squares over all 49 rows gives 142.46° inch and 142.55° metric; at 142° the worst L5 residual is 0.05 mm — the vendor's own rounding — against 0.24 mm at 140°, which is ruled out";
|
|
196
|
+
};
|
|
197
|
+
readonly coolantThrough: {
|
|
198
|
+
readonly value: true;
|
|
199
|
+
readonly source: "vendor-stated";
|
|
200
|
+
readonly cite: "\"Internal Coolant\" is in the vendor's own family title";
|
|
201
|
+
};
|
|
202
|
+
readonly nonFerrous: {
|
|
203
|
+
readonly value: true;
|
|
204
|
+
readonly source: "vendor-stated";
|
|
205
|
+
readonly cite: "grade KD1415 is \"PCD-tip brazed to carbide for … aluminum …, non-ferrous heavy metals, and plastics\"; breadcrumb \"PCD Tooling / PCD Drills • Aluminum Machining\"; the facet returns N1-N4 and nothing else";
|
|
206
|
+
};
|
|
207
|
+
readonly bmc: {
|
|
208
|
+
readonly value: "diamond";
|
|
209
|
+
readonly source: "vendor-stated";
|
|
210
|
+
readonly cite: "grade KD1415 is PCD — the cutting material, not the carbide body it is brazed to";
|
|
211
|
+
};
|
|
212
|
+
};
|
|
213
|
+
};
|
|
214
|
+
readonly 'khsst_spiral_point_plug_inch.csv': {
|
|
215
|
+
readonly id: "khsst-spiral-point-plug-inch";
|
|
216
|
+
readonly rows: 95;
|
|
217
|
+
readonly familyCode: "100004132";
|
|
218
|
+
readonly kind: "tap";
|
|
219
|
+
readonly columns: {
|
|
220
|
+
readonly SFDM: "D";
|
|
221
|
+
readonly OAL: "L";
|
|
222
|
+
readonly LCF: "L3";
|
|
223
|
+
readonly TP: "Thread Pitch";
|
|
224
|
+
};
|
|
225
|
+
readonly facts: {
|
|
226
|
+
readonly bmc: {
|
|
227
|
+
readonly value: "hss";
|
|
228
|
+
readonly source: "assumed";
|
|
229
|
+
readonly note: "no substrate column; carried over from the pre-2026-08-08 config, which recorded no source for it. The KHSST line name implies high-speed steel and the Coating column carries the surface treatment instead of a carbide grade, but neither is a vendor statement of substrate";
|
|
230
|
+
readonly checked: "2026-08-08";
|
|
231
|
+
readonly by: "JG";
|
|
232
|
+
};
|
|
233
|
+
};
|
|
234
|
+
};
|
|
235
|
+
readonly 'khsst_hand_metric_plug.csv': {
|
|
236
|
+
readonly id: "khsst-hand-metric-plug";
|
|
237
|
+
readonly rows: 14;
|
|
238
|
+
readonly familyCode: "100004161";
|
|
239
|
+
readonly kind: "tap";
|
|
240
|
+
readonly columns: {
|
|
241
|
+
readonly SFDM: "D";
|
|
242
|
+
readonly OAL: "L";
|
|
243
|
+
readonly LCF: "L3";
|
|
244
|
+
readonly TP: "Thread Pitch";
|
|
245
|
+
};
|
|
246
|
+
readonly facts: {
|
|
247
|
+
readonly bmc: {
|
|
248
|
+
readonly value: "hss";
|
|
249
|
+
readonly source: "assumed";
|
|
250
|
+
readonly note: "no substrate column; carried over from the pre-2026-08-08 config, which recorded no source for it. The KHSST line name implies high-speed steel and the Coating column carries the surface treatment instead of a carbide grade, but neither is a vendor statement of substrate";
|
|
251
|
+
readonly checked: "2026-08-08";
|
|
252
|
+
readonly by: "JG";
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
};
|
|
256
|
+
readonly 'spiral_point_metric_plug.csv': {
|
|
257
|
+
readonly id: "spiral-point-metric-plug";
|
|
258
|
+
readonly rows: 20;
|
|
259
|
+
readonly familyCode: "100004191";
|
|
260
|
+
readonly kind: "tap";
|
|
261
|
+
readonly columns: {
|
|
262
|
+
readonly SFDM: "D";
|
|
263
|
+
readonly OAL: "L";
|
|
264
|
+
readonly LCF: "L3";
|
|
265
|
+
readonly TP: "Thread Pitch";
|
|
266
|
+
};
|
|
267
|
+
readonly facts: {
|
|
268
|
+
readonly bmc: {
|
|
269
|
+
readonly value: "hss";
|
|
270
|
+
readonly source: "assumed";
|
|
271
|
+
readonly note: "no substrate column; carried over from the pre-2026-08-08 config, which recorded no source for it. The KHSST line name implies high-speed steel and the Coating column carries the surface treatment instead of a carbide grade, but neither is a vendor statement of substrate";
|
|
272
|
+
readonly checked: "2026-08-08";
|
|
273
|
+
readonly by: "JG";
|
|
274
|
+
};
|
|
275
|
+
};
|
|
276
|
+
};
|
|
277
|
+
readonly 'gomill_pro_radiused_4fl_necked_metric.csv': {
|
|
278
|
+
readonly id: "gomill-pro-radiused-4fl-necked-metric";
|
|
279
|
+
readonly rows: 60;
|
|
280
|
+
readonly familyCode: "109353075";
|
|
281
|
+
readonly kind: "endmill";
|
|
282
|
+
readonly columns: {
|
|
283
|
+
readonly DC: "D1";
|
|
284
|
+
readonly SFDM: "D";
|
|
285
|
+
readonly OAL: "L";
|
|
286
|
+
readonly LCF: "AP1MAX";
|
|
287
|
+
readonly RE: "Re";
|
|
288
|
+
readonly 'shoulder-length': "L3";
|
|
289
|
+
readonly 'shoulder-diameter': "D3";
|
|
290
|
+
};
|
|
291
|
+
readonly facts: {
|
|
292
|
+
readonly unit: {
|
|
293
|
+
readonly value: "millimeters";
|
|
294
|
+
readonly source: "vendor-stated";
|
|
295
|
+
readonly cite: "the vendor titles the family \"…necked plain shank metric\"; both unit columns are published, so this decides which is displayed";
|
|
296
|
+
};
|
|
297
|
+
readonly coolantThrough: {
|
|
298
|
+
readonly value: false;
|
|
299
|
+
readonly source: "assumed";
|
|
300
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
301
|
+
readonly checked: "2026-08-05";
|
|
302
|
+
readonly by: "JG";
|
|
303
|
+
};
|
|
304
|
+
readonly bmc: {
|
|
305
|
+
readonly value: "carbide";
|
|
306
|
+
readonly source: "vendor-stated";
|
|
307
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
308
|
+
};
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
readonly 'gomill_pro_square_4fl_plain_inch.csv': {
|
|
312
|
+
readonly id: "gomill-pro-square-4fl-plain-inch";
|
|
313
|
+
readonly rows: 93;
|
|
314
|
+
readonly familyCode: "109426909";
|
|
315
|
+
readonly kind: "endmill";
|
|
316
|
+
readonly columns: {
|
|
317
|
+
readonly DC: "D1";
|
|
318
|
+
readonly SFDM: "D";
|
|
319
|
+
readonly OAL: "L";
|
|
320
|
+
readonly LCF: "AP1MAX";
|
|
321
|
+
readonly 'shoulder-length': "L3";
|
|
322
|
+
};
|
|
323
|
+
readonly facts: {
|
|
324
|
+
readonly unit: {
|
|
325
|
+
readonly value: "inches";
|
|
326
|
+
readonly source: "vendor-stated";
|
|
327
|
+
readonly cite: "the vendor titles the family \"…plain shank inch\"; both unit columns are published, so this decides which is displayed";
|
|
328
|
+
};
|
|
329
|
+
readonly coolantThrough: {
|
|
330
|
+
readonly value: false;
|
|
331
|
+
readonly source: "assumed";
|
|
332
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
333
|
+
readonly checked: "2026-08-05";
|
|
334
|
+
readonly by: "JG";
|
|
335
|
+
};
|
|
336
|
+
readonly bmc: {
|
|
337
|
+
readonly value: "carbide";
|
|
338
|
+
readonly source: "vendor-stated";
|
|
339
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
};
|
|
343
|
+
readonly 'varimill_chip_splitter_radiused_5fl_3xd_plain_metric.csv': {
|
|
344
|
+
readonly id: "varimill-chip-splitter-radiused-5fl-3xd-plain-metric";
|
|
345
|
+
readonly rows: 3;
|
|
346
|
+
readonly familyCode: "103354322";
|
|
347
|
+
readonly kind: "endmill";
|
|
348
|
+
readonly columns: {
|
|
349
|
+
readonly DC: "D1";
|
|
350
|
+
readonly SFDM: "D";
|
|
351
|
+
readonly OAL: "L";
|
|
352
|
+
readonly LCF: "AP1MAX";
|
|
353
|
+
readonly RE: "Re";
|
|
354
|
+
};
|
|
355
|
+
readonly brand: "widia";
|
|
356
|
+
readonly facts: {
|
|
357
|
+
readonly unit: {
|
|
358
|
+
readonly value: "millimeters";
|
|
359
|
+
readonly source: "vendor-stated";
|
|
360
|
+
readonly cite: "the vendor titles the family \"…3xD plain shank metric\"; both unit columns are published, so this decides which is displayed";
|
|
361
|
+
};
|
|
362
|
+
readonly coolantThrough: {
|
|
363
|
+
readonly value: false;
|
|
364
|
+
readonly source: "assumed";
|
|
365
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
366
|
+
readonly checked: "2026-08-05";
|
|
367
|
+
readonly by: "JG";
|
|
368
|
+
};
|
|
369
|
+
readonly bmc: {
|
|
370
|
+
readonly value: "carbide";
|
|
371
|
+
readonly source: "vendor-stated";
|
|
372
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
373
|
+
};
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
readonly 'varimill_chip_splitter_570t_radiused_5fl_cyl_inch.csv': {
|
|
377
|
+
readonly id: "varimill-chip-splitter-570t-radiused-5fl-cyl-inch";
|
|
378
|
+
readonly rows: 3;
|
|
379
|
+
readonly familyCode: "100680824";
|
|
380
|
+
readonly kind: "endmill";
|
|
381
|
+
readonly columns: {
|
|
382
|
+
readonly DC: "D1";
|
|
383
|
+
readonly SFDM: "D";
|
|
384
|
+
readonly OAL: "L";
|
|
385
|
+
readonly LCF: "AP1MAX";
|
|
386
|
+
readonly RE: "Re";
|
|
387
|
+
};
|
|
388
|
+
readonly brand: "widia";
|
|
389
|
+
readonly facts: {
|
|
390
|
+
readonly unit: {
|
|
391
|
+
readonly value: "inches";
|
|
392
|
+
readonly source: "vendor-stated";
|
|
393
|
+
readonly cite: "the vendor titles the family \"…cylindrical shank inch\"; both unit columns are published, so this decides which is displayed";
|
|
394
|
+
};
|
|
395
|
+
readonly coolantThrough: {
|
|
396
|
+
readonly value: false;
|
|
397
|
+
readonly source: "assumed";
|
|
398
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
399
|
+
readonly checked: "2026-08-05";
|
|
400
|
+
readonly by: "JG";
|
|
401
|
+
};
|
|
402
|
+
readonly bmc: {
|
|
403
|
+
readonly value: "carbide";
|
|
404
|
+
readonly source: "vendor-stated";
|
|
405
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
406
|
+
};
|
|
407
|
+
};
|
|
408
|
+
};
|
|
409
|
+
readonly 'maximet_square_3fl_wiper_necked_plain_inch.csv': {
|
|
410
|
+
readonly id: "maximet-square-3fl-wiper-necked-plain-inch";
|
|
411
|
+
readonly rows: 14;
|
|
412
|
+
readonly familyCode: "101273936";
|
|
413
|
+
readonly kind: "endmill";
|
|
414
|
+
readonly columns: {
|
|
415
|
+
readonly DC: "D1";
|
|
416
|
+
readonly SFDM: "D";
|
|
417
|
+
readonly OAL: "L";
|
|
418
|
+
readonly LCF: "AP1MAX";
|
|
419
|
+
readonly 'shoulder-length': "L3";
|
|
420
|
+
readonly 'shoulder-diameter': "D3";
|
|
421
|
+
};
|
|
422
|
+
readonly facts: {
|
|
423
|
+
readonly unit: {
|
|
424
|
+
readonly value: "inches";
|
|
425
|
+
readonly source: "vendor-stated";
|
|
426
|
+
readonly cite: "the vendor titles the family \"…necked plain shank inch\"; both unit columns are published, so this decides which is displayed";
|
|
427
|
+
};
|
|
428
|
+
readonly coolantThrough: {
|
|
429
|
+
readonly value: false;
|
|
430
|
+
readonly source: "assumed";
|
|
431
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
432
|
+
readonly checked: "2026-08-05";
|
|
433
|
+
readonly by: "JG";
|
|
434
|
+
};
|
|
435
|
+
readonly bmc: {
|
|
436
|
+
readonly value: "carbide";
|
|
437
|
+
readonly source: "vendor-stated";
|
|
438
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
439
|
+
};
|
|
440
|
+
};
|
|
441
|
+
};
|
|
442
|
+
readonly 'kencut_ff_hpft_square_6fl_plain_inch.csv': {
|
|
443
|
+
readonly id: "kencut-ff-hpft-square-6fl-plain-inch";
|
|
444
|
+
readonly rows: 12;
|
|
445
|
+
readonly familyCode: "100003783";
|
|
446
|
+
readonly kind: "endmill";
|
|
447
|
+
readonly columns: {
|
|
448
|
+
readonly DC: "D1";
|
|
449
|
+
readonly SFDM: "D";
|
|
450
|
+
readonly OAL: "L";
|
|
451
|
+
readonly LCF: "AP1MAX";
|
|
452
|
+
};
|
|
453
|
+
readonly facts: {
|
|
454
|
+
readonly unit: {
|
|
455
|
+
readonly value: "inches";
|
|
456
|
+
readonly source: "vendor-stated";
|
|
457
|
+
readonly cite: "the vendor titles the family \"…plain shank inch\"; both unit columns are published, so this decides which is displayed";
|
|
458
|
+
};
|
|
459
|
+
readonly coolantThrough: {
|
|
460
|
+
readonly value: false;
|
|
461
|
+
readonly source: "assumed";
|
|
462
|
+
readonly note: "the table publishes no coolant column and the family page shows none";
|
|
463
|
+
readonly checked: "2026-08-05";
|
|
464
|
+
readonly by: "JG";
|
|
465
|
+
};
|
|
466
|
+
readonly bmc: {
|
|
467
|
+
readonly value: "carbide";
|
|
468
|
+
readonly source: "vendor-stated";
|
|
469
|
+
readonly cite: "the Grade column names a Kennametal carbide grade (KC7325, KCU20)";
|
|
470
|
+
};
|
|
471
|
+
};
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
export declare const HOLDER_FAMILIES: {
|
|
475
|
+
readonly 'bt30_er_collet_adapters_metric.csv': {
|
|
476
|
+
readonly catalogName: "Kennametal BT30 ER Collet Adapters Metric";
|
|
477
|
+
readonly rows: 12;
|
|
478
|
+
readonly facts: {
|
|
479
|
+
readonly taper: {
|
|
480
|
+
readonly value: "BT30";
|
|
481
|
+
readonly source: "vendor-stated";
|
|
482
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
483
|
+
};
|
|
484
|
+
readonly contact: {
|
|
485
|
+
readonly value: "taper";
|
|
486
|
+
readonly source: "vendor-stated";
|
|
487
|
+
readonly cite: "the family page says \"Shank - SK BT JIS B 6339\" with no face-contact claim";
|
|
488
|
+
};
|
|
489
|
+
readonly clamping: {
|
|
490
|
+
readonly value: "collet";
|
|
491
|
+
readonly source: "vendor-stated";
|
|
492
|
+
readonly cite: "the holder publishes a CST collet series, so it grips through a collet";
|
|
493
|
+
};
|
|
494
|
+
readonly style: {
|
|
495
|
+
readonly value: "er-collet-chuck";
|
|
496
|
+
readonly source: "vendor-stated";
|
|
497
|
+
readonly cite: "breadcrumb \".../ER Collet Chucks/ER(tm) Collet Adapter -BT30\"";
|
|
498
|
+
};
|
|
499
|
+
readonly unit: {
|
|
500
|
+
readonly value: "millimeters";
|
|
501
|
+
readonly source: "vendor-stated";
|
|
502
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
503
|
+
};
|
|
504
|
+
};
|
|
505
|
+
};
|
|
506
|
+
readonly 'bt30_hydraulic_chucks_form_ad_metric.csv': {
|
|
507
|
+
readonly catalogName: "Kennametal BT30 Hydraulic Chucks Form AD Metric";
|
|
508
|
+
readonly rows: 8;
|
|
509
|
+
readonly facts: {
|
|
510
|
+
readonly taper: {
|
|
511
|
+
readonly value: "BT30";
|
|
512
|
+
readonly source: "vendor-stated";
|
|
513
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
514
|
+
};
|
|
515
|
+
readonly contact: {
|
|
516
|
+
readonly value: "taper";
|
|
517
|
+
readonly source: "vendor-stated";
|
|
518
|
+
readonly cite: "the family page says \"Shank - SK BT JIS B 6339\" with no face-contact claim";
|
|
519
|
+
};
|
|
520
|
+
readonly clamping: {
|
|
521
|
+
readonly value: "bore";
|
|
522
|
+
readonly source: "vendor-stated";
|
|
523
|
+
readonly cite: "the holder publishes a D1 bore and no collet series, so it grips the shank directly";
|
|
524
|
+
};
|
|
525
|
+
readonly style: {
|
|
526
|
+
readonly value: "hydraulic-chuck";
|
|
527
|
+
readonly source: "vendor-stated";
|
|
528
|
+
readonly cite: "breadcrumb \".../Hydraulic Chucks - STANDARD /HP Line\"";
|
|
529
|
+
};
|
|
530
|
+
readonly unit: {
|
|
531
|
+
readonly value: "millimeters";
|
|
532
|
+
readonly source: "vendor-stated";
|
|
533
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
534
|
+
};
|
|
535
|
+
};
|
|
536
|
+
};
|
|
537
|
+
readonly 'bt30_hydraulic_chucks_form_ad_inch.csv': {
|
|
538
|
+
readonly catalogName: "Kennametal BT30 Hydraulic Chucks Form AD Inch";
|
|
539
|
+
readonly rows: 3;
|
|
540
|
+
readonly facts: {
|
|
541
|
+
readonly taper: {
|
|
542
|
+
readonly value: "BT30";
|
|
543
|
+
readonly source: "vendor-stated";
|
|
544
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
545
|
+
};
|
|
546
|
+
readonly contact: {
|
|
547
|
+
readonly value: "taper";
|
|
548
|
+
readonly source: "vendor-stated";
|
|
549
|
+
readonly cite: "the family page says \"Shank - SK BT JIS B 6339\" with no face-contact claim";
|
|
550
|
+
};
|
|
551
|
+
readonly clamping: {
|
|
552
|
+
readonly value: "bore";
|
|
553
|
+
readonly source: "vendor-stated";
|
|
554
|
+
readonly cite: "the holder publishes a D1 bore and no collet series, so it grips the shank directly";
|
|
555
|
+
};
|
|
556
|
+
readonly style: {
|
|
557
|
+
readonly value: "hydraulic-chuck";
|
|
558
|
+
readonly source: "vendor-stated";
|
|
559
|
+
readonly cite: "breadcrumb \".../Hydraulic Chucks - STANDARD /HP Line\"";
|
|
560
|
+
};
|
|
561
|
+
readonly unit: {
|
|
562
|
+
readonly value: "inches";
|
|
563
|
+
readonly source: "vendor-stated";
|
|
564
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
};
|
|
568
|
+
readonly 'btkv30_er_collet_chucks_metric.csv': {
|
|
569
|
+
readonly catalogName: "Kennametal BTKV30 ER Collet Chucks Metric";
|
|
570
|
+
readonly rows: 5;
|
|
571
|
+
readonly facts: {
|
|
572
|
+
readonly taper: {
|
|
573
|
+
readonly value: "BT30";
|
|
574
|
+
readonly source: "vendor-stated";
|
|
575
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
576
|
+
};
|
|
577
|
+
readonly contact: {
|
|
578
|
+
readonly value: "face";
|
|
579
|
+
readonly source: "vendor-stated";
|
|
580
|
+
readonly cite: "the product page names the shank \"SK BT Taper Face Contact\"";
|
|
581
|
+
};
|
|
582
|
+
readonly clamping: {
|
|
583
|
+
readonly value: "collet";
|
|
584
|
+
readonly source: "vendor-stated";
|
|
585
|
+
readonly cite: "the holder publishes a CST collet series, so it grips through a collet";
|
|
586
|
+
};
|
|
587
|
+
readonly style: {
|
|
588
|
+
readonly value: "er-collet-chuck";
|
|
589
|
+
readonly source: "vendor-stated";
|
|
590
|
+
readonly cite: "breadcrumb \".../ER Collet Chucks/ER(tm) Collet Adapter -BT30\"";
|
|
591
|
+
};
|
|
592
|
+
readonly unit: {
|
|
593
|
+
readonly value: "millimeters";
|
|
594
|
+
readonly source: "vendor-stated";
|
|
595
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
596
|
+
};
|
|
597
|
+
};
|
|
598
|
+
};
|
|
599
|
+
readonly 'bt30_shrink_fit_fc_form_ad_metric.csv': {
|
|
600
|
+
readonly catalogName: "Kennametal BT30 Shrink Fit FC Line Form AD Metric";
|
|
601
|
+
readonly rows: 6;
|
|
602
|
+
readonly facts: {
|
|
603
|
+
readonly taper: {
|
|
604
|
+
readonly value: "BT30";
|
|
605
|
+
readonly source: "vendor-stated";
|
|
606
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
607
|
+
};
|
|
608
|
+
readonly contact: {
|
|
609
|
+
readonly value: "taper";
|
|
610
|
+
readonly source: "vendor-stated";
|
|
611
|
+
readonly cite: "the family page says \"Shank - SK BT JIS B 6339\" with no face-contact claim";
|
|
612
|
+
};
|
|
613
|
+
readonly clamping: {
|
|
614
|
+
readonly value: "bore";
|
|
615
|
+
readonly source: "vendor-stated";
|
|
616
|
+
readonly cite: "the holder publishes a D1 bore and no collet series, so it grips the shank directly";
|
|
617
|
+
};
|
|
618
|
+
readonly style: {
|
|
619
|
+
readonly value: "shrink-fit-fc";
|
|
620
|
+
readonly source: "vendor-stated";
|
|
621
|
+
readonly cite: "breadcrumb \".../Shrink Fit Toolholders\"; tagline \"Standard Heat Shrink Holders … Face Coolant … BT30 Backend\"";
|
|
622
|
+
};
|
|
623
|
+
readonly unit: {
|
|
624
|
+
readonly value: "millimeters";
|
|
625
|
+
readonly source: "vendor-stated";
|
|
626
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
627
|
+
};
|
|
628
|
+
};
|
|
629
|
+
};
|
|
630
|
+
readonly 'bt30_shrink_fit_fc_form_ad_inch.csv': {
|
|
631
|
+
readonly catalogName: "Kennametal BT30 Shrink Fit FC Line Form AD Inch";
|
|
632
|
+
readonly rows: 6;
|
|
633
|
+
readonly facts: {
|
|
634
|
+
readonly taper: {
|
|
635
|
+
readonly value: "BT30";
|
|
636
|
+
readonly source: "vendor-stated";
|
|
637
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
638
|
+
};
|
|
639
|
+
readonly contact: {
|
|
640
|
+
readonly value: "taper";
|
|
641
|
+
readonly source: "vendor-stated";
|
|
642
|
+
readonly cite: "the family page says \"Shank - SK BT JIS B 6339\" with no face-contact claim";
|
|
643
|
+
};
|
|
644
|
+
readonly clamping: {
|
|
645
|
+
readonly value: "bore";
|
|
646
|
+
readonly source: "vendor-stated";
|
|
647
|
+
readonly cite: "the holder publishes a D1 bore and no collet series, so it grips the shank directly";
|
|
648
|
+
};
|
|
649
|
+
readonly style: {
|
|
650
|
+
readonly value: "shrink-fit-fc";
|
|
651
|
+
readonly source: "vendor-stated";
|
|
652
|
+
readonly cite: "breadcrumb \".../Shrink Fit Toolholders\"; tagline \"Standard Heat Shrink Holders … Face Coolant … BT30 Backend\"";
|
|
653
|
+
};
|
|
654
|
+
readonly unit: {
|
|
655
|
+
readonly value: "inches";
|
|
656
|
+
readonly source: "vendor-stated";
|
|
657
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
658
|
+
};
|
|
659
|
+
};
|
|
660
|
+
};
|
|
661
|
+
readonly 'bt30_shrink_fit_hpv_form_ad_metric.csv': {
|
|
662
|
+
readonly catalogName: "Kennametal BT30 Shrink Fit HPV GP Form AD Metric";
|
|
663
|
+
readonly rows: 7;
|
|
664
|
+
readonly facts: {
|
|
665
|
+
readonly taper: {
|
|
666
|
+
readonly value: "BT30";
|
|
667
|
+
readonly source: "vendor-stated";
|
|
668
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
669
|
+
};
|
|
670
|
+
readonly contact: {
|
|
671
|
+
readonly value: "taper";
|
|
672
|
+
readonly source: "vendor-stated";
|
|
673
|
+
readonly cite: "the family page says \"Shank - SK BT JIS B 6339\" with no face-contact claim";
|
|
674
|
+
};
|
|
675
|
+
readonly clamping: {
|
|
676
|
+
readonly value: "bore";
|
|
677
|
+
readonly source: "vendor-stated";
|
|
678
|
+
readonly cite: "the holder publishes a D1 bore and no collet series, so it grips the shank directly";
|
|
679
|
+
};
|
|
680
|
+
readonly style: {
|
|
681
|
+
readonly value: "shrink-fit-gp";
|
|
682
|
+
readonly source: "vendor-stated";
|
|
683
|
+
readonly cite: "same category; tagline \"Shrink Fit Toolholders General Purpose (GP)\"";
|
|
684
|
+
};
|
|
685
|
+
readonly unit: {
|
|
686
|
+
readonly value: "millimeters";
|
|
687
|
+
readonly source: "vendor-stated";
|
|
688
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
689
|
+
};
|
|
690
|
+
};
|
|
691
|
+
};
|
|
692
|
+
readonly 'bt30_shrink_fit_hpv_form_ad_inch.csv': {
|
|
693
|
+
readonly catalogName: "Kennametal BT30 Shrink Fit HPV GP Form AD Inch";
|
|
694
|
+
readonly rows: 6;
|
|
695
|
+
readonly facts: {
|
|
696
|
+
readonly taper: {
|
|
697
|
+
readonly value: "BT30";
|
|
698
|
+
readonly source: "vendor-stated";
|
|
699
|
+
readonly cite: "the family page states the shank as JIS B 6339 / MAS 403 size 30";
|
|
700
|
+
};
|
|
701
|
+
readonly contact: {
|
|
702
|
+
readonly value: "taper";
|
|
703
|
+
readonly source: "vendor-stated";
|
|
704
|
+
readonly cite: "the family page says \"Shank - SK BT JIS B 6339\" with no face-contact claim";
|
|
705
|
+
};
|
|
706
|
+
readonly clamping: {
|
|
707
|
+
readonly value: "bore";
|
|
708
|
+
readonly source: "vendor-stated";
|
|
709
|
+
readonly cite: "the holder publishes a D1 bore and no collet series, so it grips the shank directly";
|
|
710
|
+
};
|
|
711
|
+
readonly style: {
|
|
712
|
+
readonly value: "shrink-fit-gp";
|
|
713
|
+
readonly source: "vendor-stated";
|
|
714
|
+
readonly cite: "same category; tagline \"Shrink Fit Toolholders General Purpose (GP)\"";
|
|
715
|
+
};
|
|
716
|
+
readonly unit: {
|
|
717
|
+
readonly value: "inches";
|
|
718
|
+
readonly source: "vendor-stated";
|
|
719
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
};
|
|
723
|
+
};
|
|
724
|
+
export declare const COLLET_FAMILIES: {
|
|
725
|
+
readonly 'er_standard_collets_metric.csv': {
|
|
726
|
+
readonly catalogName: "Kennametal ER Standard Collets Metric";
|
|
727
|
+
readonly rows: 110;
|
|
728
|
+
readonly facts: {
|
|
729
|
+
readonly style: {
|
|
730
|
+
readonly value: "er-standard";
|
|
731
|
+
readonly source: "vendor-stated";
|
|
732
|
+
readonly cite: "the family is Kennametal's plain ER collet line";
|
|
733
|
+
};
|
|
734
|
+
readonly unit: {
|
|
735
|
+
readonly value: "millimeters";
|
|
736
|
+
readonly source: "vendor-stated";
|
|
737
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
738
|
+
};
|
|
739
|
+
};
|
|
740
|
+
};
|
|
741
|
+
readonly 'er16_collets_coolant_through_inch.csv': {
|
|
742
|
+
readonly catalogName: "Kennametal ER16 Collets Coolant-Through Inch";
|
|
743
|
+
readonly rows: 10;
|
|
744
|
+
readonly facts: {
|
|
745
|
+
readonly style: {
|
|
746
|
+
readonly value: "er-sealed";
|
|
747
|
+
readonly source: "vendor-stated";
|
|
748
|
+
readonly cite: "CCCX == CCCN == D1 on every row; Kennametal specs an H6 shank, so it clamps one exact size";
|
|
749
|
+
};
|
|
750
|
+
readonly unit: {
|
|
751
|
+
readonly value: "inches";
|
|
752
|
+
readonly source: "vendor-stated";
|
|
753
|
+
readonly cite: "the family is titled and catalogued in this system; both unit columns are usually published, so this decides which is displayed";
|
|
754
|
+
};
|
|
755
|
+
};
|
|
756
|
+
};
|
|
757
|
+
};
|