@profplum700/etsy-v3-api-client 2.4.2 → 2.4.3

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
@@ -193,7 +193,6 @@ This release transforms the client into a **comprehensive, production-ready Etsy
193
193
 
194
194
  #### **Fulfillment & Shipment Tracking**
195
195
  - `createReceiptShipment()` - Add tracking information to orders
196
- - `getShopReceiptShipments()` - Get all shipments for a receipt
197
196
 
198
197
  #### **Payment & Financial Data**
199
198
  - `getShopPaymentAccountLedgerEntries()` - Get payment ledger entries
package/README.md CHANGED
@@ -198,7 +198,7 @@ const listing = await client.getListing('listing-id');
198
198
  // Search listings
199
199
  const searchResults = await client.findAllListingsActive({
200
200
  keywords: 'vintage',
201
- category: 'art',
201
+ taxonomy_id: 123,
202
202
  limit: 25
203
203
  });
204
204
  ```