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/CHANGELOG.md CHANGED
@@ -1,6 +1,17 @@
1
1
  # Changelog
2
2
 
3
- ## [4.0.0]
3
+ ## [4.0.1] - 2023-12-14
4
+
5
+ ### Added
6
+
7
+ - Add `"assemblyai/mistral-7b"` to `LemurModel` type
8
+
9
+ ### Changed
10
+
11
+ - Update types with `@example`
12
+ - Update types with `Format: uuid` if applicable
13
+
14
+ ## [4.0.0] - 2023-12-08
4
15
 
5
16
  ### Added
6
17
 
@@ -61,7 +61,10 @@ export type SessionBegins = RealtimeBaseMessage & {
61
61
  * @constant
62
62
  */
63
63
  message_type: "SessionBegins";
64
- /** @description Unique identifier for the established session */
64
+ /**
65
+ * Format: uuid
66
+ * @description Unique identifier for the established session
67
+ */
65
68
  session_id: string;
66
69
  };
67
70
  export type SessionTerminated = RealtimeBaseMessage & {