@coze/realtime-api 0.0.2 → 0.0.4
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 +2 -0
- package/dist/cjs/index.cjs +41928 -0
- package/dist/cjs/index.cjs.LICENSE.txt +1 -0
- package/dist/esm/index.js +41912 -0
- package/dist/esm/index.js.LICENSE.txt +1 -0
- package/dist/{client.d.ts → types/client.d.ts} +6 -3
- package/dist/{event-handler.d.ts → types/event-handler.d.ts} +21 -1
- package/dist/{index.d.ts → types/index.d.ts} +21 -1
- package/dist/{utils.d.ts → types/utils.d.ts} +8 -0
- package/dist/umd/index.js +41931 -0
- package/dist/umd/index.js.LICENSE.txt +1 -0
- package/package.json +22 -14
- package/dist/client.js +0 -205
- package/dist/error.js +0 -36
- package/dist/event-handler.js +0 -106
- package/dist/index.js +0 -223
- package/dist/tsconfig.build.tsbuildinfo +0 -1
- package/dist/utils.js +0 -25
- /package/dist/{error.d.ts → types/error.d.ts} +0 -0
package/README.md
CHANGED
@@ -45,6 +45,8 @@ const client = new RealtimeClient({
|
|
45
45
|
debug: true, // Optional: Enable debug logging
|
46
46
|
allowPersonalAccessTokenInBrowser: true, // Optional: Enable PAT token usage in browser
|
47
47
|
audioMutedDefault: false, // Optional: Initial audio state (default: false)
|
48
|
+
suppressStationaryNoise: false, // Optional: Enable stationary noise suppression(default: false)
|
49
|
+
suppressNonStationaryNoise: false, // Optional: Enable non-stationary noise suppression(default: false)
|
48
50
|
});
|
49
51
|
|
50
52
|
// Essential Setup
|