@erosolaraijs/cure 1.0.1 → 1.0.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/bin/cure.d.ts +2 -5
- package/dist/bin/cure.d.ts.map +1 -1
- package/dist/bin/cure.js +360 -129
- package/dist/bin/cure.js.map +1 -1
- package/dist/clinician/decisionSupport.d.ts +325 -0
- package/dist/clinician/decisionSupport.d.ts.map +1 -0
- package/dist/clinician/decisionSupport.js +604 -0
- package/dist/clinician/decisionSupport.js.map +1 -0
- package/dist/clinician/index.d.ts +5 -0
- package/dist/clinician/index.d.ts.map +1 -0
- package/dist/clinician/index.js +5 -0
- package/dist/clinician/index.js.map +1 -0
- package/dist/compliance/index.d.ts +5 -0
- package/dist/compliance/index.d.ts.map +1 -0
- package/dist/compliance/index.js +5 -0
- package/dist/compliance/index.js.map +1 -0
- package/dist/index.d.ts +65 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +102 -0
- package/dist/index.js.map +1 -0
- package/dist/integrations/clinicalTrials/index.d.ts +5 -0
- package/dist/integrations/clinicalTrials/index.d.ts.map +1 -0
- package/dist/integrations/clinicalTrials/index.js +5 -0
- package/dist/integrations/clinicalTrials/index.js.map +1 -0
- package/dist/integrations/ehr/index.d.ts +5 -0
- package/dist/integrations/ehr/index.d.ts.map +1 -0
- package/dist/integrations/ehr/index.js +5 -0
- package/dist/integrations/ehr/index.js.map +1 -0
- package/dist/integrations/genomics/index.d.ts +5 -0
- package/dist/integrations/genomics/index.d.ts.map +1 -0
- package/dist/integrations/genomics/index.js +5 -0
- package/dist/integrations/genomics/index.js.map +1 -0
- package/dist/ml/index.d.ts +5 -0
- package/dist/ml/index.d.ts.map +1 -0
- package/dist/ml/index.js +5 -0
- package/dist/ml/index.js.map +1 -0
- package/dist/ml/outcomePredictor.d.ts +297 -0
- package/dist/ml/outcomePredictor.d.ts.map +1 -0
- package/dist/ml/outcomePredictor.js +823 -0
- package/dist/ml/outcomePredictor.js.map +1 -0
- 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 +5 -0
- package/dist/patient/index.d.ts.map +1 -0
- package/dist/patient/index.js +5 -0
- package/dist/patient/index.js.map +1 -0
- package/dist/patient/patientPortal.d.ts +337 -0
- package/dist/patient/patientPortal.d.ts.map +1 -0
- package/dist/patient/patientPortal.js +667 -0
- package/dist/patient/patientPortal.js.map +1 -0
- package/dist/safety/drugInteractions.d.ts +230 -0
- package/dist/safety/drugInteractions.d.ts.map +1 -0
- package/dist/safety/drugInteractions.js +697 -0
- package/dist/safety/drugInteractions.js.map +1 -0
- package/dist/safety/index.d.ts +5 -0
- package/dist/safety/index.d.ts.map +1 -0
- package/dist/safety/index.js +5 -0
- package/dist/safety/index.js.map +1 -0
- package/dist/validation/index.d.ts +5 -0
- package/dist/validation/index.d.ts.map +1 -0
- package/dist/validation/index.js +5 -0
- package/dist/validation/index.js.map +1 -0
- package/dist/validation/retrospectiveValidator.d.ts +246 -0
- package/dist/validation/retrospectiveValidator.d.ts.map +1 -0
- package/dist/validation/retrospectiveValidator.js +602 -0
- package/dist/validation/retrospectiveValidator.js.map +1 -0
- package/package.json +1 -1
- package/src/bin/cure.ts +412 -143
- package/src/clinician/decisionSupport.ts +949 -0
- package/src/clinician/index.ts +11 -0
- package/src/compliance/index.ts +19 -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/patient/patientPortal.ts +1039 -0
- package/src/safety/index.ts +14 -0
- package/src/validation/index.ts +10 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Clinician Decision Support Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export {
|
|
5
|
+
ClinicalDecisionSupportService,
|
|
6
|
+
type ClinicalRecommendation,
|
|
7
|
+
type ClinicianOverride,
|
|
8
|
+
type OverrideCategory,
|
|
9
|
+
type TumorBoardCase,
|
|
10
|
+
type AlertAcknowledgment
|
|
11
|
+
} from './decisionSupport.js';
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* HIPAA Compliance Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export {
|
|
5
|
+
HIPAAComplianceService,
|
|
6
|
+
type AuditLogEntry,
|
|
7
|
+
type AuditEventType,
|
|
8
|
+
type AuditAction,
|
|
9
|
+
type PatientConsent,
|
|
10
|
+
type ConsentType,
|
|
11
|
+
type DataCategory,
|
|
12
|
+
type ConsentPurpose,
|
|
13
|
+
type AccessPolicy,
|
|
14
|
+
type AccessCondition,
|
|
15
|
+
type AccessDecision,
|
|
16
|
+
type EncryptionConfig,
|
|
17
|
+
type EncryptedData,
|
|
18
|
+
type DataMaskingConfig
|
|
19
|
+
} from './hipaa.js';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Clinical Trials Integration Module Exports
|
|
3
|
+
*/
|
|
4
|
+
export {
|
|
5
|
+
ClinicalTrialsGovClient,
|
|
6
|
+
type ClinicalTrial,
|
|
7
|
+
type TrialStatus,
|
|
8
|
+
type TrialPhase,
|
|
9
|
+
type TrialIntervention,
|
|
10
|
+
type TrialEligibility,
|
|
11
|
+
type TrialLocation,
|
|
12
|
+
type TrialSponsor,
|
|
13
|
+
type TrialContact,
|
|
14
|
+
type TrialArm,
|
|
15
|
+
type TrialOutcome,
|
|
16
|
+
type BiomarkerRequirement,
|
|
17
|
+
type TrialSearchParams,
|
|
18
|
+
type TrialSearchResult,
|
|
19
|
+
type PatientProfile,
|
|
20
|
+
type TrialMatch
|
|
21
|
+
} from './clinicalTrialsGov.js';
|
|
@@ -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';
|