Skip to content
This repository has been archived by the owner on Feb 6, 2024. It is now read-only.

Commit

Permalink
fix: the FNSKU prop is optional when SKU does not exist
Browse files Browse the repository at this point in the history
  • Loading branch information
moltar committed May 11, 2021
1 parent 358cfb9 commit d093ff9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sections/fulfillment-inventory.ts
Expand Up @@ -57,7 +57,7 @@ const InventorySupplyDetail = Codec.interface({

const InventorySupply = Codec.interface({
SellerSKU: optional(SKU),
FNSKU: SKU,
FNSKU: optional(SKU),
ASIN: optional(ASIN),
Condition: optional(enumeration(InventoryCondition)),
TotalSupplyQuantity: number,
Expand Down

0 comments on commit d093ff9

Please sign in to comment.