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

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
@@ -4,7 +4,9 @@
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
  [![TypeScript](https://img.shields.io/badge/%3C%2F%3E-TypeScript-%230074c1.svg)](http://www.typescriptlang.org/)
6
6
 
7
- A modern, universal TypeScript/JavaScript client for the Etsy Open API v3 with full OAuth 2.0 PKCE authentication support. Works seamlessly in both browser and Node.js environments.
7
+ A modern, universal TypeScript/JavaScript client for the Etsy Open API v3 with full OAuth 2.0 PKCE authentication support. Works seamlessly in both browser and Node.js environments.
8
+
9
+ This repository is heavily based on the official Etsy OpenAPI specification (`https://www.etsy.com/openapi/generated/oas/3.0.0.json`), as referenced in Etsy's API documentation (`https://developers.etsy.com/documentation/reference`).
8
10
 
9
11
  ## 🚀 Features
10
12
 
@@ -198,7 +200,7 @@ const listing = await client.getListing('listing-id');
198
200
  // Search listings
199
201
  const searchResults = await client.findAllListingsActive({
200
202
  keywords: 'vintage',
201
- category: 'art',
203
+ taxonomy_id: 123,
202
204
  limit: 25
203
205
  });
204
206
  ```