@gpt-platform/client 0.8.2 → 0.8.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 +266 -16
- package/dist/index.d.ts +266 -16
- package/dist/index.js +337 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +337 -18
- package/dist/index.mjs.map +1 -1
- package/llms.txt +8 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -77,6 +77,7 @@ client.setConfig({
|
|
|
77
77
|
- `getAgent-versionsByIdMetrics()` - Get performance metrics for this version
|
|
78
78
|
- `getAgent-versionsByIdRevisions()` - List all revisions for a specific AgentVersion, sorted by revision number descending
|
|
79
79
|
- `getAgents()` - List all agents accessible in the current workspace
|
|
80
|
+
- `getAgentsBy-slugBySlug()` - Look up an agent by its system_slug
|
|
80
81
|
- `getAgentsById()` - Fetch a single agent by ID
|
|
81
82
|
- `getAgentsByIdSchema-versions()` - List all schema versions for this agent
|
|
82
83
|
- `getAgentsByIdTraining-examples()` - List training examples for this agent
|
|
@@ -455,6 +456,11 @@ flags, workspace mode, and execution limits
|
|
|
455
456
|
- `deleteClinicalPractice-resourcesById()` - /clinical/practice-resources/:id operation on clinical-practice-resource resource
|
|
456
457
|
- `deleteClinicalPractice-resourcesCatalogById()` - /clinical/practice-resources/catalog/:id operation on clinical-practice-resource resource
|
|
457
458
|
|
|
459
|
+
## Clinical-practice-resource-category
|
|
460
|
+
|
|
461
|
+
- `getClinicalPractice-resourcesCategories()` - /clinical/practice-resources/categories operation on clinical-practice-resource-category resource
|
|
462
|
+
- `getClinicalPractice-resourcesCategoriesCatalog()` - /clinical/practice-resources/categories/catalog operation on clinical-practice-resource-category resource
|
|
463
|
+
|
|
458
464
|
## Clinical-practice-tool
|
|
459
465
|
|
|
460
466
|
- `getClinicalPractice-tools()` - /clinical/practice-tools operation on clinical-practice-tool resource
|
|
@@ -1371,6 +1377,8 @@ plan tier, vanity slug, and storage spending cap
|
|
|
1371
1377
|
- `patchTenantsByIdBranding()` - Owner-only action to update tenant branding
|
|
1372
1378
|
- `patchTenantsByIdCancel()` - Permanently cancel a tenant.
|
|
1373
1379
|
- `patchTenantsByIdConvert-to-org()` - Convert a personal tenant to an organization
|
|
1380
|
+
- `patchTenantsByIdDeactivate()` - Owner hides a tenant from their account
|
|
1381
|
+
- `patchTenantsByIdReactivate()` - Owner restores a previously deactivated tenant
|
|
1374
1382
|
- `patchTenantsByIdSuspend()` - Suspend a tenant, preventing billing charges and access.
|
|
1375
1383
|
- `patchTenantsByIdTransfer-ownership()` - Transfer org ownership to an existing admin member
|
|
1376
1384
|
- `patchTenantsByIdUnsuspend()` - Restore a suspended tenant to active status.
|
package/package.json
CHANGED