@gpt-platform/client 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 +763 -49
- package/dist/index.d.ts +763 -49
- package/dist/index.js +228 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +227 -60
- package/dist/index.mjs.map +1 -1
- package/llms.txt +6 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -399,6 +399,7 @@ flags, workspace mode, and execution limits
|
|
|
399
399
|
- `getClinicalClient-supplementsById()` - /clinical/client-supplements/:id operation on clinical-client-supplement resource
|
|
400
400
|
- `getClinicalPatientsByIdSupplements()` - /clinical/patients/:id/supplements operation on clinical-client-supplement resource
|
|
401
401
|
- `postClinicalClient-supplements()` - /clinical/client-supplements operation on clinical-client-supplement resource
|
|
402
|
+
- `postClinicalClient-supplementsBulk()` - Create multiple supplements in a single request (e.g., from a treatment plan)
|
|
402
403
|
- `patchClinicalClient-supplementsById()` - /clinical/client-supplements/:id operation on clinical-client-supplement resource
|
|
403
404
|
- `patchClinicalClient-supplementsByIdArchive()` - /clinical/client-supplements/:id/archive operation on clinical-client-supplement resource
|
|
404
405
|
- `patchClinicalClient-supplementsByIdRestore()` - /clinical/client-supplements/:id/restore operation on clinical-client-supplement resource
|
|
@@ -455,6 +456,7 @@ flags, workspace mode, and execution limits
|
|
|
455
456
|
|
|
456
457
|
- `getClinicalMeal-plans()` - /clinical/meal-plans operation on clinical-meal-plan resource
|
|
457
458
|
- `getClinicalMeal-plansArchived()` - /clinical/meal-plans/archived operation on clinical-meal-plan resource
|
|
459
|
+
- `getClinicalMeal-plansBy-patient()` - /clinical/meal-plans/by-patient operation on clinical-meal-plan resource
|
|
458
460
|
- `getClinicalMeal-plansBy-workspace()` - /clinical/meal-plans/by-workspace operation on clinical-meal-plan resource
|
|
459
461
|
- `getClinicalMeal-plansById()` - /clinical/meal-plans/:id operation on clinical-meal-plan resource
|
|
460
462
|
- `getClinicalSessionsByIdMealPlans()` - /clinical/sessions/:id/meal_plans operation on clinical-meal-plan resource
|
|
@@ -468,6 +470,8 @@ flags, workspace mode, and execution limits
|
|
|
468
470
|
|
|
469
471
|
- `getClinicalNotes()` - /clinical/notes operation on clinical-note resource
|
|
470
472
|
- `getClinicalNotesArchived()` - /clinical/notes/archived operation on clinical-note resource
|
|
473
|
+
- `getClinicalNotesBy-patient()` - /clinical/notes/by-patient operation on clinical-note resource
|
|
474
|
+
- `getClinicalNotesBy-workspace()` - /clinical/notes/by-workspace operation on clinical-note resource
|
|
471
475
|
- `getClinicalNotesById()` - /clinical/notes/:id operation on clinical-note resource
|
|
472
476
|
- `getClinicalSessionsByIdSessionNotes()` - /clinical/sessions/:id/session_notes operation on clinical-note resource
|
|
473
477
|
- `postClinicalNotes()` - /clinical/notes operation on clinical-note resource
|
|
@@ -601,10 +605,12 @@ flags, workspace mode, and execution limits
|
|
|
601
605
|
- `postConnectorsFullscriptOrdersGet()` - Get order details from Fullscript
|
|
602
606
|
- `postConnectorsFullscriptOrdersList()` - List orders for a Fullscript patient
|
|
603
607
|
- `postConnectorsFullscriptProductsGet()` - Get product details from Fullscript
|
|
608
|
+
- `postConnectorsFullscriptProductsMatch()` - Match AI-generated supplement names to Fullscript products
|
|
604
609
|
- `postConnectorsFullscriptProductsSearch()` - Search the Fullscript product catalog
|
|
605
610
|
- `postConnectorsFullscriptProductsSimilar()` - List similar products from Fullscript
|
|
606
611
|
- `postConnectorsFullscriptSession-grant()` - Get a Fullscript embed session grant token for the prescribing widget
|
|
607
612
|
- `postConnectorsFullscriptTreatment-plansCancel()` - Cancel an active Fullscript treatment plan
|
|
613
|
+
- `postConnectorsFullscriptTreatment-plansCreate()` - Create a treatment plan in Fullscript with product recommendations
|
|
608
614
|
- `postConnectorsFullscriptTreatment-plansGet()` - Get treatment plan details from Fullscript
|
|
609
615
|
- `postConnectorsFullscriptTreatment-plansList()` - List treatment plans for a Fullscript patient
|
|
610
616
|
- `postConnectorsOauthCallback()` - Exchange OAuth authorization code for credential.
|
package/package.json
CHANGED