@instruments/taxonomy 1.3.0 → 1.6.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/dist/authoring.d.ts +1 -1
- package/dist/axes/material-cellulosics.d.ts +2 -0
- package/dist/axes/material-composition.d.ts +19 -0
- package/dist/axes/material-engineered-wood.d.ts +2 -0
- package/dist/axes/material-everyday.d.ts +2 -0
- package/dist/axes/material-metals.d.ts +2 -0
- package/dist/axes/material-mineral-additives.d.ts +2 -0
- package/dist/axes/material-minerals.d.ts +2 -0
- package/dist/axes/material-natural-organic.d.ts +2 -0
- package/dist/axes/material-polymer-additives.d.ts +2 -0
- package/dist/axes/material-polymers.d.ts +2 -0
- package/dist/axes/material-timber-species.d.ts +2 -0
- package/dist/axes/material-timbers.d.ts +2 -0
- package/dist/index.js +3956 -317
- package/dist/term.d.ts +22 -1
- package/dist/v1.d.ts +6 -6
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@ https://taxonomy.materialinstruments.com/id/facet/palette/hue
|
|
|
22
22
|
https://taxonomy.materialinstruments.com/id/material/walnut
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
-
ColorScope remains authoritative for colour concepts. Taxonomy does not mint graph nodes or URIs for ColorScope-governed terms; lexical records reference ColorScope identifiers without merging them into Taxonomy hierarchy. For example, `walnut` has a governed primary material reading and a secondary ColorScope reading.
|
|
25
|
+
ColorScope remains authoritative for colour concepts. Taxonomy does not mint graph nodes or URIs for ColorScope-governed terms; lexical records reference ColorScope identifiers without merging them into Taxonomy hierarchy. For example, `walnut` has a governed primary material reading and a secondary ColorScope reading. Two more phrases carry an ordered reading between two material concepts: `quartz` (engineered quartz before the mineral) and `melamine` (melamine-faced board before the resin).
|
|
26
26
|
|
|
27
27
|
## Install and consume
|
|
28
28
|
|
package/dist/authoring.d.ts
CHANGED
|
@@ -23,7 +23,7 @@ export { KNOWLEDGE_GRAPH, LEXICAL_ENTRIES, TAXONOMY_BASE_URI, type AxisNode, typ
|
|
|
23
23
|
export declare const MATERIAL_FAMILIES: readonly ["paint", "wall-finish", "wallcovering", "textile", "upholstery", "carpet", "wood", "stone", "tile", "terrazzo", "metal", "glass", "resilient-flooring", "composite", "concrete", "leather", "other"];
|
|
24
24
|
export type MaterialFamily = (typeof MATERIAL_FAMILIES)[number];
|
|
25
25
|
export declare const isMaterialFamily: (value: string) => value is MaterialFamily;
|
|
26
|
-
export declare const SECTORS: readonly ["hospitality", "healthcare", "workplace", "residential", "retail", "education", "civic", "mixed-use", "transportation", "other"];
|
|
26
|
+
export declare const SECTORS: readonly ["hospitality", "healthcare", "workplace", "residential", "retail", "education", "civic", "mixed-use", "transportation", "other", "commercial", "industrial"];
|
|
27
27
|
export type Sector = (typeof SECTORS)[number];
|
|
28
28
|
export declare const isSector: (value: string) => value is Sector;
|
|
29
29
|
export declare const APPLICATIONS: readonly ["wall", "flooring", "ceiling", "bath", "kitchen", "furniture", "lighting", "door", "window", "facade", "countertop", "fireplace", "stair-elevator", "bedding", "decor", "vertically-hanging", "transportation", "pool-fountain", "paving-deck", "partition", "millwork", "cabinetry", "masonry", "roof", "garage", "bar", "awning-umbrella", "recreation-sport", "ornamentation", "aquatic-environments", "upholstery", "trim", "wall-backsplash", "wall-upholstered", "wall-wet-shower", "flooring-wet-area", "flooring-entrance", "flooring-radiant-heat", "flooring-or-lab", "flooring-anti-fatigue", "flooring-esd", "flooring-safety-slip", "flooring-raised-access", "flooring-rigid-core", "flooring-dining-area", "flooring-subject-oil", "flooring-walk-in-freezer", "flooring-ramps-inclines", "furniture-seating", "furniture-headboard", "furniture-slipcover", "furniture-systems", "furniture-tackboard", "furniture-throw-pillow", "fireplace-firebox", "fireplace-hearth", "fireplace-mantel", "fireplace-surround", "bedding-bed-scarf", "bedding-sheets", "bedding-skirt", "bedding-bedspread", "bedding-box-spring-cover", "stair-riser", "stair-tread", "stair-railing", "stair-elevator-cladding", "vh-drapery", "vh-privacy-curtain", "vh-shower-curtain", "vh-theatrical-curtain", "vh-window-shade", "transportation-automotive", "transportation-aviation", "transportation-marine", "pool-coping", "pool-decking", "pool-lining", "paving-covered-areas", "paving-patio", "partition-toilet", "masonry-structural", "masonry-veneer", "recreation-gymnasium", "recreation-playground", "recreation-weightlifting", "awning", "tensile-structure", "umbrella", "countertop-chemical-resistant"];
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ExternalMapping, ExternalScheme, MatchStrength, SourceBasis, Term } from "../term.js";
|
|
2
|
+
export declare const COMPOSITION_REVIEW_DATE = "2026-09-22";
|
|
3
|
+
/** The standard argument of a term no public reference defines; it is `authored`, not referenced. */
|
|
4
|
+
export declare const IN_HOUSE_DEFINITION = "in-house definition";
|
|
5
|
+
/**
|
|
6
|
+
* A substance written here from one or more named public references. `standard` names the
|
|
7
|
+
* reference the definition was written from, e.g. "ISO 2076:2021" or "EN 12670:2019". `basis` is
|
|
8
|
+
* `standard` where the label and definition restate a legal generic name, and `authored` where no
|
|
9
|
+
* public reference defines the term; an authored term carries no snapshot.
|
|
10
|
+
*/
|
|
11
|
+
export declare const compositionTerm: (slug: string, label: string, definition: string, standard: string, extra?: Partial<Term>, basis?: SourceBasis) => Term;
|
|
12
|
+
/** A term no public reference defines, written here from the material's own boundary. */
|
|
13
|
+
export declare const authoredTerm: (slug: string, label: string, definition: string, extra?: Partial<Term>) => Term;
|
|
14
|
+
/**
|
|
15
|
+
* A concept published before 2026-09-22 that took a new parent on that date. A broader edge
|
|
16
|
+
* carries its term's lifecycle, so the review date is what marks the re-parenting.
|
|
17
|
+
*/
|
|
18
|
+
export declare const reparented: (term: Term) => Term;
|
|
19
|
+
export declare const externalMapping: (scheme: ExternalScheme, identifier: string, label: string, match?: MatchStrength) => ExternalMapping;
|