@gpt-platform/client 0.10.4 → 0.10.5
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 +434 -8
- package/dist/index.d.ts +434 -8
- package/dist/index.js +465 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +465 -11
- package/dist/index.mjs.map +1 -1
- package/llms.txt +33 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -380,6 +380,19 @@ flags, workspace mode, and execution limits
|
|
|
380
380
|
- `patchClinicalClient-goalsByIdRestore()` - /clinical/client-goals/:id/restore operation on clinical-client-goal resource
|
|
381
381
|
- `deleteClinicalClient-goalsByIdPermanent()` - /clinical/client-goals/:id/permanent operation on clinical-client-goal resource
|
|
382
382
|
|
|
383
|
+
## Clinical-client-medication
|
|
384
|
+
|
|
385
|
+
- `getClinicalClient-medications()` - /clinical/client-medications operation on clinical-client-medication resource
|
|
386
|
+
- `getClinicalClient-medicationsArchived()` - /clinical/client-medications/archived operation on clinical-client-medication resource
|
|
387
|
+
- `getClinicalClient-medicationsById()` - /clinical/client-medications/:id operation on clinical-client-medication resource
|
|
388
|
+
- `getClinicalPatientsByIdMedications()` - /clinical/patients/:id/medications operation on clinical-client-medication resource
|
|
389
|
+
- `postClinicalClient-medications()` - /clinical/client-medications operation on clinical-client-medication resource
|
|
390
|
+
- `postClinicalClient-medicationsBulk()` - Create multiple medications in a single request (e.g., from an EHR import)
|
|
391
|
+
- `patchClinicalClient-medicationsById()` - /clinical/client-medications/:id operation on clinical-client-medication resource
|
|
392
|
+
- `patchClinicalClient-medicationsByIdArchive()` - /clinical/client-medications/:id/archive operation on clinical-client-medication resource
|
|
393
|
+
- `patchClinicalClient-medicationsByIdRestore()` - /clinical/client-medications/:id/restore operation on clinical-client-medication resource
|
|
394
|
+
- `deleteClinicalClient-medicationsByIdPermanent()` - /clinical/client-medications/:id/permanent operation on clinical-client-medication resource
|
|
395
|
+
|
|
383
396
|
## Clinical-client-resource-assignment
|
|
384
397
|
|
|
385
398
|
- `getClinicalClient-resource-assignments()` - /clinical/client-resource-assignments operation on clinical-client-resource-assignment resource
|
|
@@ -1147,6 +1160,26 @@ fields
|
|
|
1147
1160
|
- `getPermissionsPresets()` - List all permission presets (pre-defined role bundles) from the PermissionRegistry, optionally filtered by context and app
|
|
1148
1161
|
- `getPermissionsPresetsById()` - Fetch a single permission preset by its composite ID (e.g., 'workspace:org:admin'); returns the preset with its full permission list or a not-found error.
|
|
1149
1162
|
|
|
1163
|
+
## Pipeline
|
|
1164
|
+
|
|
1165
|
+
- `getPipelines()` - /pipelines operation on pipeline resource
|
|
1166
|
+
- `getPipelinesBy-slugBySlug()` - Look up a pipeline by its system_slug scoped to an application
|
|
1167
|
+
- `getPipelinesById()` - /pipelines/:id operation on pipeline resource
|
|
1168
|
+
- `postPipelines()` - Create a new agent pipeline.
|
|
1169
|
+
- `patchPipelinesById()` - Update pipeline metadata or node graph.
|
|
1170
|
+
- `deletePipelinesById()` - /pipelines/:id operation on pipeline resource
|
|
1171
|
+
|
|
1172
|
+
## Pipeline-execution
|
|
1173
|
+
|
|
1174
|
+
- `getPipeline-executions()` - /pipeline-executions operation on pipeline-execution resource
|
|
1175
|
+
- `getPipeline-executionsBy-pipelineByPipelineId()` - /pipeline-executions/by-pipeline/:pipeline_id operation on pipeline-execution resource
|
|
1176
|
+
- `getPipeline-executionsById()` - /pipeline-executions/:id operation on pipeline-execution resource
|
|
1177
|
+
- `patchPipeline-executionsByIdApprove()` - /pipeline-executions/:id/approve operation on pipeline-execution resource
|
|
1178
|
+
- `patchPipeline-executionsByIdCheckpoint()` - /pipeline-executions/:id/checkpoint operation on pipeline-execution resource
|
|
1179
|
+
- `patchPipeline-executionsByIdNote()` - /pipeline-executions/:id/note operation on pipeline-execution resource
|
|
1180
|
+
- `patchPipeline-executionsByIdRefine()` - /pipeline-executions/:id/refine operation on pipeline-execution resource
|
|
1181
|
+
- `patchPipeline-executionsByIdReject()` - /pipeline-executions/:id/reject operation on pipeline-execution resource
|
|
1182
|
+
|
|
1150
1183
|
## Plan-catalog
|
|
1151
1184
|
|
|
1152
1185
|
- `getPlans()` - /plans operation on plan-catalog resource
|
package/package.json
CHANGED