@gpt-platform/admin 0.10.3 → 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 +2973 -947
- package/dist/index.d.ts +2973 -947
- package/dist/index.js +1630 -106
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1630 -106
- package/dist/index.mjs.map +1 -1
- package/llms.txt +16 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -508,6 +508,19 @@ flags, workspace mode, and execution limits
|
|
|
508
508
|
- `patchClinicalClient-goalsByIdRestore()` - /clinical/client-goals/:id/restore operation on clinical-client-goal resource
|
|
509
509
|
- `deleteClinicalClient-goalsByIdPermanent()` - /clinical/client-goals/:id/permanent operation on clinical-client-goal resource
|
|
510
510
|
|
|
511
|
+
## Clinical-client-medication
|
|
512
|
+
|
|
513
|
+
- `getClinicalClient-medications()` - /clinical/client-medications operation on clinical-client-medication resource
|
|
514
|
+
- `getClinicalClient-medicationsArchived()` - /clinical/client-medications/archived operation on clinical-client-medication resource
|
|
515
|
+
- `getClinicalClient-medicationsById()` - /clinical/client-medications/:id operation on clinical-client-medication resource
|
|
516
|
+
- `getClinicalPatientsByIdMedications()` - /clinical/patients/:id/medications operation on clinical-client-medication resource
|
|
517
|
+
- `postClinicalClient-medications()` - /clinical/client-medications operation on clinical-client-medication resource
|
|
518
|
+
- `postClinicalClient-medicationsBulk()` - Create multiple medications in a single request (e.g., from an EHR import)
|
|
519
|
+
- `patchClinicalClient-medicationsById()` - /clinical/client-medications/:id operation on clinical-client-medication resource
|
|
520
|
+
- `patchClinicalClient-medicationsByIdArchive()` - /clinical/client-medications/:id/archive operation on clinical-client-medication resource
|
|
521
|
+
- `patchClinicalClient-medicationsByIdRestore()` - /clinical/client-medications/:id/restore operation on clinical-client-medication resource
|
|
522
|
+
- `deleteClinicalClient-medicationsByIdPermanent()` - /clinical/client-medications/:id/permanent operation on clinical-client-medication resource
|
|
523
|
+
|
|
511
524
|
## Clinical-client-resource-assignment
|
|
512
525
|
|
|
513
526
|
- `getClinicalClient-resource-assignments()` - /clinical/client-resource-assignments operation on clinical-client-resource-assignment resource
|
|
@@ -1419,6 +1432,7 @@ fields
|
|
|
1419
1432
|
## Pipeline-execution
|
|
1420
1433
|
|
|
1421
1434
|
- `getPipeline-executions()` - /pipeline-executions operation on pipeline-execution resource
|
|
1435
|
+
- `getPipeline-executionsBy-pipelineByPipelineId()` - /pipeline-executions/by-pipeline/:pipeline_id operation on pipeline-execution resource
|
|
1422
1436
|
- `getPipeline-executionsById()` - /pipeline-executions/:id operation on pipeline-execution resource
|
|
1423
1437
|
- `patchPipeline-executionsByIdApprove()` - /pipeline-executions/:id/approve operation on pipeline-execution resource
|
|
1424
1438
|
- `patchPipeline-executionsByIdCheckpoint()` - /pipeline-executions/:id/checkpoint operation on pipeline-execution resource
|
|
@@ -1701,6 +1715,7 @@ fields
|
|
|
1701
1715
|
- `postSocialCampaigns()` - /social/campaigns operation on social-campaign resource
|
|
1702
1716
|
- `postSocialCampaignsByIdAdapt-for-platforms()` - Adapt master copy for each target platform
|
|
1703
1717
|
- `postSocialCampaignsByIdGenerate-master-copy()` - Generate master copy from content brief using AI
|
|
1718
|
+
- `postSocialCampaignsByIdPreview-adaptations()` - Preview adapted copy per platform without creating SocialPost records.
|
|
1704
1719
|
- `patchSocialCampaignsById()` - /social/campaigns/:id operation on social-campaign resource
|
|
1705
1720
|
- `patchSocialCampaignsByIdCancel()` - /social/campaigns/:id/cancel operation on social-campaign resource
|
|
1706
1721
|
- `patchSocialCampaignsByIdSchedule()` - /social/campaigns/:id/schedule operation on social-campaign resource
|
|
@@ -1739,6 +1754,7 @@ fields
|
|
|
1739
1754
|
- `getStorage-filesById()` - /storage-files/:id operation on storage-file resource
|
|
1740
1755
|
- `getStorage-filesChildren()` - List non-deleted files whose parent_id matches the given ID
|
|
1741
1756
|
- `postStorage-files()` - Create a StorageFile tracking record; use Storage.request_upload/5 via the facade for the full two-phase upload flow with presigned URLs.
|
|
1757
|
+
- `postStorage-filesByIdDownload-url()` - Generate a short-lived presigned download URL for a file
|
|
1742
1758
|
- `patchStorage-filesById()` - Update file metadata, tags, visibility, key, namespace, or status
|
|
1743
1759
|
- `patchStorage-filesByIdArchive()` - Archive an active file; soft-hides it from default views while preserving the S3 object
|
|
1744
1760
|
- `patchStorage-filesByIdConfirm-upload()` - Transition a pending_upload file to active after the client has uploaded to the presigned URL; optionally stamps size_bytes and checksum.
|
package/package.json
CHANGED