@kivox/widget 0.1.0-beta.23 → 0.1.0-beta.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -55,7 +55,7 @@ Then use the custom element:
55
55
  ```html
56
56
  <kivox-widget
57
57
  agent-id="019bb51e-e45f-75e3-b828-94fdf231711e"
58
- base-url="http://localhost:8787"
58
+ base-url="http://localhost:7700"
59
59
  mode="chat"
60
60
  theme="light">
61
61
  </kivox-widget>
@@ -76,7 +76,7 @@ Then use the custom element:
76
76
  <body>
77
77
  <kivox-widget
78
78
  agent-id="019bb51e-e45f-75e3-b828-94fdf231711e"
79
- base-url="http://localhost:8787"
79
+ base-url="http://localhost:7700"
80
80
  mode="chat"
81
81
  theme="light">
82
82
  </kivox-widget>
@@ -92,7 +92,7 @@ import "@kivox/widget";
92
92
  const widget = document.createElement("kivox-widget");
93
93
 
94
94
  widget.agentId = "019bb51e-e45f-75e3-b828-94fdf231711e";
95
- widget.baseUrl = "http://localhost:8787";
95
+ widget.baseUrl = "http://localhost:7700";
96
96
  widget.mode = "voice";
97
97
  widget.theme = "dark";
98
98
 
@@ -107,7 +107,7 @@ import "@kivox/widget";
107
107
  const widget = document.createElement("kivox-widget");
108
108
 
109
109
  widget.agentId = "019bb51e-e45f-75e3-b828-94fdf231711e";
110
- widget.baseUrl = "http://localhost:8787";
110
+ widget.baseUrl = "http://localhost:7700";
111
111
  widget.headers = {
112
112
  Authorization: "Bearer token",
113
113
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kivox/widget",
3
- "version": "0.1.0-beta.23",
3
+ "version": "0.1.0-beta.25",
4
4
  "description": "JavaScript/TypeScript client for Kivox",
5
5
  "homepage": "https://github.com/ekisa-team/kivox#readme",
6
6
  "bugs": {