@gpt-platform/admin 0.10.3 → 0.10.4
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 +638 -201
- package/dist/index.d.ts +638 -201
- package/dist/index.js +1485 -118
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1485 -118
- package/dist/index.mjs.map +1 -1
- package/llms.txt +2 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -1701,6 +1701,7 @@ fields
|
|
|
1701
1701
|
- `postSocialCampaigns()` - /social/campaigns operation on social-campaign resource
|
|
1702
1702
|
- `postSocialCampaignsByIdAdapt-for-platforms()` - Adapt master copy for each target platform
|
|
1703
1703
|
- `postSocialCampaignsByIdGenerate-master-copy()` - Generate master copy from content brief using AI
|
|
1704
|
+
- `postSocialCampaignsByIdPreview-adaptations()` - Preview adapted copy per platform without creating SocialPost records.
|
|
1704
1705
|
- `patchSocialCampaignsById()` - /social/campaigns/:id operation on social-campaign resource
|
|
1705
1706
|
- `patchSocialCampaignsByIdCancel()` - /social/campaigns/:id/cancel operation on social-campaign resource
|
|
1706
1707
|
- `patchSocialCampaignsByIdSchedule()` - /social/campaigns/:id/schedule operation on social-campaign resource
|
|
@@ -1739,6 +1740,7 @@ fields
|
|
|
1739
1740
|
- `getStorage-filesById()` - /storage-files/:id operation on storage-file resource
|
|
1740
1741
|
- `getStorage-filesChildren()` - List non-deleted files whose parent_id matches the given ID
|
|
1741
1742
|
- `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.
|
|
1743
|
+
- `postStorage-filesByIdDownload-url()` - Generate a short-lived presigned download URL for a file
|
|
1742
1744
|
- `patchStorage-filesById()` - Update file metadata, tags, visibility, key, namespace, or status
|
|
1743
1745
|
- `patchStorage-filesByIdArchive()` - Archive an active file; soft-hides it from default views while preserving the S3 object
|
|
1744
1746
|
- `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