@instruments/taxonomy 1.1.0 → 1.1.2
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 +740 -153
- package/package.json +2 -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-08-
|
|
205
|
-
declare const TAXONOMY_VERSION: "1.1.
|
|
204
|
+
declare const TAXONOMY_SNAPSHOT: "2026-08-31";
|
|
205
|
+
declare const TAXONOMY_VERSION: "1.1.2";
|
|
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-08-
|
|
339
|
-
readonly version: "1.1.
|
|
338
|
+
readonly snapshot: "2026-08-31";
|
|
339
|
+
readonly version: "1.1.2";
|
|
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 };
|