@convai/web-sdk 0.2.3-beta.0 → 0.2.3-beta.1

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/dev.d.ts ADDED
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Development-only exports
3
+ *
4
+ * This module contains tools and utilities for development and debugging.
5
+ * Import from '@convai/web-sdk/dev' to access these features.
6
+ *
7
+ * @packageDocumentation
8
+ * @module dev
9
+ */
10
+ export { LatencyMonitor } from "./utils/LatencyMonitor";
11
+ export type { LatencyMeasurement, LatencyStats } from "./utils/LatencyMonitor";
12
+ //# sourceMappingURL=dev.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dev.d.ts","sourceRoot":"","sources":["../src/dev.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAGH,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AACxD,YAAY,EAAE,kBAAkB,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC"}
package/dist/dev.js ADDED
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Development-only exports
3
+ *
4
+ * This module contains tools and utilities for development and debugging.
5
+ * Import from '@convai/web-sdk/dev' to access these features.
6
+ *
7
+ * @packageDocumentation
8
+ * @module dev
9
+ */
10
+ // Export LatencyMonitor for development/debugging
11
+ export { LatencyMonitor } from "./utils/LatencyMonitor";
12
+ //# sourceMappingURL=dev.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dev.js","sourceRoot":"","sources":["../src/dev.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,kDAAkD;AAClD,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC"}
package/dist/index.d.ts CHANGED
@@ -1,3 +1,2 @@
1
1
  export * from './react';
2
- export type { LatencyMonitor, LatencyMeasurement, LatencyStats } from "./utils/LatencyMonitor";
3
2
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,cAAc,SAAS,CAAC;AAGxB,YAAY,EAAE,cAAc,EAAE,kBAAkB,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,cAAc,SAAS,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@convai/web-sdk",
3
- "version": "0.2.3-beta.0",
3
+ "version": "0.2.3-beta.1",
4
4
  "description": "Convai Web SDK for AI voice assistants. Supports both React and vanilla JavaScript/TypeScript. Build voice-powered AI interactions with real-time audio/video streaming.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -23,6 +23,10 @@
23
23
  "./react": {
24
24
  "import": "./dist/react/index.js",
25
25
  "types": "./dist/react/index.d.ts"
26
+ },
27
+ "./dev": {
28
+ "import": "./dist/dev.js",
29
+ "types": "./dist/dev.d.ts"
26
30
  }
27
31
  },
28
32
  "sideEffects": false,