From 18f8b4647dcd933d08c6743f91a524e9bfb19421 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Thu, 27 Mar 2025 21:25:30 +0100 Subject: [PATCH] Show the packe type (Tape&Reel, Box, etc.) as footprint in digikey provider search --- src/Services/InfoProviderSystem/Providers/DigikeyProvider.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Services/InfoProviderSystem/Providers/DigikeyProvider.php b/src/Services/InfoProviderSystem/Providers/DigikeyProvider.php index 7134fb78..1eb2a219 100644 --- a/src/Services/InfoProviderSystem/Providers/DigikeyProvider.php +++ b/src/Services/InfoProviderSystem/Providers/DigikeyProvider.php @@ -139,6 +139,7 @@ class DigikeyProvider implements InfoProviderInterface preview_image_url: $product['PhotoUrl'] ?? null, manufacturing_status: $this->productStatusToManufacturingStatus($product['ProductStatus']['Id']), provider_url: $product['ProductUrl'], + footprint: $variation['PackageType']['Name'], //Use the footprint field, to show the user the package type (Tape & Reel, etc., as digikey has many different package types) ); } }