@gpt-platform/client 0.8.2 → 0.8.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 +251 -16
- package/dist/index.d.ts +251 -16
- package/dist/index.js +312 -18
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +312 -18
- package/dist/index.mjs.map +1 -1
- package/llms.txt +7 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -455,6 +455,11 @@ flags, workspace mode, and execution limits
|
|
|
455
455
|
- `deleteClinicalPractice-resourcesById()` - /clinical/practice-resources/:id operation on clinical-practice-resource resource
|
|
456
456
|
- `deleteClinicalPractice-resourcesCatalogById()` - /clinical/practice-resources/catalog/:id operation on clinical-practice-resource resource
|
|
457
457
|
|
|
458
|
+
## Clinical-practice-resource-category
|
|
459
|
+
|
|
460
|
+
- `getClinicalPractice-resourcesCategories()` - /clinical/practice-resources/categories operation on clinical-practice-resource-category resource
|
|
461
|
+
- `getClinicalPractice-resourcesCategoriesCatalog()` - /clinical/practice-resources/categories/catalog operation on clinical-practice-resource-category resource
|
|
462
|
+
|
|
458
463
|
## Clinical-practice-tool
|
|
459
464
|
|
|
460
465
|
- `getClinicalPractice-tools()` - /clinical/practice-tools operation on clinical-practice-tool resource
|
|
@@ -1371,6 +1376,8 @@ plan tier, vanity slug, and storage spending cap
|
|
|
1371
1376
|
- `patchTenantsByIdBranding()` - Owner-only action to update tenant branding
|
|
1372
1377
|
- `patchTenantsByIdCancel()` - Permanently cancel a tenant.
|
|
1373
1378
|
- `patchTenantsByIdConvert-to-org()` - Convert a personal tenant to an organization
|
|
1379
|
+
- `patchTenantsByIdDeactivate()` - Owner hides a tenant from their account
|
|
1380
|
+
- `patchTenantsByIdReactivate()` - Owner restores a previously deactivated tenant
|
|
1374
1381
|
- `patchTenantsByIdSuspend()` - Suspend a tenant, preventing billing charges and access.
|
|
1375
1382
|
- `patchTenantsByIdTransfer-ownership()` - Transfer org ownership to an existing admin member
|
|
1376
1383
|
- `patchTenantsByIdUnsuspend()` - Restore a suspended tenant to active status.
|
package/package.json
CHANGED