@gpt-core/client 0.8.23 → 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.cjs +4043 -0
- package/dist/index.d.mts +2255 -9534
- package/dist/index.d.ts +2255 -9534
- package/dist/index.js +802 -0
- package/dist/index.mjs +793 -0
- package/llms.txt +14 -2
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -38,6 +38,7 @@ client.setConfig({
|
|
|
38
38
|
- `getAgentsByIdStats()` - Get stats
|
|
39
39
|
- `getAgentsByIdTrainingStats()` - Get training stats
|
|
40
40
|
- `getAgentsByIdUsage()` - Get usage
|
|
41
|
+
- `getAgentsUsage()` - List usage
|
|
41
42
|
- `getAgentVersions()` - List agent versions
|
|
42
43
|
- `getAgentVersionsById()` - Get agent versions
|
|
43
44
|
- `getAgentVersionsByIdMetrics()` - Get metrics
|
|
@@ -55,6 +56,9 @@ client.setConfig({
|
|
|
55
56
|
- `postAgentsImport()` - Create import
|
|
56
57
|
- `postAgentsPredict()` - Create predict
|
|
57
58
|
- `postAgentVersions()` - Create agent versions
|
|
59
|
+
- `postAgentVersionsByIdAddSystemField()` - Create add system field
|
|
60
|
+
- `postAgentVersionsByIdRemoveSystemField()` - Create remove system field
|
|
61
|
+
- `postAgentVersionsByIdSetSystemFields()` - Create set system fields
|
|
58
62
|
- `patchAgentsById()` - Update agents
|
|
59
63
|
- `patchAgentsByIdSchemaVersionsByVersionId()` - Update schema versions
|
|
60
64
|
- `deleteAgentsById()` - Delete agents
|
|
@@ -126,7 +130,7 @@ client.setConfig({
|
|
|
126
130
|
- `getPlansById()` - Get plans
|
|
127
131
|
- `getPlansSlugBySlug()` - Get slug
|
|
128
132
|
- `getWallet()` - List wallet
|
|
129
|
-
- `
|
|
133
|
+
- `getWalletPlanPreview()` - List preview
|
|
130
134
|
- `postPayments()` - Create payments
|
|
131
135
|
- `patchWalletAddons()` - Update addons
|
|
132
136
|
- `patchWalletAddonsByAddonSlugCancel()` - Update cancel
|
|
@@ -257,6 +261,10 @@ client.setConfig({
|
|
|
257
261
|
- `patchInvitationsByIdResend()` - Update resend
|
|
258
262
|
- `patchInvitationsByIdRevoke()` - Update revoke
|
|
259
263
|
|
|
264
|
+
## Invoice
|
|
265
|
+
|
|
266
|
+
- `getWalletInvoices()` - List invoices
|
|
267
|
+
|
|
260
268
|
## Knowledge Graph
|
|
261
269
|
|
|
262
270
|
- `getAiGraphEdges()` - List edges
|
|
@@ -315,6 +323,7 @@ client.setConfig({
|
|
|
315
323
|
|
|
316
324
|
- `getPermissions()` - List permissions
|
|
317
325
|
- `getPermissionsById()` - Get permissions
|
|
326
|
+
- `getPermissionsPresets()` - List presets
|
|
318
327
|
|
|
319
328
|
## Permission meta
|
|
320
329
|
|
|
@@ -322,7 +331,6 @@ client.setConfig({
|
|
|
322
331
|
|
|
323
332
|
## Permission preset
|
|
324
333
|
|
|
325
|
-
- `getPermissionsPresets()` - List presets
|
|
326
334
|
- `getPermissionsPresetsById()` - Get presets
|
|
327
335
|
|
|
328
336
|
## Presigned url
|
|
@@ -435,6 +443,7 @@ client.setConfig({
|
|
|
435
443
|
|
|
436
444
|
## Training analytics
|
|
437
445
|
|
|
446
|
+
- `getWorkspacesAnalytics-batch()` - List analytics batch
|
|
438
447
|
- `getWorkspacesByWorkspaceIdTrainingAnalytics()` - Get analytics
|
|
439
448
|
|
|
440
449
|
## Transaction
|
|
@@ -465,6 +474,9 @@ client.setConfig({
|
|
|
465
474
|
- `postUsersAuthResend-confirmation()` - Create resend confirmation
|
|
466
475
|
- `postUsersRegisterIsv()` - Create register isv
|
|
467
476
|
- `patchUserProfilesById()` - Update user profiles
|
|
477
|
+
- `patchUserProfilesByIdAccept-tos()` - Update accept tos
|
|
478
|
+
- `patchUserProfilesByIdDismiss-announcement()` - Update dismiss announcement
|
|
479
|
+
- `patchUserProfilesByIdDismiss-welcome()` - Update dismiss welcome
|
|
468
480
|
- `patchUsersAuthPasswordChange()` - Update change
|
|
469
481
|
- `patchUsersAuthReset-password()` - Update reset password
|
|
470
482
|
- `patchUsersById()` - Update admin
|
package/package.json
CHANGED