@gpt-platform/admin 0.10.1 → 0.10.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/index.d.mts +810 -93
- package/dist/index.d.ts +810 -93
- package/dist/index.js +97 -17
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +97 -17
- package/dist/index.mjs.map +1 -1
- package/llms.txt +6 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -527,6 +527,7 @@ flags, workspace mode, and execution limits
|
|
|
527
527
|
- `getClinicalClient-supplementsById()` - /clinical/client-supplements/:id operation on clinical-client-supplement resource
|
|
528
528
|
- `getClinicalPatientsByIdSupplements()` - /clinical/patients/:id/supplements operation on clinical-client-supplement resource
|
|
529
529
|
- `postClinicalClient-supplements()` - /clinical/client-supplements operation on clinical-client-supplement resource
|
|
530
|
+
- `postClinicalClient-supplementsBulk()` - Create multiple supplements in a single request (e.g., from a treatment plan)
|
|
530
531
|
- `patchClinicalClient-supplementsById()` - /clinical/client-supplements/:id operation on clinical-client-supplement resource
|
|
531
532
|
- `patchClinicalClient-supplementsByIdArchive()` - /clinical/client-supplements/:id/archive operation on clinical-client-supplement resource
|
|
532
533
|
- `patchClinicalClient-supplementsByIdRestore()` - /clinical/client-supplements/:id/restore operation on clinical-client-supplement resource
|
|
@@ -583,6 +584,7 @@ flags, workspace mode, and execution limits
|
|
|
583
584
|
|
|
584
585
|
- `getClinicalMeal-plans()` - /clinical/meal-plans operation on clinical-meal-plan resource
|
|
585
586
|
- `getClinicalMeal-plansArchived()` - /clinical/meal-plans/archived operation on clinical-meal-plan resource
|
|
587
|
+
- `getClinicalMeal-plansBy-patient()` - /clinical/meal-plans/by-patient operation on clinical-meal-plan resource
|
|
586
588
|
- `getClinicalMeal-plansBy-workspace()` - /clinical/meal-plans/by-workspace operation on clinical-meal-plan resource
|
|
587
589
|
- `getClinicalMeal-plansById()` - /clinical/meal-plans/:id operation on clinical-meal-plan resource
|
|
588
590
|
- `getClinicalSessionsByIdMealPlans()` - /clinical/sessions/:id/meal_plans operation on clinical-meal-plan resource
|
|
@@ -596,6 +598,8 @@ flags, workspace mode, and execution limits
|
|
|
596
598
|
|
|
597
599
|
- `getClinicalNotes()` - /clinical/notes operation on clinical-note resource
|
|
598
600
|
- `getClinicalNotesArchived()` - /clinical/notes/archived operation on clinical-note resource
|
|
601
|
+
- `getClinicalNotesBy-patient()` - /clinical/notes/by-patient operation on clinical-note resource
|
|
602
|
+
- `getClinicalNotesBy-workspace()` - /clinical/notes/by-workspace operation on clinical-note resource
|
|
599
603
|
- `getClinicalNotesById()` - /clinical/notes/:id operation on clinical-note resource
|
|
600
604
|
- `getClinicalSessionsByIdSessionNotes()` - /clinical/sessions/:id/session_notes operation on clinical-note resource
|
|
601
605
|
- `postClinicalNotes()` - /clinical/notes operation on clinical-note resource
|
|
@@ -750,10 +754,12 @@ flags, workspace mode, and execution limits
|
|
|
750
754
|
- `postConnectorsFullscriptOrdersGet()` - Get order details from Fullscript
|
|
751
755
|
- `postConnectorsFullscriptOrdersList()` - List orders for a Fullscript patient
|
|
752
756
|
- `postConnectorsFullscriptProductsGet()` - Get product details from Fullscript
|
|
757
|
+
- `postConnectorsFullscriptProductsMatch()` - Match AI-generated supplement names to Fullscript products
|
|
753
758
|
- `postConnectorsFullscriptProductsSearch()` - Search the Fullscript product catalog
|
|
754
759
|
- `postConnectorsFullscriptProductsSimilar()` - List similar products from Fullscript
|
|
755
760
|
- `postConnectorsFullscriptSession-grant()` - Get a Fullscript embed session grant token for the prescribing widget
|
|
756
761
|
- `postConnectorsFullscriptTreatment-plansCancel()` - Cancel an active Fullscript treatment plan
|
|
762
|
+
- `postConnectorsFullscriptTreatment-plansCreate()` - Create a treatment plan in Fullscript with product recommendations
|
|
757
763
|
- `postConnectorsFullscriptTreatment-plansGet()` - Get treatment plan details from Fullscript
|
|
758
764
|
- `postConnectorsFullscriptTreatment-plansList()` - List treatment plans for a Fullscript patient
|
|
759
765
|
- `postConnectorsOauthCallback()` - Exchange OAuth authorization code for credential.
|
package/package.json
CHANGED