fhir-persistence 0.6.0 → 0.7.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/CHANGELOG.md +40 -0
- package/README.md +1 -1
- package/dist/cjs/index.cjs +719 -0
- package/dist/cjs/index.cjs.map +4 -4
- package/dist/cjs/index.d.ts +214 -0
- package/dist/esm/index.d.ts +214 -0
- package/dist/esm/index.mjs +712 -0
- package/dist/esm/index.mjs.map +4 -4
- package/dist/index.d.ts +214 -0
- package/dist/lib/conformance/concept-hierarchy-repo.d.ts +38 -0
- package/dist/lib/conformance/concept-hierarchy-repo.d.ts.map +1 -0
- package/dist/lib/conformance/element-index-repo.d.ts +40 -0
- package/dist/lib/conformance/element-index-repo.d.ts.map +1 -0
- package/dist/lib/conformance/expansion-cache-repo.d.ts +32 -0
- package/dist/lib/conformance/expansion-cache-repo.d.ts.map +1 -0
- package/dist/lib/conformance/ig-import-orchestrator.d.ts +69 -0
- package/dist/lib/conformance/ig-import-orchestrator.d.ts.map +1 -0
- package/dist/lib/conformance/ig-resource-map-repo.d.ts +41 -0
- package/dist/lib/conformance/ig-resource-map-repo.d.ts.map +1 -0
- package/dist/lib/conformance/index.d.ts +29 -0
- package/dist/lib/conformance/index.d.ts.map +1 -0
- package/dist/lib/conformance/sd-index-repo.d.ts +35 -0
- package/dist/lib/conformance/sd-index-repo.d.ts.map +1 -0
- package/dist/lib/conformance/search-param-index-repo.d.ts +33 -0
- package/dist/lib/conformance/search-param-index-repo.d.ts.map +1 -0
- package/dist/lib/index.d.ts +8 -0
- package/dist/lib/index.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,46 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.7.0] - 2025-03-18
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
#### Conformance Storage Module (`src/conformance/`)
|
|
13
|
+
|
|
14
|
+
New module for IG-related conformance resource management, unblocking IG Explorer (Phase-fhir-server-004):
|
|
15
|
+
|
|
16
|
+
- **`IGResourceMapRepo`** (P1) — `ig_resource_map` table tracking IG → resource mappings with grouped index queries
|
|
17
|
+
- **`SDIndexRepo`** (P2) — `structure_definition_index` table for fast SD queries by type, kind, base definition
|
|
18
|
+
- **`ElementIndexRepo`** (P3) — `structure_element_index` table for element-level queries across SDs (dialect-aware: SQLite INTEGER vs PostgreSQL BOOLEAN/JSONB)
|
|
19
|
+
- **`ExpansionCacheRepo`** (P4) — `value_set_expansion` cache table for ValueSet expansion results (dialect-aware timestamps)
|
|
20
|
+
- **`ConceptHierarchyRepo`** (P5) — `code_system_concept` hierarchical table with parent-child relationships and level queries
|
|
21
|
+
- **`SearchParamIndexRepo`** (B1) — `search_parameter_index` table for IG-scoped SearchParameter tracking
|
|
22
|
+
- **`IGImportOrchestrator`** (B2) — Coordinates all repos for complete IG import pipeline; accepts optional fhir-runtime extraction functions (`extractElementIndex`, `flattenConcepts`, `extractDependencies`)
|
|
23
|
+
|
|
24
|
+
All repos follow existing patterns: `StorageAdapter` + `DDLDialect`, `?` placeholders, SQLite/PostgreSQL dual-backend support.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- **`fhir-runtime` dependency** — Upgraded from `^0.10.0` to `^0.11.0` (IG extraction API: `extractSDDependencies`, `extractElementIndexRows`, `flattenConceptHierarchy`)
|
|
29
|
+
- **`src/index.ts`** — Added conformance module exports (7 classes + 9 types)
|
|
30
|
+
|
|
31
|
+
### Test Coverage
|
|
32
|
+
|
|
33
|
+
- **1061 total tests** (1053 passing, 8 skipped) across 63 test files — no regressions
|
|
34
|
+
- **47 new conformance tests** covering all 6 repos + orchestrator (SQLite in-memory)
|
|
35
|
+
|
|
36
|
+
## [0.6.1] - 2025-03-18
|
|
37
|
+
|
|
38
|
+
### Changed
|
|
39
|
+
|
|
40
|
+
- **`fhir-runtime` dependency** — Upgraded from `^0.8.1` to `^0.10.0` to align with fhir-runtime v0.10.0 (STAGE-7: Profile Slicing & Choice Type utilities)
|
|
41
|
+
- No code changes required — `FhirRuntimeProvider` uses structural typing and is fully compatible with the new fhir-runtime API surface
|
|
42
|
+
|
|
43
|
+
### Notes
|
|
44
|
+
|
|
45
|
+
- fhir-runtime v0.10.0 adds: Slicing API (`matchSlice`, `countSliceInstances`, `generateSliceSkeleton`), Choice Type utilities, BackboneElement helpers, and `inferComplexType` bug fix
|
|
46
|
+
- These new APIs are available to consumers via fhir-runtime but do not affect fhir-persistence internals
|
|
47
|
+
|
|
8
48
|
## [0.6.0] - 2025-03-17
|
|
9
49
|
|
|
10
50
|
### Added
|
package/README.md
CHANGED
|
@@ -5,7 +5,7 @@ Embedded FHIR R4 persistence layer — CRUD, search, indexing, and schema migrat
|
|
|
5
5
|
[](https://www.npmjs.com/package/fhir-persistence)
|
|
6
6
|
[](./LICENSE)
|
|
7
7
|
|
|
8
|
-
> **v0.
|
|
8
|
+
> **v0.7.0** — Conformance storage module for IG Explorer: 6 repos + import orchestrator
|
|
9
9
|
|
|
10
10
|
## Features
|
|
11
11
|
|