@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/dist/term.d.ts CHANGED
@@ -5,7 +5,28 @@ export type ExternalScheme =
5
5
  /** Uniclass 2015 (NBS). CC BY-ND 4.0 - referenced by code, never adapted. */
6
6
  | "uniclass"
7
7
  /** Wikidata Q-items. CC0. */
8
- | "wikidata";
8
+ | "wikidata"
9
+ /** CAS Registry Numbers. Referenced by number; CAS Common Chemistry data is CC BY-NC 4.0. */
10
+ | "cas"
11
+ /** ISO 2076 generic names of man-made fibres. Referenced by name, never adapted. */
12
+ | "iso-2076"
13
+ /** ISO 1043-1 symbols for plastics. Referenced by symbol. */
14
+ | "iso-1043-1"
15
+ /** ISO 1629 symbols for rubbers and latices. Referenced by symbol. */
16
+ | "iso-1629"
17
+ /**
18
+ * ISO 1874-1 designations for polyamide moulding materials, a standard withdrawn and replaced
19
+ * by ISO 16396-1:2015. Referenced by designation.
20
+ */
21
+ | "iso-1874-1"
22
+ /** Regulation (EU) No 1007/2011 textile fibre names (Annex I). Public law. */
23
+ | "eu-1007-2011"
24
+ /** US FTC 16 CFR 303 generic fibre names. Public law. */
25
+ | "ftc-16cfr303"
26
+ /** Unified Numbering System for metals and alloys. Referenced by number. */
27
+ | "uns"
28
+ /** EN 10027-2 steel numbers and EN 573-3 aluminium designations. Referenced by designation. */
29
+ | "en";
9
30
  /**
10
31
  * SKOS mapping strength, using SKOS's own vocabulary so the published RDF is a direct rendering
11
32
  * rather than a translation. `exact` asserts the two terms are interchangeable in retrieval;
package/dist/v1.d.ts CHANGED
@@ -1,7 +1,7 @@
1
- import type { ElementPlacement, ExternalMapping, PeriodSpan, RelationPredicate, SearchedWithout, StyleKind, TermProvenance, TermUsage, UsageWithheld } from "./term.js";
1
+ import type { ElementPlacement, ExternalMapping, ExternalScheme, PeriodSpan, RelationPredicate, SearchedWithout, StyleKind, TermProvenance, TermUsage, UsageWithheld } from "./term.js";
2
2
  export declare const TAXONOMY_BASE_URI: "https://taxonomy.materialinstruments.com";
3
- export declare const TAXONOMY_SNAPSHOT: "2026-09-11";
4
- export declare const TAXONOMY_VERSION: "1.3.0";
3
+ export declare const TAXONOMY_SNAPSHOT: "2026-09-22";
4
+ export declare const TAXONOMY_VERSION: "1.6.0";
5
5
  export type CanonicalConceptUri = `${typeof TAXONOMY_BASE_URI}/id/${string}`;
6
6
  export type LifecycleStatus = "active" | "deprecated";
7
7
  export interface Lifecycle {
@@ -42,7 +42,7 @@ export interface FacetNode {
42
42
  uri: string;
43
43
  }
44
44
  export interface ExternalReference {
45
- authority: "aat" | "uniclass" | "wikidata";
45
+ authority: ExternalScheme;
46
46
  identifier: string;
47
47
  label: string;
48
48
  match: ExternalMapping["match"];
@@ -135,7 +135,7 @@ export declare const TAXONOMY_CORPUS_METADATA: {
135
135
  readonly lexicalEntryCount: number;
136
136
  readonly nodeCount: number;
137
137
  readonly revision: string;
138
- readonly snapshot: "2026-09-11";
139
- readonly version: "1.3.0";
138
+ readonly snapshot: "2026-09-22";
139
+ readonly version: "1.6.0";
140
140
  };
141
141
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instruments/taxonomy",
3
- "version": "1.3.0",
3
+ "version": "1.6.0",
4
4
  "description": "Canonical data-only interiors and architecture knowledge graph and lexical corpus.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {
@@ -35,8 +35,7 @@
35
35
  "scripts": {
36
36
  "build": "tsup && tsc -p tsconfig.build.json && node ../../scripts/finalize-declarations.mjs dist",
37
37
  "lint": "node node_modules/@howells/lint/bin/howells-check.mjs .",
38
- "smoke:packed": "node --experimental-strip-types scripts/smoke-packed-core.ts",
39
- "sync:colorscope": "vitest run src/colorscope-sync.test.ts",
38
+ "lint:fix": "node node_modules/@howells/lint/bin/howells-fix.mjs .",
40
39
  "test": "vitest run",
41
40
  "typecheck": "tsc --noEmit"
42
41
  }