@erosolaraijs/cure 1.0.2 → 1.0.4
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/bin/cure.d.ts +1 -1
- package/dist/bin/cure.js +155 -66
- package/dist/bin/cure.js.map +1 -1
- package/dist/clinician/index.d.ts +1 -1
- package/dist/clinician/index.d.ts.map +1 -1
- package/dist/clinician/index.js +1 -1
- package/dist/clinician/index.js.map +1 -1
- package/dist/compliance/index.d.ts +1 -1
- package/dist/compliance/index.d.ts.map +1 -1
- package/dist/compliance/index.js +1 -1
- package/dist/compliance/index.js.map +1 -1
- package/dist/index.d.ts +60 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +96 -0
- package/dist/index.js.map +1 -0
- package/dist/integrations/clinicalTrials/index.d.ts +1 -1
- package/dist/integrations/clinicalTrials/index.d.ts.map +1 -1
- package/dist/integrations/clinicalTrials/index.js +1 -1
- package/dist/integrations/clinicalTrials/index.js.map +1 -1
- package/dist/integrations/ehr/index.d.ts +1 -1
- package/dist/integrations/ehr/index.d.ts.map +1 -1
- package/dist/integrations/ehr/index.js +1 -1
- package/dist/integrations/ehr/index.js.map +1 -1
- package/dist/integrations/genomics/index.d.ts +1 -1
- package/dist/integrations/genomics/index.d.ts.map +1 -1
- package/dist/integrations/genomics/index.js +1 -1
- package/dist/integrations/genomics/index.js.map +1 -1
- package/dist/ml/index.d.ts +1 -1
- package/dist/ml/index.d.ts.map +1 -1
- package/dist/ml/index.js +1 -1
- package/dist/ml/index.js.map +1 -1
- package/dist/orchestrator/index.d.ts +5 -0
- package/dist/orchestrator/index.d.ts.map +1 -0
- package/dist/orchestrator/index.js +5 -0
- package/dist/orchestrator/index.js.map +1 -0
- package/dist/orchestrator/realWorldOncology.d.ts +351 -0
- package/dist/orchestrator/realWorldOncology.d.ts.map +1 -0
- package/dist/orchestrator/realWorldOncology.js +425 -0
- package/dist/orchestrator/realWorldOncology.js.map +1 -0
- package/dist/patient/index.d.ts +1 -1
- package/dist/patient/index.d.ts.map +1 -1
- package/dist/patient/index.js +1 -1
- package/dist/patient/index.js.map +1 -1
- package/dist/safety/index.d.ts +1 -1
- package/dist/safety/index.d.ts.map +1 -1
- package/dist/safety/index.js +1 -1
- package/dist/safety/index.js.map +1 -1
- package/dist/validation/index.d.ts +1 -1
- package/dist/validation/index.d.ts.map +1 -1
- package/dist/validation/index.js +1 -1
- package/dist/validation/index.js.map +1 -1
- package/package.json +1 -1
- package/src/bin/cure.ts +166 -70
- package/src/clinician/index.ts +11 -0
- package/src/compliance/index.ts +19 -0
- package/src/index.ts +268 -0
- package/src/integrations/clinicalTrials/index.ts +21 -0
- package/src/integrations/ehr/index.ts +32 -0
- package/src/integrations/genomics/index.ts +23 -0
- package/src/ml/index.ts +15 -0
- package/src/orchestrator/index.ts +11 -0
- package/src/orchestrator/realWorldOncology.ts +803 -0
- package/src/patient/index.ts +14 -0
- package/src/safety/index.ts +14 -0
- package/src/validation/index.ts +10 -0
- package/dist/integrations/index.d.ts +0 -7
- package/dist/integrations/index.d.ts.map +0 -1
- package/dist/integrations/index.js +0 -10
- package/dist/integrations/index.js.map +0 -1
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* EHR Integration Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export {
|
|
5
|
+
FHIRClient,
|
|
6
|
+
EpicFHIRClient,
|
|
7
|
+
CernerFHIRClient,
|
|
8
|
+
createFHIRClient,
|
|
9
|
+
type FHIRConfig,
|
|
10
|
+
type FHIRPatient,
|
|
11
|
+
type FHIRIdentifier,
|
|
12
|
+
type FHIRHumanName,
|
|
13
|
+
type FHIRAddress,
|
|
14
|
+
type FHIRContactPoint,
|
|
15
|
+
type FHIRCodeableConcept,
|
|
16
|
+
type FHIRCoding,
|
|
17
|
+
type FHIRExtension,
|
|
18
|
+
type FHIRCondition,
|
|
19
|
+
type FHIRObservation,
|
|
20
|
+
type FHIRQuantity,
|
|
21
|
+
type FHIRReference,
|
|
22
|
+
type FHIRMedicationRequest,
|
|
23
|
+
type FHIRDosage,
|
|
24
|
+
type FHIRDiagnosticReport,
|
|
25
|
+
type FHIRProcedure,
|
|
26
|
+
type FHIRBundle,
|
|
27
|
+
type FHIRResource,
|
|
28
|
+
type CancerDiagnosis,
|
|
29
|
+
type CancerBiomarkers,
|
|
30
|
+
type TreatmentHistory,
|
|
31
|
+
type AuditEvent
|
|
32
|
+
} from './fhir.js';
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Genomic Platform Integration Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export {
|
|
5
|
+
FoundationMedicineClient,
|
|
6
|
+
GuardantHealthClient,
|
|
7
|
+
TempusClient,
|
|
8
|
+
UnifiedGenomicsService,
|
|
9
|
+
createGenomicClient,
|
|
10
|
+
type GenomicTestOrder,
|
|
11
|
+
type GenomicTestResult,
|
|
12
|
+
type GenomicVariant,
|
|
13
|
+
type CopyNumberAlteration,
|
|
14
|
+
type GeneFusion,
|
|
15
|
+
type GenomicBiomarker,
|
|
16
|
+
type MSIResult,
|
|
17
|
+
type TMBResult,
|
|
18
|
+
type HRDResult,
|
|
19
|
+
type LOHResult,
|
|
20
|
+
type TherapyMatch,
|
|
21
|
+
type ClinicalTrialMatch,
|
|
22
|
+
type GenomicPlatformConfig
|
|
23
|
+
} from './genomicPlatforms.js';
|
package/src/ml/index.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Machine Learning Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export {
|
|
5
|
+
OutcomePredictorService,
|
|
6
|
+
type PatientFeatures,
|
|
7
|
+
type TreatmentFeatures,
|
|
8
|
+
type ResponsePrediction,
|
|
9
|
+
type SurvivalPrediction,
|
|
10
|
+
type ToxicityPrediction,
|
|
11
|
+
type ResistancePrediction,
|
|
12
|
+
type TherapyRanking,
|
|
13
|
+
type MLModel,
|
|
14
|
+
type ModelRegistry
|
|
15
|
+
} from './outcomePredictor.js';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Orchestrator Module - Real-World Oncology Service
|
|
3
|
+
*/
|
|
4
|
+
export {
|
|
5
|
+
RealWorldOncologyService,
|
|
6
|
+
createRealWorldOncologyService,
|
|
7
|
+
type RealWorldConfig,
|
|
8
|
+
type RealWorldPatient,
|
|
9
|
+
type ComprehensiveTreatmentPlan,
|
|
10
|
+
type TreatmentOutcome
|
|
11
|
+
} from './realWorldOncology.js';
|