@instruments/taxonomy 1.1.3 → 1.1.5
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 +4 -4
- package/dist/index.js +39 -13
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -201,8 +201,8 @@ type RelationPredicate =
|
|
|
201
201
|
| "related-to";
|
|
202
202
|
|
|
203
203
|
declare const TAXONOMY_BASE_URI: "https://taxonomy.materialinstruments.com";
|
|
204
|
-
declare const TAXONOMY_SNAPSHOT: "2026-
|
|
205
|
-
declare const TAXONOMY_VERSION: "1.1.
|
|
204
|
+
declare const TAXONOMY_SNAPSHOT: "2026-09-01";
|
|
205
|
+
declare const TAXONOMY_VERSION: "1.1.5";
|
|
206
206
|
type CanonicalConceptUri = `${typeof TAXONOMY_BASE_URI}/id/${string}`;
|
|
207
207
|
type LifecycleStatus = "active" | "deprecated";
|
|
208
208
|
interface Lifecycle {
|
|
@@ -335,8 +335,8 @@ declare const TAXONOMY_CORPUS_METADATA: {
|
|
|
335
335
|
readonly lexicalEntryCount: number;
|
|
336
336
|
readonly nodeCount: number;
|
|
337
337
|
readonly revision: string;
|
|
338
|
-
readonly snapshot: "2026-
|
|
339
|
-
readonly version: "1.1.
|
|
338
|
+
readonly snapshot: "2026-09-01";
|
|
339
|
+
readonly version: "1.1.5";
|
|
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
|
@@ -1011,6 +1011,7 @@ var CROSSOVER_DEFINITION_SOURCES = {
|
|
|
1011
1011
|
jade: "https://www.gia.edu/jade-description",
|
|
1012
1012
|
jute: "https://www.fao.org/markets-and-trade/commodities-overview/fibres/jute-and-hard-fibres/",
|
|
1013
1013
|
leather: "ISO 15115, https://www.iso.org/obp/ui?_escaped_fragment_=iso%3Astd%3Aiso%3A15115%3Aed-1%3Av1%3Aen",
|
|
1014
|
+
limestone: "https://pubs.usgs.gov/fs/2008/3089/",
|
|
1014
1015
|
linen: "https://allianceflaxlinenhemp.eu/en/document_resources/35/download",
|
|
1015
1016
|
mahogany: WOOD_HANDBOOK_SOURCE,
|
|
1016
1017
|
marble: "https://www.naturalstoneinstitute.org/designprofessionals/varieties/definition/; ASTM C503 via https://www.naturalstoneinstitute.org/stoneprofessionals/astm/",
|
|
@@ -1585,6 +1586,17 @@ var MATERIAL_TERMS = [
|
|
|
1585
1586
|
CROSSOVER_DEFINITION_SOURCES.marble,
|
|
1586
1587
|
STONE_SLUG
|
|
1587
1588
|
),
|
|
1589
|
+
{
|
|
1590
|
+
...crossoverTerm(
|
|
1591
|
+
"limestone",
|
|
1592
|
+
"Limestone",
|
|
1593
|
+
"A sedimentary carbonate rock composed principally of calcium carbonate and used as a building stone and industrial mineral.",
|
|
1594
|
+
CROSSOVER_DEFINITION_SOURCES.limestone,
|
|
1595
|
+
STONE_SLUG
|
|
1596
|
+
),
|
|
1597
|
+
introducedAt: "2026-09-01",
|
|
1598
|
+
reviewedAt: "2026-09-01"
|
|
1599
|
+
},
|
|
1588
1600
|
crossoverTerm(
|
|
1589
1601
|
"steel",
|
|
1590
1602
|
"Steel",
|
|
@@ -7419,9 +7431,10 @@ var resolveReference = (reference) => INDEX.byKey.get(canonicalKey(reference));
|
|
|
7419
7431
|
|
|
7420
7432
|
// src/v1.ts
|
|
7421
7433
|
var TAXONOMY_BASE_URI = "https://taxonomy.materialinstruments.com";
|
|
7422
|
-
var TAXONOMY_SNAPSHOT = "2026-
|
|
7423
|
-
var TAXONOMY_VERSION = "1.1.
|
|
7434
|
+
var TAXONOMY_SNAPSHOT = "2026-09-01";
|
|
7435
|
+
var TAXONOMY_VERSION = "1.1.5";
|
|
7424
7436
|
var PUBLISHED_V1_BASELINE = "2026-08-30";
|
|
7437
|
+
var TAX45_REVIEW_SNAPSHOT = "2026-08-31";
|
|
7425
7438
|
var compareText = (left, right) => {
|
|
7426
7439
|
if (left < right) {
|
|
7427
7440
|
return -1;
|
|
@@ -7720,15 +7733,16 @@ var crossoverAmbiguity = (phrase, taxonomyUri, colorScopeIdentifier, explanation
|
|
|
7720
7733
|
}))
|
|
7721
7734
|
]
|
|
7722
7735
|
});
|
|
7723
|
-
var crossoverEquivalent = (phrase, taxonomyUri, explanation, source) => ({
|
|
7736
|
+
var crossoverEquivalent = (phrase, taxonomyUri, explanation, source, snapshot = PUBLISHED_V1_BASELINE, lifecycle = lifecycleFor()) => ({
|
|
7724
7737
|
explanation,
|
|
7725
7738
|
governance: lexicalGovernance(
|
|
7726
7739
|
"Taxonomy records the evidenced material reading without assigning a consumer route.",
|
|
7727
7740
|
{
|
|
7728
7741
|
basis: "evidenced",
|
|
7729
|
-
snapshot
|
|
7742
|
+
snapshot,
|
|
7730
7743
|
source
|
|
7731
|
-
}
|
|
7744
|
+
},
|
|
7745
|
+
lifecycle
|
|
7732
7746
|
),
|
|
7733
7747
|
outcome: "equivalent",
|
|
7734
7748
|
phrase,
|
|
@@ -7764,10 +7778,10 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
7764
7778
|
],
|
|
7765
7779
|
"The former combined pattern label names two distinct motif readings. It does not identify an installation layout or physical unit shape without separate evidence.",
|
|
7766
7780
|
"Linear TAX-45 reviewed implementation contract and independent review comment c457ef92-372b-4db0-8490-0b96ecccc8ac",
|
|
7767
|
-
|
|
7781
|
+
TAX45_REVIEW_SNAPSHOT,
|
|
7768
7782
|
{
|
|
7769
|
-
introducedAt:
|
|
7770
|
-
reviewedAt:
|
|
7783
|
+
introducedAt: TAX45_REVIEW_SNAPSHOT,
|
|
7784
|
+
reviewedAt: TAX45_REVIEW_SNAPSHOT,
|
|
7771
7785
|
status: "active"
|
|
7772
7786
|
},
|
|
7773
7787
|
"referenced"
|
|
@@ -7780,10 +7794,10 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
7780
7794
|
],
|
|
7781
7795
|
"The DesignShop compound source phrase did not record which of the two distinct motif readings was intended.",
|
|
7782
7796
|
"DesignShop frozen estate pattern vocabulary, reconciled by Linear TAX-45 on 2026-08-31",
|
|
7783
|
-
|
|
7797
|
+
TAX45_REVIEW_SNAPSHOT,
|
|
7784
7798
|
{
|
|
7785
|
-
introducedAt:
|
|
7786
|
-
reviewedAt:
|
|
7799
|
+
introducedAt: TAX45_REVIEW_SNAPSHOT,
|
|
7800
|
+
reviewedAt: TAX45_REVIEW_SNAPSHOT,
|
|
7787
7801
|
status: "active"
|
|
7788
7802
|
},
|
|
7789
7803
|
"referenced"
|
|
@@ -7798,8 +7812,8 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
7798
7812
|
`${searchCorpusEvidence("mosaic")}; Uniclass Pr_35_93_96_53 Mosaic tiles; consumer authority-union boundary reviewed 2026-08-31`,
|
|
7799
7813
|
MATERIALGRAPH_SEARCH_CORPUS_SNAPSHOT,
|
|
7800
7814
|
{
|
|
7801
|
-
introducedAt:
|
|
7802
|
-
reviewedAt:
|
|
7815
|
+
introducedAt: TAX45_REVIEW_SNAPSHOT,
|
|
7816
|
+
reviewedAt: TAX45_REVIEW_SNAPSHOT,
|
|
7803
7817
|
status: "active"
|
|
7804
7818
|
}
|
|
7805
7819
|
),
|
|
@@ -8084,6 +8098,18 @@ var AUTHORED_LEXICAL_ENTRIES = [
|
|
|
8084
8098
|
"Marble has one governed commercial dimension-stone reading in this corpus; its scientific and commercial boundaries remain explicit, and ColorScope 7.3 has no exact named-colour identity.",
|
|
8085
8099
|
crossoverSource("marble")
|
|
8086
8100
|
),
|
|
8101
|
+
crossoverEquivalent(
|
|
8102
|
+
"limestone",
|
|
8103
|
+
`${TAXONOMY_BASE_URI}/id/material/limestone`,
|
|
8104
|
+
"Limestone has one governed carbonate-stone reading in this corpus; formation, quarry, grade, cut, finish, and similarly named paint identities remain separate, and ColorScope 7.3 has no exact named-colour identity.",
|
|
8105
|
+
crossoverSource("limestone"),
|
|
8106
|
+
TAXONOMY_SNAPSHOT,
|
|
8107
|
+
{
|
|
8108
|
+
introducedAt: TAXONOMY_SNAPSHOT,
|
|
8109
|
+
reviewedAt: TAXONOMY_SNAPSHOT,
|
|
8110
|
+
status: "active"
|
|
8111
|
+
}
|
|
8112
|
+
),
|
|
8087
8113
|
crossoverEquivalent(
|
|
8088
8114
|
"oak",
|
|
8089
8115
|
`${TAXONOMY_BASE_URI}/id/material/oak`,
|
package/package.json
CHANGED