@instruments/taxonomy 1.1.2 → 1.1.3
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 +8 -2
- package/package.json +10 -11
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-08-31";
|
|
205
|
-
declare const TAXONOMY_VERSION: "1.1.
|
|
205
|
+
declare const TAXONOMY_VERSION: "1.1.3";
|
|
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-08-31";
|
|
339
|
-
readonly version: "1.1.
|
|
339
|
+
readonly version: "1.1.3";
|
|
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
|
@@ -3118,9 +3118,15 @@ var PRODUCT_CATEGORY_TERMS = [
|
|
|
3118
3118
|
"Acoustic panel",
|
|
3119
3119
|
"A product supplied to absorb or diffuse sound, whose acoustic performance is the reason it is specified.",
|
|
3120
3120
|
{
|
|
3121
|
+
altLabels: [
|
|
3122
|
+
"acoustic wall panel",
|
|
3123
|
+
"acoustic wall paneling",
|
|
3124
|
+
"acoustic wall panelling",
|
|
3125
|
+
"sound absorbing wall panel"
|
|
3126
|
+
],
|
|
3121
3127
|
searchedWithout: [
|
|
3122
3128
|
searchedUniclass(
|
|
3123
|
-
"acoustic panel, sound absorbing panel, acoustic treatment"
|
|
3129
|
+
"acoustic panel, acoustic wall panel, sound absorbing panel, sound absorbing wall panel, acoustic treatment"
|
|
3124
3130
|
)
|
|
3125
3131
|
]
|
|
3126
3132
|
}
|
|
@@ -7414,7 +7420,7 @@ var resolveReference = (reference) => INDEX.byKey.get(canonicalKey(reference));
|
|
|
7414
7420
|
// src/v1.ts
|
|
7415
7421
|
var TAXONOMY_BASE_URI = "https://taxonomy.materialinstruments.com";
|
|
7416
7422
|
var TAXONOMY_SNAPSHOT = "2026-08-31";
|
|
7417
|
-
var TAXONOMY_VERSION = "1.1.
|
|
7423
|
+
var TAXONOMY_VERSION = "1.1.3";
|
|
7418
7424
|
var PUBLISHED_V1_BASELINE = "2026-08-30";
|
|
7419
7425
|
var compareText = (left, right) => {
|
|
7420
7426
|
if (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.3",
|
|
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,15 +23,6 @@
|
|
|
23
23
|
"publishConfig": {
|
|
24
24
|
"access": "public"
|
|
25
25
|
},
|
|
26
|
-
"scripts": {
|
|
27
|
-
"build": "rm -rf dist && tsup",
|
|
28
|
-
"lint": "howells-check .",
|
|
29
|
-
"prepare": "[ -d dist ] || pnpm build",
|
|
30
|
-
"smoke:packed": "node --experimental-strip-types scripts/smoke-packed-core.ts",
|
|
31
|
-
"sync:colorscope": "vitest run src/colorscope-sync.test.ts",
|
|
32
|
-
"test": "vitest run",
|
|
33
|
-
"typecheck": "tsc --noEmit"
|
|
34
|
-
},
|
|
35
26
|
"devDependencies": {
|
|
36
27
|
"@howells/lint": "^1.0.0",
|
|
37
28
|
"@instruments/colorscope": "7.3.0",
|
|
@@ -39,5 +30,13 @@
|
|
|
39
30
|
"tsup": "^8.5.1",
|
|
40
31
|
"typescript": "^5.7.0",
|
|
41
32
|
"vitest": "^4.0.0"
|
|
33
|
+
},
|
|
34
|
+
"scripts": {
|
|
35
|
+
"build": "rm -rf dist && tsup",
|
|
36
|
+
"lint": "howells-check .",
|
|
37
|
+
"smoke:packed": "node --experimental-strip-types scripts/smoke-packed-core.ts",
|
|
38
|
+
"sync:colorscope": "vitest run src/colorscope-sync.test.ts",
|
|
39
|
+
"test": "vitest run",
|
|
40
|
+
"typecheck": "tsc --noEmit"
|
|
42
41
|
}
|
|
43
|
-
}
|
|
42
|
+
}
|