@erosolaraijs/cure 1.0.2 → 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 (68) hide show
  1. package/dist/bin/cure.d.ts +1 -1
  2. package/dist/bin/cure.js +136 -66
  3. package/dist/bin/cure.js.map +1 -1
  4. package/dist/clinician/index.d.ts +1 -1
  5. package/dist/clinician/index.d.ts.map +1 -1
  6. package/dist/clinician/index.js +1 -1
  7. package/dist/clinician/index.js.map +1 -1
  8. package/dist/compliance/index.d.ts +1 -1
  9. package/dist/compliance/index.d.ts.map +1 -1
  10. package/dist/compliance/index.js +1 -1
  11. package/dist/compliance/index.js.map +1 -1
  12. package/dist/index.d.ts +65 -0
  13. package/dist/index.d.ts.map +1 -0
  14. package/dist/index.js +102 -0
  15. package/dist/index.js.map +1 -0
  16. package/dist/integrations/clinicalTrials/index.d.ts +1 -1
  17. package/dist/integrations/clinicalTrials/index.d.ts.map +1 -1
  18. package/dist/integrations/clinicalTrials/index.js +1 -1
  19. package/dist/integrations/clinicalTrials/index.js.map +1 -1
  20. package/dist/integrations/ehr/index.d.ts +1 -1
  21. package/dist/integrations/ehr/index.d.ts.map +1 -1
  22. package/dist/integrations/ehr/index.js +1 -1
  23. package/dist/integrations/ehr/index.js.map +1 -1
  24. package/dist/integrations/genomics/index.d.ts +1 -1
  25. package/dist/integrations/genomics/index.d.ts.map +1 -1
  26. package/dist/integrations/genomics/index.js +1 -1
  27. package/dist/integrations/genomics/index.js.map +1 -1
  28. package/dist/ml/index.d.ts +1 -1
  29. package/dist/ml/index.d.ts.map +1 -1
  30. package/dist/ml/index.js +1 -1
  31. package/dist/ml/index.js.map +1 -1
  32. package/dist/orchestrator/index.d.ts +5 -0
  33. package/dist/orchestrator/index.d.ts.map +1 -0
  34. package/dist/orchestrator/index.js +5 -0
  35. package/dist/orchestrator/index.js.map +1 -0
  36. package/dist/orchestrator/realWorldOncology.d.ts +351 -0
  37. package/dist/orchestrator/realWorldOncology.d.ts.map +1 -0
  38. package/dist/orchestrator/realWorldOncology.js +425 -0
  39. package/dist/orchestrator/realWorldOncology.js.map +1 -0
  40. package/dist/patient/index.d.ts +1 -1
  41. package/dist/patient/index.d.ts.map +1 -1
  42. package/dist/patient/index.js +1 -1
  43. package/dist/patient/index.js.map +1 -1
  44. package/dist/safety/index.d.ts +1 -1
  45. package/dist/safety/index.d.ts.map +1 -1
  46. package/dist/safety/index.js +1 -1
  47. package/dist/safety/index.js.map +1 -1
  48. package/dist/validation/index.d.ts +1 -1
  49. package/dist/validation/index.d.ts.map +1 -1
  50. package/dist/validation/index.js +1 -1
  51. package/dist/validation/index.js.map +1 -1
  52. package/package.json +1 -1
  53. package/src/bin/cure.ts +148 -70
  54. package/src/clinician/index.ts +11 -0
  55. package/src/compliance/index.ts +19 -0
  56. package/src/integrations/clinicalTrials/index.ts +21 -0
  57. package/src/integrations/ehr/index.ts +32 -0
  58. package/src/integrations/genomics/index.ts +23 -0
  59. package/src/ml/index.ts +15 -0
  60. package/src/orchestrator/index.ts +11 -0
  61. package/src/orchestrator/realWorldOncology.ts +803 -0
  62. package/src/patient/index.ts +14 -0
  63. package/src/safety/index.ts +14 -0
  64. package/src/validation/index.ts +10 -0
  65. package/dist/integrations/index.d.ts +0 -7
  66. package/dist/integrations/index.d.ts.map +0 -1
  67. package/dist/integrations/index.js +0 -10
  68. package/dist/integrations/index.js.map +0 -1
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Patient Portal Module Exports
3
+ */
4
+ export {
5
+ PatientPortalService,
6
+ type PatientAccount,
7
+ type PatientTreatmentSummary,
8
+ type SymptomReport,
9
+ type MedicationAdherenceLog,
10
+ type QualityOfLifeAssessment,
11
+ type PatientMessage,
12
+ type EducationalContent,
13
+ type AppointmentRequest
14
+ } from './patientPortal.js';
@@ -0,0 +1,14 @@
1
+ /**
2
+ * Drug Safety Module Exports
3
+ */
4
+ export {
5
+ DrugSafetyService,
6
+ type Drug,
7
+ type CYP450Profile,
8
+ type DrugInteraction,
9
+ type Contraindication,
10
+ type DosingGuideline,
11
+ type AllergyCheck,
12
+ type SafetyAlert,
13
+ type PatientSafetyProfile
14
+ } from './drugInteractions.js';
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Validation Framework Module Exports
3
+ */
4
+ export {
5
+ RetrospectiveValidationService,
6
+ type ValidationPatient,
7
+ type SystemRecommendation,
8
+ type ValidationResult,
9
+ type CohortAnalysis
10
+ } from './retrospectiveValidator.js';
@@ -1,7 +0,0 @@
1
- /**
2
- * Integrations Module - All External System Connections
3
- */
4
- export * from './ehr/index.js';
5
- export * from './genomics/index.js';
6
- export * from './clinicalTrials/index.js';
7
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/integrations/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,cAAc,gBAAgB,CAAC;AAG/B,cAAc,qBAAqB,CAAC;AAGpC,cAAc,2BAA2B,CAAC"}
@@ -1,10 +0,0 @@
1
- /**
2
- * Integrations Module - All External System Connections
3
- */
4
- // EHR Integrations
5
- export * from './ehr/index.js';
6
- // Genomic Platform Integrations
7
- export * from './genomics/index.js';
8
- // Clinical Trials Integration
9
- export * from './clinicalTrials/index.js';
10
- //# sourceMappingURL=index.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/integrations/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,mBAAmB;AACnB,cAAc,gBAAgB,CAAC;AAE/B,gCAAgC;AAChC,cAAc,qBAAqB,CAAC;AAEpC,8BAA8B;AAC9B,cAAc,2BAA2B,CAAC"}