@ai-sdk/fal 2.0.14 → 2.0.15

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,11 @@
1
1
  # @ai-sdk/fal
2
2
 
3
+ ## 2.0.15
4
+
5
+ ### Patch Changes
6
+
7
+ - 1524271: chore: add skill information to README files
8
+
3
9
  ## 2.0.14
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -10,6 +10,14 @@ The fal provider is available in the `@ai-sdk/fal` module. You can install it wi
10
10
  npm i @ai-sdk/fal
11
11
  ```
12
12
 
13
+ ## Skill for Coding Agents
14
+
15
+ If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
16
+
17
+ ```shell
18
+ npx skills add vercel/ai
19
+ ```
20
+
13
21
  ## Provider Instance
14
22
 
15
23
  You can import the default provider instance `fal` from `@ai-sdk/fal`:
package/dist/index.js CHANGED
@@ -764,7 +764,7 @@ var falSpeechResponseSchema = import_v45.z.object({
764
764
  });
765
765
 
766
766
  // src/version.ts
767
- var VERSION = true ? "2.0.14" : "0.0.0-test";
767
+ var VERSION = true ? "2.0.15" : "0.0.0-test";
768
768
 
769
769
  // src/fal-provider.ts
770
770
  var defaultBaseURL = "https://fal.run";
package/dist/index.mjs CHANGED
@@ -771,7 +771,7 @@ var falSpeechResponseSchema = z5.object({
771
771
  });
772
772
 
773
773
  // src/version.ts
774
- var VERSION = true ? "2.0.14" : "0.0.0-test";
774
+ var VERSION = true ? "2.0.15" : "0.0.0-test";
775
775
 
776
776
  // src/fal-provider.ts
777
777
  var defaultBaseURL = "https://fal.run";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/fal",
3
- "version": "2.0.14",
3
+ "version": "2.0.15",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",