@gpt-platform/client 0.4.2 → 0.4.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 +7917 -7388
- package/dist/index.d.ts +7917 -7388
- package/dist/index.js +687 -87
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +684 -87
- package/dist/index.mjs.map +1 -1
- package/llms.txt +25 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -749,6 +749,11 @@ fields
|
|
|
749
749
|
|
|
750
750
|
- `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.
|
|
751
751
|
|
|
752
|
+
## Post metric
|
|
753
|
+
|
|
754
|
+
- `getSocialMetricsById()` - /social/metrics/:id operation on post_metric resource
|
|
755
|
+
- `getSocialMetricsPostBySocialPostId()` - /social/metrics/post/:social_post_id operation on post_metric resource
|
|
756
|
+
|
|
752
757
|
## Presigned url
|
|
753
758
|
|
|
754
759
|
- `postDocumentsPresigned-upload()` - /documents/presigned-upload operation on presigned_url resource
|
|
@@ -850,6 +855,23 @@ fields
|
|
|
850
855
|
- `getSearchAnalytics()` - List search analytics with tenant-based filtering
|
|
851
856
|
- `getSearchAnalyticsSummary()` - Aggregated search analytics summary (platform admin only)
|
|
852
857
|
|
|
858
|
+
## Social account
|
|
859
|
+
|
|
860
|
+
- `getSocialAccountsById()` - /social/accounts/:id operation on social_account resource
|
|
861
|
+
- `getSocialAccountsWorkspaceByWorkspaceId()` - /social/accounts/workspace/:workspace_id operation on social_account resource
|
|
862
|
+
- `postSocialAccounts()` - /social/accounts operation on social_account resource
|
|
863
|
+
- `patchSocialAccountsById()` - /social/accounts/:id operation on social_account resource
|
|
864
|
+
- `deleteSocialAccountsById()` - /social/accounts/:id operation on social_account resource
|
|
865
|
+
|
|
866
|
+
## Social post
|
|
867
|
+
|
|
868
|
+
- `getSocialPostsAccountBySocialAccountId()` - /social/posts/account/:social_account_id operation on social_post resource
|
|
869
|
+
- `getSocialPostsById()` - /social/posts/:id operation on social_post resource
|
|
870
|
+
- `getSocialPostsCampaignBySocialCampaignId()` - /social/posts/campaign/:social_campaign_id operation on social_post resource
|
|
871
|
+
- `postSocialPosts()` - /social/posts operation on social_post resource
|
|
872
|
+
- `patchSocialPostsById()` - /social/posts/:id operation on social_post resource
|
|
873
|
+
- `deleteSocialPostsById()` - /social/posts/:id operation on social_post resource
|
|
874
|
+
|
|
853
875
|
## Storage
|
|
854
876
|
|
|
855
877
|
- `getBuckets()` - List or fetch buckets; excludes processing-type buckets by default
|
|
@@ -919,6 +941,8 @@ fields
|
|
|
919
941
|
- `postTenantsByIdCredit()` - Allocate credits to the tenant's liability account
|
|
920
942
|
- `postTenantsByIdSchedule-purge()` - Schedule an Oban job to purge all storage objects for the given tenant
|
|
921
943
|
- `postTenantsIsv()` - Create an ISV tenant with initial credits
|
|
944
|
+
- `postTenantsOrg()` - Create an organization tenant (is_personal: false)
|
|
945
|
+
- `postTenantsPersonal()` - Create a personal tenant for an authenticated user who has none (e.g
|
|
922
946
|
- `patchTenantsById()` - Update general tenant settings: name, slug, kind, branding URLs, training price,
|
|
923
947
|
plan tier, vanity slug, and storage spending cap
|
|
924
948
|
- `deleteTenantsById()` - Permanently delete a tenant and all associated data
|
|
@@ -981,6 +1005,7 @@ plan tier, vanity slug, and storage spending cap
|
|
|
981
1005
|
- `postUsersAuthMagic-linkLogin()` - /users/auth/magic-link/login operation on user resource
|
|
982
1006
|
- `postUsersAuthMagic-linkRequest()` - /users/auth/magic-link/request operation on user resource
|
|
983
1007
|
- `postUsersAuthRegister()` - Register a new user account with email and password
|
|
1008
|
+
- `postUsersAuthRegister-via-invitation()` - Register a new user via invitation — skips personal tenant creation
|
|
984
1009
|
- `postUsersAuthRegister-with-oidc()` - Register or sign in a user via an OAuth/OIDC provider (Google, GitHub, Salesforce,
|
|
985
1010
|
Microsoft)
|
|
986
1011
|
- `postUsersAuthResend-confirmation()` - Resend confirmation email to an unconfirmed user
|
package/package.json
CHANGED