@gpt-core/client 0.9.21 → 0.9.30
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 +13818 -1666
- package/dist/index.d.ts +13818 -1666
- package/dist/index.js +56 -745
- package/dist/index.mjs +50 -745
- package/llms.txt +9 -0
- package/package.json +1 -1
package/llms.txt
CHANGED
|
@@ -43,6 +43,11 @@ client.setConfig({
|
|
|
43
43
|
|
|
44
44
|
- `postAgentVersionComparisons()` - Create agent version comparisons
|
|
45
45
|
|
|
46
|
+
## Agent version revision
|
|
47
|
+
|
|
48
|
+
- `getAgentVersionRevisions()` - List agent version revisions
|
|
49
|
+
- `getAgentVersionRevisionsById()` - Get agent version revisions
|
|
50
|
+
|
|
46
51
|
## AI Agents
|
|
47
52
|
|
|
48
53
|
- `getAgents()` - List agents
|
|
@@ -51,6 +56,7 @@ client.setConfig({
|
|
|
51
56
|
- `getAgentVersions()` - List agent versions
|
|
52
57
|
- `getAgentVersionsById()` - Get agent versions
|
|
53
58
|
- `getAgentVersionsByIdMetrics()` - Get metrics
|
|
59
|
+
- `getAgentVersionsByIdRevisions()` - Get revisions
|
|
54
60
|
- `postAgents()` - Create agents
|
|
55
61
|
- `postAgentsByIdClone()` - Create clone
|
|
56
62
|
- `postAgentsByIdDiscoverSchema()` - Create discover schema
|
|
@@ -194,6 +200,7 @@ client.setConfig({
|
|
|
194
200
|
- `getExtractionDocumentsWorkspaceByWorkspaceIdTrained()` - Get trained
|
|
195
201
|
- `getExtractionDocumentsWorkspaceByWorkspaceIdTrashed()` - Get trashed
|
|
196
202
|
- `postExtractionDocumentsBeginUpload()` - Create begin upload
|
|
203
|
+
- `postExtractionDocumentsFindOrBeginUpload()` - Create find or begin upload
|
|
197
204
|
- `postExtractionDocumentsUpload()` - Create upload
|
|
198
205
|
- `patchExtractionDocumentsByIdCancel()` - Update cancel
|
|
199
206
|
- `patchExtractionDocumentsByIdDismiss()` - Update dismiss
|
|
@@ -524,6 +531,7 @@ client.setConfig({
|
|
|
524
531
|
|
|
525
532
|
- `getWatcherClaims()` - List claims
|
|
526
533
|
- `getWatcherClaimsById()` - Get claims
|
|
534
|
+
- `getWatcherClaimsHistory()` - List history
|
|
527
535
|
- `getWatcherClaimsStatus()` - List status
|
|
528
536
|
- `postWatcherClaims()` - Create claims
|
|
529
537
|
- `patchWatcherClaimsById()` - Update claims
|
|
@@ -577,6 +585,7 @@ client.setConfig({
|
|
|
577
585
|
- `postWorkspaces()` - Create workspaces
|
|
578
586
|
- `patchWorkspacesById()` - Update workspaces
|
|
579
587
|
- `patchWorkspacesByIdAllocate()` - Update allocate
|
|
588
|
+
- `patchWorkspacesByIdPopulate-hashes()` - Update populate hashes
|
|
580
589
|
- `patchWorkspacesByIdStorage-settings()` - Update storage settings
|
|
581
590
|
- `deleteWorkspacesById()` - Delete workspaces
|
|
582
591
|
|
package/package.json
CHANGED