@kivox/client 0.1.0-beta.1 → 0.1.0-beta.11
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 +3 -3
- package/dist/index.d.ts +2 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
|
-
- Unified client for the
|
|
7
|
+
- Unified client for the KIVOX API
|
|
8
8
|
- Conversation and voice session management
|
|
9
9
|
- WebSockets, events, and real-time state
|
|
10
10
|
- Audio recording and playback
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
|
|
14
14
|
## Documentation
|
|
15
15
|
|
|
16
|
-
<https://kivox.
|
|
16
|
+
<https://docs.kivox.com.co/packages/kivox-client>
|
|
17
17
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
@@ -84,7 +84,7 @@ const kivox = new KivoxClient({
|
|
|
84
84
|
|
|
85
85
|
## Contributing
|
|
86
86
|
|
|
87
|
-
[
|
|
87
|
+
[CONTRIBUTING.md](https://github.com/ekisa-team/kivox/blob/main/CONTRIBUTING.md)
|
|
88
88
|
|
|
89
89
|
## License
|
|
90
90
|
|
package/dist/index.d.ts
CHANGED
|
@@ -74,6 +74,7 @@ type Agent = {
|
|
|
74
74
|
updated_at: Date
|
|
75
75
|
};
|
|
76
76
|
type AgentConfig = {
|
|
77
|
+
avatar_url: string
|
|
77
78
|
name: string
|
|
78
79
|
description: string
|
|
79
80
|
system_prompt: string
|
|
@@ -753,7 +754,7 @@ declare class TemplateClient {
|
|
|
753
754
|
delete(id: string): Promise<void>;
|
|
754
755
|
}
|
|
755
756
|
/**
|
|
756
|
-
* Configuration for the
|
|
757
|
+
* Configuration for the KIVOX client.
|
|
757
758
|
*/
|
|
758
759
|
type KivoxConfig = {
|
|
759
760
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kivox/client",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.11",
|
|
4
4
|
"description": "JavaScript/TypeScript client for KIVOX",
|
|
5
5
|
"homepage": "https://github.com/ekisa-team/kivox#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"typescript": "5.9.3"
|
|
43
43
|
},
|
|
44
44
|
"publishConfig": {
|
|
45
|
-
"access": "public"
|
|
45
|
+
"access": "public",
|
|
46
|
+
"tag": "beta"
|
|
46
47
|
}
|
|
47
48
|
}
|