@ai-sdk/gladia 3.0.0 → 3.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 +7 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @ai-sdk/gladia
|
|
2
2
|
|
|
3
|
+
## 3.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [6a436e3]
|
|
8
|
+
- @ai-sdk/provider-utils@5.0.1
|
|
9
|
+
|
|
3
10
|
## 3.0.0
|
|
4
11
|
|
|
5
12
|
### Major Changes
|
|
@@ -32,7 +39,6 @@
|
|
|
32
39
|
|
|
33
40
|
All provider model classes now include `WORKFLOW_SERIALIZE` and `WORKFLOW_DESERIALIZE` static methods, enabling them to cross workflow step boundaries without serialization errors.
|
|
34
41
|
|
|
35
|
-
|
|
36
42
|
## 3.0.0-beta.51
|
|
37
43
|
|
|
38
44
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -559,7 +559,7 @@ var gladiaTranscriptionResultResponseSchema = z3.object({
|
|
|
559
559
|
});
|
|
560
560
|
|
|
561
561
|
// src/version.ts
|
|
562
|
-
var VERSION = true ? "3.0.
|
|
562
|
+
var VERSION = true ? "3.0.1" : "0.0.0-test";
|
|
563
563
|
|
|
564
564
|
// src/gladia-provider.ts
|
|
565
565
|
function createGladia(options = {}) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-sdk/gladia",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
32
|
"@ai-sdk/provider": "4.0.0",
|
|
33
|
-
"@ai-sdk/provider-utils": "5.0.
|
|
33
|
+
"@ai-sdk/provider-utils": "5.0.1"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|
|
36
36
|
"@types/node": "22.19.19",
|