assemblyai 4.0.0 → 4.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "assemblyai",
3
- "version": "4.0.0",
3
+ "version": "4.0.1",
4
4
  "description": "The AssemblyAI JavaScript SDK provides an easy-to-use interface for interacting with the AssemblyAI API, which supports async and real-time transcription, as well as the latest LeMUR models.",
5
5
  "engines": {
6
6
  "node": ">=18"
@@ -95,7 +95,10 @@ export type SessionBegins = RealtimeBaseMessage & {
95
95
  * @constant
96
96
  */
97
97
  message_type: "SessionBegins";
98
- /** @description Unique identifier for the established session */
98
+ /**
99
+ * Format: uuid
100
+ * @description Unique identifier for the established session
101
+ */
99
102
  session_id: string;
100
103
  };
101
104