@gpt-core/client 0.8.24 → 0.8.25
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 +2443 -9694
- package/dist/index.d.ts +2443 -9694
- package/dist/index.js +810 -0
- package/dist/index.mjs +800 -0
- package/llms.txt +14 -1
- package/package.json +11 -11
package/llms.txt
CHANGED
|
@@ -37,6 +37,8 @@ client.setConfig({
|
|
|
37
37
|
- `getAgentsByIdSchemaVersions()` - Get schema versions
|
|
38
38
|
- `getAgentsByIdStats()` - Get stats
|
|
39
39
|
- `getAgentsByIdTrainingStats()` - Get training stats
|
|
40
|
+
- `getAgentsByIdUsage()` - Get usage
|
|
41
|
+
- `getAgentsUsage()` - List usage
|
|
40
42
|
- `getAgentVersions()` - List agent versions
|
|
41
43
|
- `getAgentVersionsById()` - Get agent versions
|
|
42
44
|
- `getAgentVersionsByIdMetrics()` - Get metrics
|
|
@@ -54,6 +56,9 @@ client.setConfig({
|
|
|
54
56
|
- `postAgentsImport()` - Create import
|
|
55
57
|
- `postAgentsPredict()` - Create predict
|
|
56
58
|
- `postAgentVersions()` - Create agent versions
|
|
59
|
+
- `postAgentVersionsByIdAddSystemField()` - Create add system field
|
|
60
|
+
- `postAgentVersionsByIdRemoveSystemField()` - Create remove system field
|
|
61
|
+
- `postAgentVersionsByIdSetSystemFields()` - Create set system fields
|
|
57
62
|
- `patchAgentsById()` - Update agents
|
|
58
63
|
- `patchAgentsByIdSchemaVersionsByVersionId()` - Update schema versions
|
|
59
64
|
- `deleteAgentsById()` - Delete agents
|
|
@@ -125,7 +130,7 @@ client.setConfig({
|
|
|
125
130
|
- `getPlansById()` - Get plans
|
|
126
131
|
- `getPlansSlugBySlug()` - Get slug
|
|
127
132
|
- `getWallet()` - List wallet
|
|
128
|
-
- `
|
|
133
|
+
- `getWalletPlanPreview()` - List preview
|
|
129
134
|
- `postPayments()` - Create payments
|
|
130
135
|
- `patchWalletAddons()` - Update addons
|
|
131
136
|
- `patchWalletAddonsByAddonSlugCancel()` - Update cancel
|
|
@@ -256,6 +261,10 @@ client.setConfig({
|
|
|
256
261
|
- `patchInvitationsByIdResend()` - Update resend
|
|
257
262
|
- `patchInvitationsByIdRevoke()` - Update revoke
|
|
258
263
|
|
|
264
|
+
## Invoice
|
|
265
|
+
|
|
266
|
+
- `getWalletInvoices()` - List invoices
|
|
267
|
+
|
|
259
268
|
## Knowledge Graph
|
|
260
269
|
|
|
261
270
|
- `getAiGraphEdges()` - List edges
|
|
@@ -434,6 +443,7 @@ client.setConfig({
|
|
|
434
443
|
|
|
435
444
|
## Training analytics
|
|
436
445
|
|
|
446
|
+
- `getWorkspacesAnalytics-batch()` - List analytics batch
|
|
437
447
|
- `getWorkspacesByWorkspaceIdTrainingAnalytics()` - Get analytics
|
|
438
448
|
|
|
439
449
|
## Transaction
|
|
@@ -464,6 +474,9 @@ client.setConfig({
|
|
|
464
474
|
- `postUsersAuthResend-confirmation()` - Create resend confirmation
|
|
465
475
|
- `postUsersRegisterIsv()` - Create register isv
|
|
466
476
|
- `patchUserProfilesById()` - Update user profiles
|
|
477
|
+
- `patchUserProfilesByIdAccept-tos()` - Update accept tos
|
|
478
|
+
- `patchUserProfilesByIdDismiss-announcement()` - Update dismiss announcement
|
|
479
|
+
- `patchUserProfilesByIdDismiss-welcome()` - Update dismiss welcome
|
|
467
480
|
- `patchUsersAuthPasswordChange()` - Update change
|
|
468
481
|
- `patchUsersAuthReset-password()` - Update reset password
|
|
469
482
|
- `patchUsersById()` - Update admin
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gpt-core/client",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.25",
|
|
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
|
+
}
|