@gpt-core/admin 0.8.23 → 0.8.24

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/llms.txt CHANGED
@@ -46,7 +46,6 @@ client.setConfig({
46
46
  - `getAgentsByIdSchemaVersions()` - Get schema versions
47
47
  - `getAgentsByIdStats()` - Get stats
48
48
  - `getAgentsByIdTrainingStats()` - Get training stats
49
- - `getAgentsByIdUsage()` - Get usage
50
49
  - `getAgentVersions()` - List agent versions
51
50
  - `getAgentVersionsById()` - Get agent versions
52
51
  - `getAgentVersionsByIdMetrics()` - Get metrics
@@ -377,6 +376,11 @@ client.setConfig({
377
376
  - `patchPayment-methodsById()` - Update payment methods
378
377
  - `deletePayment-methodsById()` - Delete payment methods
379
378
 
379
+ ## Permission
380
+
381
+ - `getPermissions()` - List permissions
382
+ - `getPermissionsPresets()` - List presets
383
+
380
384
  ## Presigned url
381
385
 
382
386
  - `postDocumentsPresignedUpload()` - Create presigned upload
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/admin",
3
- "version": "0.8.23",
3
+ "version": "0.8.24",
4
4
  "description": "TypeScript SDK for GPT Core Admin API - Platform administration and ISV management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -51,15 +51,6 @@
51
51
  "publishConfig": {
52
52
  "access": "public"
53
53
  },
54
- "scripts": {
55
- "generate": "openapi-ts",
56
- "typecheck": "tsc --noEmit",
57
- "build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
58
- "test": "vitest run",
59
- "test:watch": "vitest",
60
- "test:ui": "vitest --ui",
61
- "test:coverage": "vitest run --coverage"
62
- },
63
54
  "dependencies": {
64
55
  "zod": "^3.25.76"
65
56
  },
@@ -71,5 +62,14 @@
71
62
  "tsup": "^8.5.1",
72
63
  "typescript": "^5.9.3",
73
64
  "vitest": "^4.0.15"
65
+ },
66
+ "scripts": {
67
+ "generate": "openapi-ts",
68
+ "typecheck": "tsc --noEmit",
69
+ "build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
70
+ "test": "vitest run",
71
+ "test:watch": "vitest",
72
+ "test:ui": "vitest --ui",
73
+ "test:coverage": "vitest run --coverage"
74
74
  }
75
- }
75
+ }