@ai-sdk/prodia 2.0.0-beta.7 → 2.0.0-beta.8

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,5 +1,13 @@
1
1
  # @ai-sdk/prodia
2
2
 
3
+ ## 2.0.0-beta.8
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [3887c70]
8
+ - @ai-sdk/provider-utils@5.0.0-beta.6
9
+ - @ai-sdk/provider@4.0.0-beta.4
10
+
3
11
  ## 2.0.0-beta.7
4
12
 
5
13
  ### Patch Changes
package/dist/index.js CHANGED
@@ -900,7 +900,7 @@ function getExtension(mediaType) {
900
900
  }
901
901
 
902
902
  // src/version.ts
903
- var VERSION = true ? "2.0.0-beta.7" : "0.0.0-test";
903
+ var VERSION = true ? "2.0.0-beta.8" : "0.0.0-test";
904
904
 
905
905
  // src/prodia-provider.ts
906
906
  var defaultBaseURL = "https://inference.prodia.com/v2";
package/dist/index.mjs CHANGED
@@ -906,7 +906,7 @@ function getExtension(mediaType) {
906
906
  }
907
907
 
908
908
  // src/version.ts
909
- var VERSION = true ? "2.0.0-beta.7" : "0.0.0-test";
909
+ var VERSION = true ? "2.0.0-beta.8" : "0.0.0-test";
910
910
 
911
911
  // src/prodia-provider.ts
912
912
  var defaultBaseURL = "https://inference.prodia.com/v2";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/prodia",
3
- "version": "2.0.0-beta.7",
3
+ "version": "2.0.0-beta.8",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -28,8 +28,8 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@ai-sdk/provider": "4.0.0-beta.3",
32
- "@ai-sdk/provider-utils": "5.0.0-beta.5"
31
+ "@ai-sdk/provider": "4.0.0-beta.4",
32
+ "@ai-sdk/provider-utils": "5.0.0-beta.6"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@types/node": "20.17.24",
@@ -63,9 +63,7 @@
63
63
  "build": "pnpm clean && tsup --tsconfig tsconfig.build.json",
64
64
  "build:watch": "pnpm clean && tsup --watch",
65
65
  "clean": "del-cli dist docs *.tsbuildinfo",
66
- "lint": "eslint \"./**/*.ts*\"",
67
66
  "type-check": "tsc --build",
68
- "prettier-check": "prettier --check \"./**/*.ts*\"",
69
67
  "test": "pnpm test:node && pnpm test:edge",
70
68
  "test:update": "pnpm test:node -u",
71
69
  "test:watch": "vitest --config vitest.node.config.js",