chatbase 0.2.0 → 0.3.0
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/README.md +75 -55
- package/dist/commands/conversations/export.js +41 -2
- package/dist/commands/conversations/list.js +24 -1
- package/oclif.manifest.json +732 -675
- package/package.json +1 -1
- package/spec/coverage-ignore.json +12 -0
- package/spec/openapi.json +842 -20
package/package.json
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"method": "POST",
|
|
4
|
+
"path": "/api/v2/agents/{agentId}/sources",
|
|
5
|
+
"reason": "Covered by `sources create --file`, but not via the typed openapi-fetch client: this is a multipart upload against the separate files.chatbase.co host (see the operation's `servers` override), so it goes through uploadFileSource in src/client/files.ts, which builds the URL from a template literal the coverage scan cannot see."
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"method": "PUT",
|
|
9
|
+
"path": "/api/v2/agents/{agentId}/sources/{sourceId}",
|
|
10
|
+
"reason": "Covered by `sources update --file`, via the same multipart uploadFileSource path in src/client/files.ts as createFileSource above."
|
|
11
|
+
}
|
|
12
|
+
]
|