@gpt-platform/client 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 +406 -39
- package/dist/index.d.ts +406 -39
- package/dist/index.js +271 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +271 -1
- package/dist/index.mjs.map +1 -1
- package/llms.txt +2 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -1337,6 +1337,7 @@ fields
|
|
|
1337
1337
|
- `postSocialCampaigns()` - /social/campaigns operation on social-campaign resource
|
|
1338
1338
|
- `postSocialCampaignsByIdAdapt-for-platforms()` - Adapt master copy for each target platform
|
|
1339
1339
|
- `postSocialCampaignsByIdGenerate-master-copy()` - Generate master copy from content brief using AI
|
|
1340
|
+
- `postSocialCampaignsByIdPreview-adaptations()` - Preview adapted copy per platform without creating SocialPost records.
|
|
1340
1341
|
- `patchSocialCampaignsById()` - /social/campaigns/:id operation on social-campaign resource
|
|
1341
1342
|
- `patchSocialCampaignsByIdCancel()` - /social/campaigns/:id/cancel operation on social-campaign resource
|
|
1342
1343
|
- `patchSocialCampaignsByIdSchedule()` - /social/campaigns/:id/schedule operation on social-campaign resource
|
|
@@ -1375,6 +1376,7 @@ fields
|
|
|
1375
1376
|
- `getStorage-filesById()` - /storage-files/:id operation on storage-file resource
|
|
1376
1377
|
- `getStorage-filesChildren()` - List non-deleted files whose parent_id matches the given ID
|
|
1377
1378
|
- `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.
|
|
1379
|
+
- `postStorage-filesByIdDownload-url()` - Generate a short-lived presigned download URL for a file
|
|
1378
1380
|
- `patchStorage-filesById()` - Update file metadata, tags, visibility, key, namespace, or status
|
|
1379
1381
|
- `patchStorage-filesByIdArchive()` - Archive an active file; soft-hides it from default views while preserving the S3 object
|
|
1380
1382
|
- `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