@ai-sdk/fireworks 2.0.42 → 2.0.44

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,21 @@
1
1
  # @ai-sdk/fireworks
2
2
 
3
+ ## 2.0.44
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [6247886]
8
+ - @ai-sdk/provider-utils@4.0.23
9
+ - @ai-sdk/openai-compatible@2.0.39
10
+
11
+ ## 2.0.43
12
+
13
+ ### Patch Changes
14
+
15
+ - Updated dependencies [0469aed]
16
+ - @ai-sdk/provider-utils@4.0.22
17
+ - @ai-sdk/openai-compatible@2.0.38
18
+
3
19
  ## 2.0.42
4
20
 
5
21
  ### Patch Changes
@@ -342,13 +358,13 @@
342
358
  Before
343
359
 
344
360
  ```ts
345
- model.textEmbeddingModel('my-model-id');
361
+ model.textEmbeddingModel("my-model-id");
346
362
  ```
347
363
 
348
364
  After
349
365
 
350
366
  ```ts
351
- model.embeddingModel('my-model-id');
367
+ model.embeddingModel("my-model-id");
352
368
  ```
353
369
 
354
370
  - 95f65c2: chore: use import \* from zod/v4
@@ -576,13 +592,13 @@
576
592
  Before
577
593
 
578
594
  ```ts
579
- model.textEmbeddingModel('my-model-id');
595
+ model.textEmbeddingModel("my-model-id");
580
596
  ```
581
597
 
582
598
  After
583
599
 
584
600
  ```ts
585
- model.embeddingModel('my-model-id');
601
+ model.embeddingModel("my-model-id");
586
602
  ```
587
603
 
588
604
  - Updated dependencies [8d9e8ad]
@@ -1070,7 +1086,7 @@
1070
1086
 
1071
1087
  ```js
1072
1088
  await generateImage({
1073
- model: luma.image('photon-flash-1', {
1089
+ model: luma.image("photon-flash-1", {
1074
1090
  maxImagesPerCall: 5,
1075
1091
  pollIntervalMillis: 500,
1076
1092
  }),
@@ -1083,7 +1099,7 @@
1083
1099
 
1084
1100
  ```js
1085
1101
  await generateImage({
1086
- model: luma.image('photon-flash-1'),
1102
+ model: luma.image("photon-flash-1"),
1087
1103
  prompt,
1088
1104
  n: 10,
1089
1105
  maxImagesPerCall: 5,
@@ -1371,7 +1387,7 @@
1371
1387
 
1372
1388
  ```js
1373
1389
  await generateImage({
1374
- model: luma.image('photon-flash-1', {
1390
+ model: luma.image("photon-flash-1", {
1375
1391
  maxImagesPerCall: 5,
1376
1392
  pollIntervalMillis: 500,
1377
1393
  }),
@@ -1384,7 +1400,7 @@
1384
1400
 
1385
1401
  ```js
1386
1402
  await generateImage({
1387
- model: luma.image('photon-flash-1'),
1403
+ model: luma.image("photon-flash-1"),
1388
1404
  prompt,
1389
1405
  n: 10,
1390
1406
  maxImagesPerCall: 5,
package/dist/index.js CHANGED
@@ -305,7 +305,7 @@ var import_provider_utils3 = require("@ai-sdk/provider-utils");
305
305
  var import_v42 = require("zod/v4");
306
306
 
307
307
  // src/version.ts
308
- var VERSION = true ? "2.0.42" : "0.0.0-test";
308
+ var VERSION = true ? "2.0.44" : "0.0.0-test";
309
309
 
310
310
  // src/fireworks-provider.ts
311
311
  var fireworksErrorSchema = import_v42.z.object({
package/dist/index.mjs CHANGED
@@ -293,7 +293,7 @@ import {
293
293
  import { z as z2 } from "zod/v4";
294
294
 
295
295
  // src/version.ts
296
- var VERSION = true ? "2.0.42" : "0.0.0-test";
296
+ var VERSION = true ? "2.0.44" : "0.0.0-test";
297
297
 
298
298
  // src/fireworks-provider.ts
299
299
  var fireworksErrorSchema = z2.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/fireworks",
3
- "version": "2.0.42",
3
+ "version": "2.0.44",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -29,9 +29,9 @@
29
29
  }
30
30
  },
31
31
  "dependencies": {
32
- "@ai-sdk/openai-compatible": "2.0.37",
32
+ "@ai-sdk/openai-compatible": "2.0.39",
33
33
  "@ai-sdk/provider": "3.0.8",
34
- "@ai-sdk/provider-utils": "4.0.21"
34
+ "@ai-sdk/provider-utils": "4.0.23"
35
35
  },
36
36
  "devDependencies": {
37
37
  "@types/node": "20.17.24",
@@ -65,9 +65,7 @@
65
65
  "build": "pnpm clean && tsup --tsconfig tsconfig.build.json",
66
66
  "build:watch": "pnpm clean && tsup --watch",
67
67
  "clean": "del-cli dist docs *.tsbuildinfo",
68
- "lint": "eslint \"./**/*.ts*\"",
69
68
  "type-check": "tsc --build",
70
- "prettier-check": "prettier --check \"./**/*.ts*\"",
71
69
  "test": "pnpm test:node && pnpm test:edge",
72
70
  "test:update": "pnpm test:node -u",
73
71
  "test:watch": "vitest --config vitest.node.config.js",