@gpt-core/client 0.8.22 → 0.8.23

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
@@ -37,6 +37,7 @@ client.setConfig({
37
37
  - `getAgentsByIdSchemaVersions()` - Get schema versions
38
38
  - `getAgentsByIdStats()` - Get stats
39
39
  - `getAgentsByIdTrainingStats()` - Get training stats
40
+ - `getAgentsByIdUsage()` - Get usage
40
41
  - `getAgentVersions()` - List agent versions
41
42
  - `getAgentVersionsById()` - Get agent versions
42
43
  - `getAgentVersionsByIdMetrics()` - Get metrics
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gpt-core/client",
3
- "version": "0.8.22",
3
+ "version": "0.8.23",
4
4
  "description": "TypeScript SDK for GPT Core Client API - Document extraction, AI agents, and workspace management",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -52,6 +52,15 @@
52
52
  "publishConfig": {
53
53
  "access": "public"
54
54
  },
55
+ "scripts": {
56
+ "generate": "openapi-ts",
57
+ "typecheck": "tsc --noEmit",
58
+ "build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
59
+ "test": "vitest run",
60
+ "test:watch": "vitest",
61
+ "test:ui": "vitest --ui",
62
+ "test:coverage": "vitest run --coverage"
63
+ },
55
64
  "dependencies": {
56
65
  "eventsource-parser": "^3.0.6",
57
66
  "zod": "^3.25.76"
@@ -63,14 +72,5 @@
63
72
  "tsup": "^8.5.1",
64
73
  "typescript": "^5.9.3",
65
74
  "vitest": "^4.0.15"
66
- },
67
- "scripts": {
68
- "generate": "openapi-ts",
69
- "typecheck": "tsc --noEmit",
70
- "build": "npm run typecheck && tsup src/index.ts --format cjs,esm --dts",
71
- "test": "vitest run",
72
- "test:watch": "vitest",
73
- "test:ui": "vitest --ui",
74
- "test:coverage": "vitest run --coverage"
75
75
  }
76
- }
76
+ }