@blinkdotnew/sdk 0.17.1 → 0.17.2

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/README.md CHANGED
@@ -359,7 +359,7 @@ const { object: todoList } = await blink.ai.generateObject({
359
359
  const { data } = await blink.ai.generateImage({
360
360
  prompt: 'A serene landscape with mountains and a lake at sunset',
361
361
  size: '1024x1024',
362
- quality: 'hd',
362
+ quality: 'high',
363
363
  n: 2
364
364
  })
365
365
  console.log('Image URL:', data[0].url)
@@ -368,10 +368,10 @@ console.log('Image URL:', data[0].url)
368
368
  const { data: headshots } = await blink.ai.modifyImage({
369
369
  images: ['https://storage.example.com/user-photo.jpg'], // ... up to 16 images maximum!
370
370
  prompt: 'Generate professional business headshot with studio lighting for this person.',
371
- quality: 'hd',
371
+ quality: 'high',
372
372
  n: 4
373
373
  })
374
- // Options: size ('1024x1024', '1536x1024'), quality ('standard'|'hd'),
374
+ // Options: size ('1024x1024', '1536x1024'), quality ('auto'|'low'|'medium'|'high'),
375
375
  // background ('auto'|'transparent'|'opaque'), n (1-10 images)
376
376
 
377
377
 
package/dist/index.d.mts CHANGED
@@ -222,7 +222,7 @@ interface ImageGenerationRequest {
222
222
  prompt: string;
223
223
  images?: string[];
224
224
  size?: string;
225
- quality?: 'standard' | 'hd';
225
+ quality?: 'auto' | 'low' | 'medium' | 'high';
226
226
  background?: 'auto' | 'transparent' | 'opaque';
227
227
  n?: number;
228
228
  response_format?: 'url' | 'b64_json';
@@ -291,7 +291,7 @@ interface BlinkAI {
291
291
  images: string[];
292
292
  prompt: string;
293
293
  size?: string;
294
- quality?: "standard" | "hd";
294
+ quality?: "auto" | "low" | "medium" | "high";
295
295
  n?: number;
296
296
  background?: "auto" | "transparent" | "opaque";
297
297
  signal?: AbortSignal;
@@ -686,7 +686,7 @@ declare class HttpClient {
686
686
  model?: string;
687
687
  images?: string[];
688
688
  size?: string;
689
- quality?: 'standard' | 'hd';
689
+ quality?: 'auto' | 'low' | 'medium' | 'high';
690
690
  background?: 'auto' | 'transparent' | 'opaque';
691
691
  n?: number;
692
692
  response_format?: 'url' | 'b64_json';
@@ -1452,7 +1452,7 @@ declare class BlinkAIImpl implements BlinkAI {
1452
1452
  * @param options - Object containing:
1453
1453
  * - `prompt`: Text description of the desired image (required)
1454
1454
  * - `size`: Image dimensions (default: "1024x1024")
1455
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
1455
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
1456
1456
  * - `n`: Number of images to generate (default: 1)
1457
1457
  * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
1458
1458
  * - Plus optional signal parameter
@@ -1465,21 +1465,21 @@ declare class BlinkAIImpl implements BlinkAI {
1465
1465
  * });
1466
1466
  * console.log("Image URL:", data[0].url);
1467
1467
  *
1468
- * // High-quality image with specific size
1469
- * const { data } = await blink.ai.generateImage({
1470
- * prompt: "A futuristic city skyline with flying cars",
1471
- * size: "1536x1024",
1472
- * quality: "hd",
1473
- * background: "transparent"
1474
- * });
1468
+ * // High-quality image with specific size
1469
+ * const { data } = await blink.ai.generateImage({
1470
+ * prompt: "A futuristic city skyline with flying cars",
1471
+ * size: "1536x1024",
1472
+ * quality: "high",
1473
+ * background: "transparent"
1474
+ * });
1475
1475
  *
1476
- * // Multiple images
1477
- * const { data } = await blink.ai.generateImage({
1478
- * prompt: "A cute robot mascot for a tech company",
1479
- * n: 3,
1480
- * size: "1024x1024",
1481
- * quality: "hd"
1482
- * });
1476
+ * // Multiple images
1477
+ * const { data } = await blink.ai.generateImage({
1478
+ * prompt: "A cute robot mascot for a tech company",
1479
+ * n: 3,
1480
+ * size: "1024x1024",
1481
+ * quality: "high"
1482
+ * });
1483
1483
  * data.forEach((img, i) => console.log(`Image ${i+1}:`, img.url));
1484
1484
  * ```
1485
1485
  *
@@ -1491,7 +1491,7 @@ declare class BlinkAIImpl implements BlinkAI {
1491
1491
  generateImage(options: {
1492
1492
  prompt: string;
1493
1493
  size?: string;
1494
- quality?: "standard" | "hd";
1494
+ quality?: "auto" | "low" | "medium" | "high";
1495
1495
  n?: number;
1496
1496
  background?: "auto" | "transparent" | "opaque";
1497
1497
  signal?: AbortSignal;
@@ -1503,7 +1503,7 @@ declare class BlinkAIImpl implements BlinkAI {
1503
1503
  * - `images`: Array of public image URLs to modify (required, up to 16 images)
1504
1504
  * - `prompt`: Text description of desired modifications (required)
1505
1505
  * - `size`: Output image dimensions (default: "auto")
1506
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
1506
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
1507
1507
  * - `n`: Number of output images to generate (default: 1)
1508
1508
  * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
1509
1509
  * - Plus optional signal parameter
@@ -1516,19 +1516,19 @@ declare class BlinkAIImpl implements BlinkAI {
1516
1516
  * "https://storage.example.com/user-photo-1.jpg",
1517
1517
  * "https://storage.example.com/user-photo-2.jpg"
1518
1518
  * ],
1519
- * prompt: "Transform into professional business headshots with studio lighting",
1520
- * quality: "hd",
1521
- * n: 4
1519
+ * prompt: "Transform into professional business headshots with studio lighting",
1520
+ * quality: "high",
1521
+ * n: 4
1522
1522
  * });
1523
1523
  * data.forEach((img, i) => console.log(`Headshot ${i+1}:`, img.url));
1524
1524
  *
1525
1525
  * // Artistic style transformation
1526
- * const { data } = await blink.ai.modifyImage({
1527
- * images: ["https://storage.example.com/portrait.jpg"],
1528
- * prompt: "Transform into oil painting style with dramatic lighting",
1529
- * quality: "hd",
1530
- * size: "1024x1024"
1531
- * });
1526
+ * const { data } = await blink.ai.modifyImage({
1527
+ * images: ["https://storage.example.com/portrait.jpg"],
1528
+ * prompt: "Transform into oil painting style with dramatic lighting",
1529
+ * quality: "high",
1530
+ * size: "1024x1024"
1531
+ * });
1532
1532
  *
1533
1533
  * // Background replacement
1534
1534
  * const { data } = await blink.ai.modifyImage({
@@ -1545,9 +1545,9 @@ declare class BlinkAIImpl implements BlinkAI {
1545
1545
  * "https://storage.example.com/photo3.jpg"
1546
1546
  * ];
1547
1547
  * const { data } = await blink.ai.modifyImage({
1548
- * images: userPhotos,
1549
- * prompt: "Convert to black and white vintage style photographs",
1550
- * quality: "hd"
1548
+ * images: userPhotos,
1549
+ * prompt: "Convert to black and white vintage style photographs",
1550
+ * quality: "high"
1551
1551
  * });
1552
1552
  * ```
1553
1553
  *
@@ -1560,7 +1560,7 @@ declare class BlinkAIImpl implements BlinkAI {
1560
1560
  images: string[];
1561
1561
  prompt: string;
1562
1562
  size?: string;
1563
- quality?: "standard" | "hd";
1563
+ quality?: "auto" | "low" | "medium" | "high";
1564
1564
  n?: number;
1565
1565
  background?: "auto" | "transparent" | "opaque";
1566
1566
  signal?: AbortSignal;
package/dist/index.d.ts CHANGED
@@ -222,7 +222,7 @@ interface ImageGenerationRequest {
222
222
  prompt: string;
223
223
  images?: string[];
224
224
  size?: string;
225
- quality?: 'standard' | 'hd';
225
+ quality?: 'auto' | 'low' | 'medium' | 'high';
226
226
  background?: 'auto' | 'transparent' | 'opaque';
227
227
  n?: number;
228
228
  response_format?: 'url' | 'b64_json';
@@ -291,7 +291,7 @@ interface BlinkAI {
291
291
  images: string[];
292
292
  prompt: string;
293
293
  size?: string;
294
- quality?: "standard" | "hd";
294
+ quality?: "auto" | "low" | "medium" | "high";
295
295
  n?: number;
296
296
  background?: "auto" | "transparent" | "opaque";
297
297
  signal?: AbortSignal;
@@ -686,7 +686,7 @@ declare class HttpClient {
686
686
  model?: string;
687
687
  images?: string[];
688
688
  size?: string;
689
- quality?: 'standard' | 'hd';
689
+ quality?: 'auto' | 'low' | 'medium' | 'high';
690
690
  background?: 'auto' | 'transparent' | 'opaque';
691
691
  n?: number;
692
692
  response_format?: 'url' | 'b64_json';
@@ -1452,7 +1452,7 @@ declare class BlinkAIImpl implements BlinkAI {
1452
1452
  * @param options - Object containing:
1453
1453
  * - `prompt`: Text description of the desired image (required)
1454
1454
  * - `size`: Image dimensions (default: "1024x1024")
1455
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
1455
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
1456
1456
  * - `n`: Number of images to generate (default: 1)
1457
1457
  * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
1458
1458
  * - Plus optional signal parameter
@@ -1465,21 +1465,21 @@ declare class BlinkAIImpl implements BlinkAI {
1465
1465
  * });
1466
1466
  * console.log("Image URL:", data[0].url);
1467
1467
  *
1468
- * // High-quality image with specific size
1469
- * const { data } = await blink.ai.generateImage({
1470
- * prompt: "A futuristic city skyline with flying cars",
1471
- * size: "1536x1024",
1472
- * quality: "hd",
1473
- * background: "transparent"
1474
- * });
1468
+ * // High-quality image with specific size
1469
+ * const { data } = await blink.ai.generateImage({
1470
+ * prompt: "A futuristic city skyline with flying cars",
1471
+ * size: "1536x1024",
1472
+ * quality: "high",
1473
+ * background: "transparent"
1474
+ * });
1475
1475
  *
1476
- * // Multiple images
1477
- * const { data } = await blink.ai.generateImage({
1478
- * prompt: "A cute robot mascot for a tech company",
1479
- * n: 3,
1480
- * size: "1024x1024",
1481
- * quality: "hd"
1482
- * });
1476
+ * // Multiple images
1477
+ * const { data } = await blink.ai.generateImage({
1478
+ * prompt: "A cute robot mascot for a tech company",
1479
+ * n: 3,
1480
+ * size: "1024x1024",
1481
+ * quality: "high"
1482
+ * });
1483
1483
  * data.forEach((img, i) => console.log(`Image ${i+1}:`, img.url));
1484
1484
  * ```
1485
1485
  *
@@ -1491,7 +1491,7 @@ declare class BlinkAIImpl implements BlinkAI {
1491
1491
  generateImage(options: {
1492
1492
  prompt: string;
1493
1493
  size?: string;
1494
- quality?: "standard" | "hd";
1494
+ quality?: "auto" | "low" | "medium" | "high";
1495
1495
  n?: number;
1496
1496
  background?: "auto" | "transparent" | "opaque";
1497
1497
  signal?: AbortSignal;
@@ -1503,7 +1503,7 @@ declare class BlinkAIImpl implements BlinkAI {
1503
1503
  * - `images`: Array of public image URLs to modify (required, up to 16 images)
1504
1504
  * - `prompt`: Text description of desired modifications (required)
1505
1505
  * - `size`: Output image dimensions (default: "auto")
1506
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
1506
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
1507
1507
  * - `n`: Number of output images to generate (default: 1)
1508
1508
  * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
1509
1509
  * - Plus optional signal parameter
@@ -1516,19 +1516,19 @@ declare class BlinkAIImpl implements BlinkAI {
1516
1516
  * "https://storage.example.com/user-photo-1.jpg",
1517
1517
  * "https://storage.example.com/user-photo-2.jpg"
1518
1518
  * ],
1519
- * prompt: "Transform into professional business headshots with studio lighting",
1520
- * quality: "hd",
1521
- * n: 4
1519
+ * prompt: "Transform into professional business headshots with studio lighting",
1520
+ * quality: "high",
1521
+ * n: 4
1522
1522
  * });
1523
1523
  * data.forEach((img, i) => console.log(`Headshot ${i+1}:`, img.url));
1524
1524
  *
1525
1525
  * // Artistic style transformation
1526
- * const { data } = await blink.ai.modifyImage({
1527
- * images: ["https://storage.example.com/portrait.jpg"],
1528
- * prompt: "Transform into oil painting style with dramatic lighting",
1529
- * quality: "hd",
1530
- * size: "1024x1024"
1531
- * });
1526
+ * const { data } = await blink.ai.modifyImage({
1527
+ * images: ["https://storage.example.com/portrait.jpg"],
1528
+ * prompt: "Transform into oil painting style with dramatic lighting",
1529
+ * quality: "high",
1530
+ * size: "1024x1024"
1531
+ * });
1532
1532
  *
1533
1533
  * // Background replacement
1534
1534
  * const { data } = await blink.ai.modifyImage({
@@ -1545,9 +1545,9 @@ declare class BlinkAIImpl implements BlinkAI {
1545
1545
  * "https://storage.example.com/photo3.jpg"
1546
1546
  * ];
1547
1547
  * const { data } = await blink.ai.modifyImage({
1548
- * images: userPhotos,
1549
- * prompt: "Convert to black and white vintage style photographs",
1550
- * quality: "hd"
1548
+ * images: userPhotos,
1549
+ * prompt: "Convert to black and white vintage style photographs",
1550
+ * quality: "high"
1551
1551
  * });
1552
1552
  * ```
1553
1553
  *
@@ -1560,7 +1560,7 @@ declare class BlinkAIImpl implements BlinkAI {
1560
1560
  images: string[];
1561
1561
  prompt: string;
1562
1562
  size?: string;
1563
- quality?: "standard" | "hd";
1563
+ quality?: "auto" | "low" | "medium" | "high";
1564
1564
  n?: number;
1565
1565
  background?: "auto" | "transparent" | "opaque";
1566
1566
  signal?: AbortSignal;
package/dist/index.js CHANGED
@@ -2560,47 +2560,47 @@ var BlinkAIImpl = class {
2560
2560
  }
2561
2561
  }
2562
2562
  /**
2563
- * Generates images from text descriptions using AI.
2564
- *
2565
- * @param options - Object containing:
2566
- * - `prompt`: Text description of the desired image (required)
2567
- * - `size`: Image dimensions (default: "1024x1024")
2568
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
2569
- * - `n`: Number of images to generate (default: 1)
2570
- * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2571
- * - Plus optional signal parameter
2572
- *
2573
- * @example
2574
- * ```ts
2575
- * // Basic image generation
2576
- * const { data } = await blink.ai.generateImage({
2577
- * prompt: "A serene landscape with mountains and a lake at sunset"
2578
- * });
2579
- * console.log("Image URL:", data[0].url);
2580
- *
2581
- * // High-quality image with specific size
2582
- * const { data } = await blink.ai.generateImage({
2583
- * prompt: "A futuristic city skyline with flying cars",
2584
- * size: "1536x1024",
2585
- * quality: "hd",
2586
- * background: "transparent"
2587
- * });
2588
- *
2589
- * // Multiple images
2590
- * const { data } = await blink.ai.generateImage({
2591
- * prompt: "A cute robot mascot for a tech company",
2592
- * n: 3,
2593
- * size: "1024x1024",
2594
- * quality: "hd"
2595
- * });
2596
- * data.forEach((img, i) => console.log(`Image ${i+1}:`, img.url));
2597
- * ```
2598
- *
2599
- * @returns Promise<ImageGenerationResponse> - Object containing:
2600
- * - `data`: Array of generated images with URLs
2601
- * - `created`: Timestamp of generation
2602
- * - `usage`: Token usage information
2603
- */
2563
+ * Generates images from text descriptions using AI.
2564
+ *
2565
+ * @param options - Object containing:
2566
+ * - `prompt`: Text description of the desired image (required)
2567
+ * - `size`: Image dimensions (default: "1024x1024")
2568
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
2569
+ * - `n`: Number of images to generate (default: 1)
2570
+ * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2571
+ * - Plus optional signal parameter
2572
+ *
2573
+ * @example
2574
+ * ```ts
2575
+ * // Basic image generation
2576
+ * const { data } = await blink.ai.generateImage({
2577
+ * prompt: "A serene landscape with mountains and a lake at sunset"
2578
+ * });
2579
+ * console.log("Image URL:", data[0].url);
2580
+ *
2581
+ * // High-quality image with specific size
2582
+ * const { data } = await blink.ai.generateImage({
2583
+ * prompt: "A futuristic city skyline with flying cars",
2584
+ * size: "1536x1024",
2585
+ * quality: "high",
2586
+ * background: "transparent"
2587
+ * });
2588
+ *
2589
+ * // Multiple images
2590
+ * const { data } = await blink.ai.generateImage({
2591
+ * prompt: "A cute robot mascot for a tech company",
2592
+ * n: 3,
2593
+ * size: "1024x1024",
2594
+ * quality: "high"
2595
+ * });
2596
+ * data.forEach((img, i) => console.log(`Image ${i+1}:`, img.url));
2597
+ * ```
2598
+ *
2599
+ * @returns Promise<ImageGenerationResponse> - Object containing:
2600
+ * - `data`: Array of generated images with URLs
2601
+ * - `created`: Timestamp of generation
2602
+ * - `usage`: Token usage information
2603
+ */
2604
2604
  async generateImage(options) {
2605
2605
  try {
2606
2606
  if (!options.prompt) {
@@ -2651,65 +2651,65 @@ var BlinkAIImpl = class {
2651
2651
  }
2652
2652
  }
2653
2653
  /**
2654
- * Modifies existing images using AI with text prompts for image-to-image editing.
2655
- *
2656
- * @param options - Object containing:
2657
- * - `images`: Array of public image URLs to modify (required, up to 16 images)
2658
- * - `prompt`: Text description of desired modifications (required)
2659
- * - `size`: Output image dimensions (default: "auto")
2660
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
2661
- * - `n`: Number of output images to generate (default: 1)
2662
- * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2663
- * - Plus optional signal parameter
2664
- *
2665
- * @example
2666
- * ```ts
2667
- * // Professional headshots from casual photos
2668
- * const { data } = await blink.ai.modifyImage({
2669
- * images: [
2670
- * "https://storage.example.com/user-photo-1.jpg",
2671
- * "https://storage.example.com/user-photo-2.jpg"
2672
- * ],
2673
- * prompt: "Transform into professional business headshots with studio lighting",
2674
- * quality: "hd",
2675
- * n: 4
2676
- * });
2677
- * data.forEach((img, i) => console.log(`Headshot ${i+1}:`, img.url));
2678
- *
2679
- * // Artistic style transformation
2680
- * const { data } = await blink.ai.modifyImage({
2681
- * images: ["https://storage.example.com/portrait.jpg"],
2682
- * prompt: "Transform into oil painting style with dramatic lighting",
2683
- * quality: "hd",
2684
- * size: "1024x1024"
2685
- * });
2686
- *
2687
- * // Background replacement
2688
- * const { data } = await blink.ai.modifyImage({
2689
- * images: ["https://storage.example.com/product.jpg"],
2690
- * prompt: "Remove background and place on clean white studio background",
2691
- * background: "transparent",
2692
- * n: 2
2693
- * });
2694
- *
2695
- * // Batch processing multiple photos
2696
- * const userPhotos = [
2697
- * "https://storage.example.com/photo1.jpg",
2698
- * "https://storage.example.com/photo2.jpg",
2699
- * "https://storage.example.com/photo3.jpg"
2700
- * ];
2701
- * const { data } = await blink.ai.modifyImage({
2702
- * images: userPhotos,
2703
- * prompt: "Convert to black and white vintage style photographs",
2704
- * quality: "hd"
2705
- * });
2706
- * ```
2707
- *
2708
- * @returns Promise<ImageGenerationResponse> - Object containing:
2709
- * - `data`: Array of modified images with URLs
2710
- * - `created`: Timestamp of generation
2711
- * - `usage`: Token usage information
2712
- */
2654
+ * Modifies existing images using AI with text prompts for image-to-image editing.
2655
+ *
2656
+ * @param options - Object containing:
2657
+ * - `images`: Array of public image URLs to modify (required, up to 16 images)
2658
+ * - `prompt`: Text description of desired modifications (required)
2659
+ * - `size`: Output image dimensions (default: "auto")
2660
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
2661
+ * - `n`: Number of output images to generate (default: 1)
2662
+ * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2663
+ * - Plus optional signal parameter
2664
+ *
2665
+ * @example
2666
+ * ```ts
2667
+ * // Professional headshots from casual photos
2668
+ * const { data } = await blink.ai.modifyImage({
2669
+ * images: [
2670
+ * "https://storage.example.com/user-photo-1.jpg",
2671
+ * "https://storage.example.com/user-photo-2.jpg"
2672
+ * ],
2673
+ * prompt: "Transform into professional business headshots with studio lighting",
2674
+ * quality: "high",
2675
+ * n: 4
2676
+ * });
2677
+ * data.forEach((img, i) => console.log(`Headshot ${i+1}:`, img.url));
2678
+ *
2679
+ * // Artistic style transformation
2680
+ * const { data } = await blink.ai.modifyImage({
2681
+ * images: ["https://storage.example.com/portrait.jpg"],
2682
+ * prompt: "Transform into oil painting style with dramatic lighting",
2683
+ * quality: "high",
2684
+ * size: "1024x1024"
2685
+ * });
2686
+ *
2687
+ * // Background replacement
2688
+ * const { data } = await blink.ai.modifyImage({
2689
+ * images: ["https://storage.example.com/product.jpg"],
2690
+ * prompt: "Remove background and place on clean white studio background",
2691
+ * background: "transparent",
2692
+ * n: 2
2693
+ * });
2694
+ *
2695
+ * // Batch processing multiple photos
2696
+ * const userPhotos = [
2697
+ * "https://storage.example.com/photo1.jpg",
2698
+ * "https://storage.example.com/photo2.jpg",
2699
+ * "https://storage.example.com/photo3.jpg"
2700
+ * ];
2701
+ * const { data } = await blink.ai.modifyImage({
2702
+ * images: userPhotos,
2703
+ * prompt: "Convert to black and white vintage style photographs",
2704
+ * quality: "high"
2705
+ * });
2706
+ * ```
2707
+ *
2708
+ * @returns Promise<ImageGenerationResponse> - Object containing:
2709
+ * - `data`: Array of modified images with URLs
2710
+ * - `created`: Timestamp of generation
2711
+ * - `usage`: Token usage information
2712
+ */
2713
2713
  async modifyImage(options) {
2714
2714
  try {
2715
2715
  if (!options.prompt) {
package/dist/index.mjs CHANGED
@@ -2558,47 +2558,47 @@ var BlinkAIImpl = class {
2558
2558
  }
2559
2559
  }
2560
2560
  /**
2561
- * Generates images from text descriptions using AI.
2562
- *
2563
- * @param options - Object containing:
2564
- * - `prompt`: Text description of the desired image (required)
2565
- * - `size`: Image dimensions (default: "1024x1024")
2566
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
2567
- * - `n`: Number of images to generate (default: 1)
2568
- * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2569
- * - Plus optional signal parameter
2570
- *
2571
- * @example
2572
- * ```ts
2573
- * // Basic image generation
2574
- * const { data } = await blink.ai.generateImage({
2575
- * prompt: "A serene landscape with mountains and a lake at sunset"
2576
- * });
2577
- * console.log("Image URL:", data[0].url);
2578
- *
2579
- * // High-quality image with specific size
2580
- * const { data } = await blink.ai.generateImage({
2581
- * prompt: "A futuristic city skyline with flying cars",
2582
- * size: "1536x1024",
2583
- * quality: "hd",
2584
- * background: "transparent"
2585
- * });
2586
- *
2587
- * // Multiple images
2588
- * const { data } = await blink.ai.generateImage({
2589
- * prompt: "A cute robot mascot for a tech company",
2590
- * n: 3,
2591
- * size: "1024x1024",
2592
- * quality: "hd"
2593
- * });
2594
- * data.forEach((img, i) => console.log(`Image ${i+1}:`, img.url));
2595
- * ```
2596
- *
2597
- * @returns Promise<ImageGenerationResponse> - Object containing:
2598
- * - `data`: Array of generated images with URLs
2599
- * - `created`: Timestamp of generation
2600
- * - `usage`: Token usage information
2601
- */
2561
+ * Generates images from text descriptions using AI.
2562
+ *
2563
+ * @param options - Object containing:
2564
+ * - `prompt`: Text description of the desired image (required)
2565
+ * - `size`: Image dimensions (default: "1024x1024")
2566
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
2567
+ * - `n`: Number of images to generate (default: 1)
2568
+ * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2569
+ * - Plus optional signal parameter
2570
+ *
2571
+ * @example
2572
+ * ```ts
2573
+ * // Basic image generation
2574
+ * const { data } = await blink.ai.generateImage({
2575
+ * prompt: "A serene landscape with mountains and a lake at sunset"
2576
+ * });
2577
+ * console.log("Image URL:", data[0].url);
2578
+ *
2579
+ * // High-quality image with specific size
2580
+ * const { data } = await blink.ai.generateImage({
2581
+ * prompt: "A futuristic city skyline with flying cars",
2582
+ * size: "1536x1024",
2583
+ * quality: "high",
2584
+ * background: "transparent"
2585
+ * });
2586
+ *
2587
+ * // Multiple images
2588
+ * const { data } = await blink.ai.generateImage({
2589
+ * prompt: "A cute robot mascot for a tech company",
2590
+ * n: 3,
2591
+ * size: "1024x1024",
2592
+ * quality: "high"
2593
+ * });
2594
+ * data.forEach((img, i) => console.log(`Image ${i+1}:`, img.url));
2595
+ * ```
2596
+ *
2597
+ * @returns Promise<ImageGenerationResponse> - Object containing:
2598
+ * - `data`: Array of generated images with URLs
2599
+ * - `created`: Timestamp of generation
2600
+ * - `usage`: Token usage information
2601
+ */
2602
2602
  async generateImage(options) {
2603
2603
  try {
2604
2604
  if (!options.prompt) {
@@ -2649,65 +2649,65 @@ var BlinkAIImpl = class {
2649
2649
  }
2650
2650
  }
2651
2651
  /**
2652
- * Modifies existing images using AI with text prompts for image-to-image editing.
2653
- *
2654
- * @param options - Object containing:
2655
- * - `images`: Array of public image URLs to modify (required, up to 16 images)
2656
- * - `prompt`: Text description of desired modifications (required)
2657
- * - `size`: Output image dimensions (default: "auto")
2658
- * - `quality`: Image quality ("standard" or "hd", default: "standard")
2659
- * - `n`: Number of output images to generate (default: 1)
2660
- * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2661
- * - Plus optional signal parameter
2662
- *
2663
- * @example
2664
- * ```ts
2665
- * // Professional headshots from casual photos
2666
- * const { data } = await blink.ai.modifyImage({
2667
- * images: [
2668
- * "https://storage.example.com/user-photo-1.jpg",
2669
- * "https://storage.example.com/user-photo-2.jpg"
2670
- * ],
2671
- * prompt: "Transform into professional business headshots with studio lighting",
2672
- * quality: "hd",
2673
- * n: 4
2674
- * });
2675
- * data.forEach((img, i) => console.log(`Headshot ${i+1}:`, img.url));
2676
- *
2677
- * // Artistic style transformation
2678
- * const { data } = await blink.ai.modifyImage({
2679
- * images: ["https://storage.example.com/portrait.jpg"],
2680
- * prompt: "Transform into oil painting style with dramatic lighting",
2681
- * quality: "hd",
2682
- * size: "1024x1024"
2683
- * });
2684
- *
2685
- * // Background replacement
2686
- * const { data } = await blink.ai.modifyImage({
2687
- * images: ["https://storage.example.com/product.jpg"],
2688
- * prompt: "Remove background and place on clean white studio background",
2689
- * background: "transparent",
2690
- * n: 2
2691
- * });
2692
- *
2693
- * // Batch processing multiple photos
2694
- * const userPhotos = [
2695
- * "https://storage.example.com/photo1.jpg",
2696
- * "https://storage.example.com/photo2.jpg",
2697
- * "https://storage.example.com/photo3.jpg"
2698
- * ];
2699
- * const { data } = await blink.ai.modifyImage({
2700
- * images: userPhotos,
2701
- * prompt: "Convert to black and white vintage style photographs",
2702
- * quality: "hd"
2703
- * });
2704
- * ```
2705
- *
2706
- * @returns Promise<ImageGenerationResponse> - Object containing:
2707
- * - `data`: Array of modified images with URLs
2708
- * - `created`: Timestamp of generation
2709
- * - `usage`: Token usage information
2710
- */
2652
+ * Modifies existing images using AI with text prompts for image-to-image editing.
2653
+ *
2654
+ * @param options - Object containing:
2655
+ * - `images`: Array of public image URLs to modify (required, up to 16 images)
2656
+ * - `prompt`: Text description of desired modifications (required)
2657
+ * - `size`: Output image dimensions (default: "auto")
2658
+ * - `quality`: Image quality ("auto", "low", "medium", or "high", default: "auto")
2659
+ * - `n`: Number of output images to generate (default: 1)
2660
+ * - `background`: Background handling ("auto", "transparent", "opaque", default: "auto")
2661
+ * - Plus optional signal parameter
2662
+ *
2663
+ * @example
2664
+ * ```ts
2665
+ * // Professional headshots from casual photos
2666
+ * const { data } = await blink.ai.modifyImage({
2667
+ * images: [
2668
+ * "https://storage.example.com/user-photo-1.jpg",
2669
+ * "https://storage.example.com/user-photo-2.jpg"
2670
+ * ],
2671
+ * prompt: "Transform into professional business headshots with studio lighting",
2672
+ * quality: "high",
2673
+ * n: 4
2674
+ * });
2675
+ * data.forEach((img, i) => console.log(`Headshot ${i+1}:`, img.url));
2676
+ *
2677
+ * // Artistic style transformation
2678
+ * const { data } = await blink.ai.modifyImage({
2679
+ * images: ["https://storage.example.com/portrait.jpg"],
2680
+ * prompt: "Transform into oil painting style with dramatic lighting",
2681
+ * quality: "high",
2682
+ * size: "1024x1024"
2683
+ * });
2684
+ *
2685
+ * // Background replacement
2686
+ * const { data } = await blink.ai.modifyImage({
2687
+ * images: ["https://storage.example.com/product.jpg"],
2688
+ * prompt: "Remove background and place on clean white studio background",
2689
+ * background: "transparent",
2690
+ * n: 2
2691
+ * });
2692
+ *
2693
+ * // Batch processing multiple photos
2694
+ * const userPhotos = [
2695
+ * "https://storage.example.com/photo1.jpg",
2696
+ * "https://storage.example.com/photo2.jpg",
2697
+ * "https://storage.example.com/photo3.jpg"
2698
+ * ];
2699
+ * const { data } = await blink.ai.modifyImage({
2700
+ * images: userPhotos,
2701
+ * prompt: "Convert to black and white vintage style photographs",
2702
+ * quality: "high"
2703
+ * });
2704
+ * ```
2705
+ *
2706
+ * @returns Promise<ImageGenerationResponse> - Object containing:
2707
+ * - `data`: Array of modified images with URLs
2708
+ * - `created`: Timestamp of generation
2709
+ * - `usage`: Token usage information
2710
+ */
2711
2711
  async modifyImage(options) {
2712
2712
  try {
2713
2713
  if (!options.prompt) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blinkdotnew/sdk",
3
- "version": "0.17.1",
3
+ "version": "0.17.2",
4
4
  "description": "Blink TypeScript SDK for client-side applications - Zero-boilerplate CRUD + auth + AI + analytics + notifications for modern SaaS/AI apps",
5
5
  "keywords": [
6
6
  "blink",