@instruments/taxonomy 1.1.5 → 1.1.6
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/dist/index.d.ts +2 -2
- package/dist/index.js +54 -26
- package/package.json +11 -10
package/dist/index.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ type RelationPredicate =
|
|
|
202
202
|
|
|
203
203
|
declare const TAXONOMY_BASE_URI: "https://taxonomy.materialinstruments.com";
|
|
204
204
|
declare const TAXONOMY_SNAPSHOT: "2026-09-01";
|
|
205
|
-
declare const TAXONOMY_VERSION: "1.1.
|
|
205
|
+
declare const TAXONOMY_VERSION: "1.1.6";
|
|
206
206
|
type CanonicalConceptUri = `${typeof TAXONOMY_BASE_URI}/id/${string}`;
|
|
207
207
|
type LifecycleStatus = "active" | "deprecated";
|
|
208
208
|
interface Lifecycle {
|
|
@@ -336,7 +336,7 @@ declare const TAXONOMY_CORPUS_METADATA: {
|
|
|
336
336
|
readonly nodeCount: number;
|
|
337
337
|
readonly revision: string;
|
|
338
338
|
readonly snapshot: "2026-09-01";
|
|
339
|
-
readonly version: "1.1.
|
|
339
|
+
readonly version: "1.1.6";
|
|
340
340
|
};
|
|
341
341
|
|
|
342
342
|
export { type AxisNode, COLOR_SCOPE_REFERENCE_KINDS, type CanonicalConceptUri, type ColorScopeReferenceKind, type ColorScopeTarget, type ConceptNode, type ExternalReference, type FacetNode, type Governance, type GraphPredicate, KNOWLEDGE_GRAPH, type KnowledgeGraph, type KnowledgeGraphEdge, type KnowledgeGraphNode, LEXICAL_ENTRIES, type LexicalContext, type LexicalEntry, type LexicalTarget, type Lifecycle, type LifecycleStatus, type PeriodSpan, type SearchedWithout, type StyleKind, TAXONOMY_BASE_URI, TAXONOMY_CORPUS_METADATA, TAXONOMY_CORPUS_REVISION, TAXONOMY_SNAPSHOT, TAXONOMY_VERSION, type TaxonomyTarget, type TermProvenance, type TermUsage, type UsageWithheld };
|
package/dist/index.js
CHANGED
|
@@ -1462,6 +1462,8 @@ var SNAPSHOT3 = "2026-08-25";
|
|
|
1462
1462
|
var CROSSOVER_SNAPSHOT2 = "2026-08-30";
|
|
1463
1463
|
var NATURAL_FIBRE_SLUG = "natural-fibre";
|
|
1464
1464
|
var STONE_SLUG = "stone";
|
|
1465
|
+
var STONE_TARGET = "material.stone";
|
|
1466
|
+
var WOOD_TARGET = "material.wood";
|
|
1465
1467
|
var term5 = (slug, label, definition) => ({
|
|
1466
1468
|
definition,
|
|
1467
1469
|
label,
|
|
@@ -1518,27 +1520,43 @@ var MATERIAL_TERMS = [
|
|
|
1518
1520
|
"Ceramic",
|
|
1519
1521
|
"A fired inorganic non-metallic body other than porcelain."
|
|
1520
1522
|
),
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1523
|
+
{
|
|
1524
|
+
...term5(
|
|
1525
|
+
"porcelain",
|
|
1526
|
+
"Porcelain",
|
|
1527
|
+
"A dense, low-porosity fired ceramic body meeting porcelain classification."
|
|
1528
|
+
),
|
|
1529
|
+
related: [
|
|
1530
|
+
{ predicate: "reads-as", target: WOOD_TARGET },
|
|
1531
|
+
{ predicate: "reads-as", target: "material.marble" },
|
|
1532
|
+
{ predicate: "reads-as", target: "material.concrete" }
|
|
1533
|
+
]
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
...term5(
|
|
1537
|
+
"composite",
|
|
1538
|
+
"Composite",
|
|
1539
|
+
"An engineered material whose performance comes from two or more bound constituents."
|
|
1540
|
+
),
|
|
1541
|
+
related: [{ predicate: "reads-as", target: STONE_TARGET }]
|
|
1542
|
+
},
|
|
1531
1543
|
crossoverTerm(
|
|
1532
1544
|
"copper",
|
|
1533
1545
|
"Copper",
|
|
1534
1546
|
"A metal with a designated minimum copper content of 99.3 percent in the UNS wrought-copper designation system.",
|
|
1535
1547
|
CROSSOVER_DEFINITION_SOURCES.copper
|
|
1536
1548
|
),
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1549
|
+
{
|
|
1550
|
+
...term5(
|
|
1551
|
+
"laminate",
|
|
1552
|
+
"Laminate",
|
|
1553
|
+
"A layered sheet material consolidated around a decorative or protective face."
|
|
1554
|
+
),
|
|
1555
|
+
related: [
|
|
1556
|
+
{ predicate: "reads-as", target: WOOD_TARGET },
|
|
1557
|
+
{ predicate: "reads-as", target: STONE_TARGET }
|
|
1558
|
+
]
|
|
1559
|
+
},
|
|
1542
1560
|
term5(
|
|
1543
1561
|
NATURAL_FIBRE_SLUG,
|
|
1544
1562
|
"Natural fibre",
|
|
@@ -1555,11 +1573,14 @@ var MATERIAL_TERMS = [
|
|
|
1555
1573
|
"Paper",
|
|
1556
1574
|
"A sheet material formed primarily from cellulose fibres."
|
|
1557
1575
|
),
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1576
|
+
{
|
|
1577
|
+
...term5(
|
|
1578
|
+
"solid-surface",
|
|
1579
|
+
"Solid surface",
|
|
1580
|
+
"A homogeneous or near-homogeneous cast sheet made from resin and mineral filler."
|
|
1581
|
+
),
|
|
1582
|
+
related: [{ predicate: "reads-as", target: STONE_TARGET }]
|
|
1583
|
+
},
|
|
1563
1584
|
crossoverTerm(
|
|
1564
1585
|
"silver",
|
|
1565
1586
|
"Silver",
|
|
@@ -1822,11 +1843,18 @@ var MATERIAL_TERMS = [
|
|
|
1822
1843
|
"A woven fabric conventionally made with indigo-dyed warp and undyed filling yarns in a twill construction; blends and non-blue denim exist.",
|
|
1823
1844
|
CROSSOVER_DEFINITION_SOURCES.denim
|
|
1824
1845
|
),
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1846
|
+
{
|
|
1847
|
+
...term5(
|
|
1848
|
+
"vinyl",
|
|
1849
|
+
"Vinyl",
|
|
1850
|
+
"A resilient material system whose principal polymer is polyvinyl chloride."
|
|
1851
|
+
),
|
|
1852
|
+
related: [
|
|
1853
|
+
{ predicate: "reads-as", target: WOOD_TARGET },
|
|
1854
|
+
{ predicate: "reads-as", target: STONE_TARGET },
|
|
1855
|
+
{ predicate: "reads-as", target: "material.concrete" }
|
|
1856
|
+
]
|
|
1857
|
+
}
|
|
1830
1858
|
];
|
|
1831
1859
|
|
|
1832
1860
|
// src/axes/mood.ts
|
|
@@ -7432,7 +7460,7 @@ var resolveReference = (reference) => INDEX.byKey.get(canonicalKey(reference));
|
|
|
7432
7460
|
// src/v1.ts
|
|
7433
7461
|
var TAXONOMY_BASE_URI = "https://taxonomy.materialinstruments.com";
|
|
7434
7462
|
var TAXONOMY_SNAPSHOT = "2026-09-01";
|
|
7435
|
-
var TAXONOMY_VERSION = "1.1.
|
|
7463
|
+
var TAXONOMY_VERSION = "1.1.6";
|
|
7436
7464
|
var PUBLISHED_V1_BASELINE = "2026-08-30";
|
|
7437
7465
|
var TAX45_REVIEW_SNAPSHOT = "2026-08-31";
|
|
7438
7466
|
var compareText = (left, right) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@instruments/taxonomy",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "Canonical data-only interiors and architecture knowledge graph and lexical corpus.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"repository": {
|
|
@@ -23,20 +23,21 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"devDependencies": {
|
|
27
|
-
"@howells/lint": "^1.0.0",
|
|
28
|
-
"@instruments/colorscope": "7.3.0",
|
|
29
|
-
"@types/node": "^24.0.0",
|
|
30
|
-
"tsup": "^8.5.1",
|
|
31
|
-
"typescript": "^5.7.0",
|
|
32
|
-
"vitest": "^4.0.0"
|
|
33
|
-
},
|
|
34
26
|
"scripts": {
|
|
35
27
|
"build": "rm -rf dist && tsup",
|
|
36
28
|
"lint": "howells-check .",
|
|
29
|
+
"prepare": "pnpm build",
|
|
37
30
|
"smoke:packed": "node --experimental-strip-types scripts/smoke-packed-core.ts",
|
|
38
31
|
"sync:colorscope": "vitest run src/colorscope-sync.test.ts",
|
|
39
32
|
"test": "vitest run",
|
|
40
33
|
"typecheck": "tsc --noEmit"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@howells/lint": "^1.0.0",
|
|
37
|
+
"@instruments/colorscope": "7.3.0",
|
|
38
|
+
"@types/node": "^24.0.0",
|
|
39
|
+
"tsup": "^8.5.1",
|
|
40
|
+
"typescript": "^5.7.0",
|
|
41
|
+
"vitest": "^4.0.0"
|
|
41
42
|
}
|
|
42
|
-
}
|
|
43
|
+
}
|