@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.
Files changed (87) hide show
  1. package/dist/bin/cure.d.ts +2 -5
  2. package/dist/bin/cure.d.ts.map +1 -1
  3. package/dist/bin/cure.js +360 -129
  4. package/dist/bin/cure.js.map +1 -1
  5. package/dist/clinician/decisionSupport.d.ts +325 -0
  6. package/dist/clinician/decisionSupport.d.ts.map +1 -0
  7. package/dist/clinician/decisionSupport.js +604 -0
  8. package/dist/clinician/decisionSupport.js.map +1 -0
  9. package/dist/clinician/index.d.ts +5 -0
  10. package/dist/clinician/index.d.ts.map +1 -0
  11. package/dist/clinician/index.js +5 -0
  12. package/dist/clinician/index.js.map +1 -0
  13. package/dist/compliance/index.d.ts +5 -0
  14. package/dist/compliance/index.d.ts.map +1 -0
  15. package/dist/compliance/index.js +5 -0
  16. package/dist/compliance/index.js.map +1 -0
  17. package/dist/index.d.ts +65 -0
  18. package/dist/index.d.ts.map +1 -0
  19. package/dist/index.js +102 -0
  20. package/dist/index.js.map +1 -0
  21. package/dist/integrations/clinicalTrials/index.d.ts +5 -0
  22. package/dist/integrations/clinicalTrials/index.d.ts.map +1 -0
  23. package/dist/integrations/clinicalTrials/index.js +5 -0
  24. package/dist/integrations/clinicalTrials/index.js.map +1 -0
  25. package/dist/integrations/ehr/index.d.ts +5 -0
  26. package/dist/integrations/ehr/index.d.ts.map +1 -0
  27. package/dist/integrations/ehr/index.js +5 -0
  28. package/dist/integrations/ehr/index.js.map +1 -0
  29. package/dist/integrations/genomics/index.d.ts +5 -0
  30. package/dist/integrations/genomics/index.d.ts.map +1 -0
  31. package/dist/integrations/genomics/index.js +5 -0
  32. package/dist/integrations/genomics/index.js.map +1 -0
  33. package/dist/ml/index.d.ts +5 -0
  34. package/dist/ml/index.d.ts.map +1 -0
  35. package/dist/ml/index.js +5 -0
  36. package/dist/ml/index.js.map +1 -0
  37. package/dist/ml/outcomePredictor.d.ts +297 -0
  38. package/dist/ml/outcomePredictor.d.ts.map +1 -0
  39. package/dist/ml/outcomePredictor.js +823 -0
  40. package/dist/ml/outcomePredictor.js.map +1 -0
  41. package/dist/orchestrator/index.d.ts +5 -0
  42. package/dist/orchestrator/index.d.ts.map +1 -0
  43. package/dist/orchestrator/index.js +5 -0
  44. package/dist/orchestrator/index.js.map +1 -0
  45. package/dist/orchestrator/realWorldOncology.d.ts +351 -0
  46. package/dist/orchestrator/realWorldOncology.d.ts.map +1 -0
  47. package/dist/orchestrator/realWorldOncology.js +425 -0
  48. package/dist/orchestrator/realWorldOncology.js.map +1 -0
  49. package/dist/patient/index.d.ts +5 -0
  50. package/dist/patient/index.d.ts.map +1 -0
  51. package/dist/patient/index.js +5 -0
  52. package/dist/patient/index.js.map +1 -0
  53. package/dist/patient/patientPortal.d.ts +337 -0
  54. package/dist/patient/patientPortal.d.ts.map +1 -0
  55. package/dist/patient/patientPortal.js +667 -0
  56. package/dist/patient/patientPortal.js.map +1 -0
  57. package/dist/safety/drugInteractions.d.ts +230 -0
  58. package/dist/safety/drugInteractions.d.ts.map +1 -0
  59. package/dist/safety/drugInteractions.js +697 -0
  60. package/dist/safety/drugInteractions.js.map +1 -0
  61. package/dist/safety/index.d.ts +5 -0
  62. package/dist/safety/index.d.ts.map +1 -0
  63. package/dist/safety/index.js +5 -0
  64. package/dist/safety/index.js.map +1 -0
  65. package/dist/validation/index.d.ts +5 -0
  66. package/dist/validation/index.d.ts.map +1 -0
  67. package/dist/validation/index.js +5 -0
  68. package/dist/validation/index.js.map +1 -0
  69. package/dist/validation/retrospectiveValidator.d.ts +246 -0
  70. package/dist/validation/retrospectiveValidator.d.ts.map +1 -0
  71. package/dist/validation/retrospectiveValidator.js +602 -0
  72. package/dist/validation/retrospectiveValidator.js.map +1 -0
  73. package/package.json +1 -1
  74. package/src/bin/cure.ts +412 -143
  75. package/src/clinician/decisionSupport.ts +949 -0
  76. package/src/clinician/index.ts +11 -0
  77. package/src/compliance/index.ts +19 -0
  78. package/src/integrations/clinicalTrials/index.ts +21 -0
  79. package/src/integrations/ehr/index.ts +32 -0
  80. package/src/integrations/genomics/index.ts +23 -0
  81. package/src/ml/index.ts +15 -0
  82. package/src/orchestrator/index.ts +11 -0
  83. package/src/orchestrator/realWorldOncology.ts +803 -0
  84. package/src/patient/index.ts +14 -0
  85. package/src/patient/patientPortal.ts +1039 -0
  86. package/src/safety/index.ts +14 -0
  87. 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';
@@ -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';