@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 +0 -1
- package/README.md +4 -2
- package/dist/.tsbuildinfo +1 -1
- package/dist/browser.esm.js +531 -47
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js +1 -1
- package/dist/browser.umd.js.map +1 -1
- package/dist/index.cjs +531 -47
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +343 -42
- package/dist/index.esm.js +531 -47
- package/dist/index.esm.js.map +1 -1
- package/dist/node.cjs +531 -47
- package/dist/node.cjs.map +1 -1
- package/dist/node.esm.js +531 -47
- package/dist/node.esm.js.map +1 -1
- package/package.json +1 -1
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
|
[](https://opensource.org/licenses/MIT)
|
|
5
5
|
[](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
|
-
|
|
203
|
+
taxonomy_id: 123,
|
|
202
204
|
limit: 25
|
|
203
205
|
});
|
|
204
206
|
```
|