@profplum700/etsy-v3-api-client 2.5.2 → 2.5.4
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 +21 -12
- package/README.md +128 -128
- package/dist/.tsbuildinfo +1 -1
- package/dist/browser.esm.js +45 -24
- 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 +48 -25
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.esm.js +48 -26
- package/dist/index.esm.js.map +1 -1
- package/dist/node.cjs +48 -25
- package/dist/node.cjs.map +1 -1
- package/dist/node.esm.js +48 -26
- package/dist/node.esm.js.map +1 -1
- package/package.json +1 -1
- package/dist/index.js +0 -8517
- package/dist/index.js.map +0 -1
- package/dist/index.umd.js +0 -1180
- package/dist/index.umd.js.map +0 -1
- package/dist/index.umd.min.js +0 -2
- package/dist/index.umd.min.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,17 +5,26 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
-
## [Unreleased]
|
|
9
|
-
|
|
10
|
-
### Fixed
|
|
11
|
-
- **@profplum700/etsy-nextjs**: Fixed "createContext is not a function" build error in Next.js API routes
|
|
12
|
-
- **BREAKING**: Main entry point (`@profplum700/etsy-nextjs`) now exports only server-side code
|
|
13
|
-
- Client-side exports (`EtsyNextClientProvider`, `useEtsyNextClient`) must be imported from `@profplum700/etsy-nextjs/client`
|
|
14
|
-
- This prevents React Context code from being bundled with API routes during Next.js build
|
|
15
|
-
- Server imports from both `@profplum700/etsy-nextjs` and `@profplum700/etsy-nextjs/server` work identically
|
|
16
|
-
- See MIGRATION.md for upgrade instructions
|
|
17
|
-
|
|
18
|
-
## [2.
|
|
8
|
+
## [Unreleased]
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **@profplum700/etsy-nextjs**: Fixed "createContext is not a function" build error in Next.js API routes
|
|
12
|
+
- **BREAKING**: Main entry point (`@profplum700/etsy-nextjs`) now exports only server-side code
|
|
13
|
+
- Client-side exports (`EtsyNextClientProvider`, `useEtsyNextClient`) must be imported from `@profplum700/etsy-nextjs/client`
|
|
14
|
+
- This prevents React Context code from being bundled with API routes during Next.js build
|
|
15
|
+
- Server imports from both `@profplum700/etsy-nextjs` and `@profplum700/etsy-nextjs/server` work identically
|
|
16
|
+
- See MIGRATION.md for upgrade instructions
|
|
17
|
+
|
|
18
|
+
## [2.5.4] - 2026-03-31
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
- Restored the original flexible payload typing in `EtsyWebhookHandler.parseEvent()` so webhook parsing continues to accept existing object payloads without over-constraining the input.
|
|
22
|
+
- Corrected the default Etsy API rate-limiting assumptions to Etsy's actual documented limits: `5` requests per second and `5,000` requests per day.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- Prepared a synchronized patch release across the root package and workspace packages so the published versions stay aligned again.
|
|
26
|
+
|
|
27
|
+
## [2.3.1] - 2025-11-07
|
|
19
28
|
|
|
20
29
|
### Fixed
|
|
21
30
|
- **@profplum700/etsy-react**: replaced `@testing-library/react-hooks` with `@testing-library/react` in tests to remove stale React 16/17 peer dependency warnings.
|
|
@@ -331,7 +340,7 @@ await client.createReceiptShipment(shopId, receiptId, {
|
|
|
331
340
|
- Initial beta release of the Etsy API v3 client
|
|
332
341
|
- OAuth 2.0 authentication with PKCE flow support
|
|
333
342
|
- Complete TypeScript definitions for all API responses
|
|
334
|
-
- Rate limiting with respect to Etsy's API limits (
|
|
343
|
+
- Rate limiting with respect to Etsy's API limits (5,000/day, 5/second)
|
|
335
344
|
- Automatic token refresh with configurable storage
|
|
336
345
|
- Response caching for GET requests
|
|
337
346
|
- Support for all major Etsy API v3 endpoints:
|
package/README.md
CHANGED
|
@@ -4,9 +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.
|
|
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`).
|
|
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`).
|
|
10
10
|
|
|
11
11
|
## 🚀 Features
|
|
12
12
|
|
|
@@ -172,7 +172,7 @@ const client = new EtsyClient({
|
|
|
172
172
|
// Optional configuration
|
|
173
173
|
rateLimiting: {
|
|
174
174
|
enabled: true,
|
|
175
|
-
maxRequestsPerSecond:
|
|
175
|
+
maxRequestsPerSecond: 5,
|
|
176
176
|
maxRequestsPerDay: 5000
|
|
177
177
|
},
|
|
178
178
|
caching: {
|
|
@@ -198,11 +198,11 @@ const listings = await client.getListingsByShop('shop-id');
|
|
|
198
198
|
const listing = await client.getListing('listing-id');
|
|
199
199
|
|
|
200
200
|
// Search listings
|
|
201
|
-
const searchResults = await client.findAllListingsActive({
|
|
202
|
-
keywords: 'vintage',
|
|
203
|
-
taxonomy_id: 123,
|
|
204
|
-
limit: 25
|
|
205
|
-
});
|
|
201
|
+
const searchResults = await client.findAllListingsActive({
|
|
202
|
+
keywords: 'vintage',
|
|
203
|
+
taxonomy_id: 123,
|
|
204
|
+
limit: 25
|
|
205
|
+
});
|
|
206
206
|
```
|
|
207
207
|
|
|
208
208
|
### Error Handling
|
|
@@ -292,9 +292,9 @@ const client = new EtsyClient({
|
|
|
292
292
|
// ... other config
|
|
293
293
|
rateLimiting: {
|
|
294
294
|
enabled: true,
|
|
295
|
-
maxRequestsPerSecond:
|
|
296
|
-
maxRequestsPerDay: 5000, // Requests per day
|
|
297
|
-
minRequestInterval:
|
|
295
|
+
maxRequestsPerSecond: 5, // Requests per second (Etsy's limit)
|
|
296
|
+
maxRequestsPerDay: 5000, // Requests per day (Etsy's limit)
|
|
297
|
+
minRequestInterval: 200 // Minimum ms between requests (1000 / 5 QPS)
|
|
298
298
|
}
|
|
299
299
|
});
|
|
300
300
|
|
|
@@ -356,121 +356,121 @@ The package provides optimized builds for different environments:
|
|
|
356
356
|
- `getShop(shopId)` - Get shop details
|
|
357
357
|
- `getShopByOwnerUserId(userId)` - Get shop by owner user ID
|
|
358
358
|
|
|
359
|
-
#### Listing Methods
|
|
360
|
-
- `getListing(listingId)` - Get listing details
|
|
361
|
-
- `getListingsByShop(shopId, options?)` - Get shop's listings
|
|
362
|
-
- `findAllListingsActive(options?)` - Search active listings
|
|
363
|
-
|
|
364
|
-
#### Listing Management Endpoint Support
|
|
365
|
-
| Category | Endpoint | Supported |
|
|
366
|
-
| --- | --- | --- |
|
|
367
|
-
| BuyerTaxonomy | getBuyerTaxonomyNodes | Yes |
|
|
368
|
-
| BuyerTaxonomy | getPropertiesByBuyerTaxonomyId | No |
|
|
369
|
-
| SellerTaxonomy | getSellerTaxonomyNodes | Yes |
|
|
370
|
-
| SellerTaxonomy | getPropertiesByTaxonomyId | Yes |
|
|
371
|
-
| ShopListing | createDraftListing | Yes |
|
|
372
|
-
| ShopListing | getListingsByShop | Yes |
|
|
373
|
-
| ShopListing | deleteListing | Yes |
|
|
374
|
-
| ShopListing | getListing | Yes |
|
|
375
|
-
| ShopListing | findAllListingsActive | Yes |
|
|
376
|
-
| ShopListing | findAllActiveListingsByShop | No |
|
|
377
|
-
| ShopListing | getListingsByListingIds | No |
|
|
378
|
-
| ShopListing | getFeaturedListingsByShop | No |
|
|
379
|
-
| ShopListing | deleteListingProperty | No |
|
|
380
|
-
| ShopListing | updateListingProperty | Yes |
|
|
381
|
-
| ShopListing | getListingProperty | No |
|
|
382
|
-
| ShopListing | getListingProperties | Yes |
|
|
383
|
-
| ShopListing | updateListing | Yes |
|
|
384
|
-
| ShopListing | getListingsByShopReceipt | No |
|
|
385
|
-
| ShopListing | getListingsByShopReturnPolicy | No |
|
|
386
|
-
| ShopListing | getListingsByShopSectionId | No |
|
|
387
|
-
| ShopListing File | deleteListingFile | No |
|
|
388
|
-
| ShopListing File | getListingFile | No |
|
|
389
|
-
| ShopListing File | getAllListingFiles | No |
|
|
390
|
-
| ShopListing File | uploadListingFile | No |
|
|
391
|
-
| ShopListing Image | deleteListingImage | Yes |
|
|
392
|
-
| ShopListing Image | getListingImage | Yes |
|
|
393
|
-
| ShopListing Image | getListingImages | Yes |
|
|
394
|
-
| ShopListing Image | uploadListingImage | Yes |
|
|
395
|
-
| ShopListing Inventory | getListingInventory | Yes |
|
|
396
|
-
| ShopListing Inventory | updateListingInventory | Yes |
|
|
397
|
-
| ShopListing Offering | getListingOffering | No |
|
|
398
|
-
| ShopListing Product | getListingProduct | No |
|
|
399
|
-
| ShopListing Translation | createListingTranslation | No |
|
|
400
|
-
| ShopListing Translation | getListingTranslation | No |
|
|
401
|
-
| ShopListing Translation | updateListingTranslation | No |
|
|
402
|
-
| ShopListing VariationImage | getListingVariationImages | No |
|
|
403
|
-
| ShopListing VariationImage | updateVariationImages | No |
|
|
404
|
-
| ShopListing Video | deleteListingVideo | No |
|
|
405
|
-
| ShopListing Video | getListingVideo | No |
|
|
406
|
-
| ShopListing Video | getListingVideos | No |
|
|
407
|
-
| ShopListing Video | uploadListingVideo | No |
|
|
408
|
-
| Other | ping | No |
|
|
409
|
-
| Other | tokenScopes | No |
|
|
410
|
-
| Ledger Entry | getShopPaymentAccountLedgerEntry | Yes |
|
|
411
|
-
| Ledger Entry | getShopPaymentAccountLedgerEntries | Yes |
|
|
412
|
-
| Payment | getShopPaymentByReceiptId | No |
|
|
413
|
-
| Payment | getPaymentAccountLedgerEntry | No |
|
|
414
|
-
| Payment | getPayments | No |
|
|
415
|
-
| Shop Receipt | getShopReceipt | Yes |
|
|
416
|
-
| Shop Receipt | updateShopReceipt | Yes |
|
|
417
|
-
| Shop Receipt | getShopReceipts | Yes |
|
|
418
|
-
| Shop Receipt | searchAllShopReceipts | No |
|
|
419
|
-
| Shop Receipt Transactions | getShopReceiptTransaction | Yes |
|
|
420
|
-
| Shop Receipt Transactions | getShopReceiptTransactionsByListing | No |
|
|
421
|
-
| Shop Receipt Transactions | getShopReceiptTransactionsByReceipt | Yes |
|
|
422
|
-
| Shop Receipt Transactions | getShopReceiptTransactionsByShop | No |
|
|
423
|
-
| Review | getReviewsByListing | Yes |
|
|
424
|
-
| Review | getReviewsByShop | Yes |
|
|
425
|
-
| Shop HolidayPreferences | getShopHolidayPreferences | No |
|
|
426
|
-
| Shop HolidayPreferences | updateShopHolidayPreferences | No |
|
|
427
|
-
| Shop ProcessingProfiles | createShopShippingProfileUpgrade | No |
|
|
428
|
-
| Shop ProcessingProfiles | getShopShippingProfileUpgrades | Yes |
|
|
429
|
-
| Shop ProcessingProfiles | deleteShopShippingProfileUpgrade | No |
|
|
430
|
-
| Shop ProcessingProfiles | getShopShippingProfileUpgrade | No |
|
|
431
|
-
| Shop ProcessingProfiles | updateShopShippingProfileUpgrade | No |
|
|
432
|
-
| Shop ShippingProfile | getShippingCarriers | No |
|
|
433
|
-
| Shop ShippingProfile | createShopShippingProfile | Yes |
|
|
434
|
-
| Shop ShippingProfile | getShopShippingProfiles | Yes |
|
|
435
|
-
| Shop ShippingProfile | deleteShopShippingProfile | Yes |
|
|
436
|
-
| Shop ShippingProfile | getShopShippingProfile | Yes |
|
|
437
|
-
| Shop ShippingProfile | updateShopShippingProfile | Yes |
|
|
438
|
-
| Shop ShippingProfile | createShopShippingProfileDestination | Yes |
|
|
439
|
-
| Shop ShippingProfile | getShopShippingProfileDestinationsByShippingProfile | Yes |
|
|
440
|
-
| Shop ShippingProfile | deleteShopShippingProfileDestination | Yes |
|
|
441
|
-
| Shop ShippingProfile | updateShopShippingProfileDestination | Yes |
|
|
442
|
-
| Shop ShippingProfile | createShopShippingProfileUpgrade | No |
|
|
443
|
-
| Shop ShippingProfile | getShopShippingProfileUpgrades | Yes |
|
|
444
|
-
| Shop ShippingProfile | deleteShopShippingProfileUpgrade | No |
|
|
445
|
-
| Shop ShippingProfile | updateShopShippingProfileUpgrade | No |
|
|
446
|
-
| Shop | getShop | Yes |
|
|
447
|
-
| Shop | updateShop | Yes |
|
|
448
|
-
| Shop | getShopByOwnerUserId | Yes |
|
|
449
|
-
| Shop | findShops | No |
|
|
450
|
-
| Shop ProductionPartner | getShopProductionPartners | Yes |
|
|
451
|
-
| Shop Section | createShopSection | Yes |
|
|
452
|
-
| Shop Section | getShopSections | Yes |
|
|
453
|
-
| Shop Section | deleteShopSection | Yes |
|
|
454
|
-
| Shop Section | getShopSection | Yes |
|
|
455
|
-
| Shop Section | updateShopSection | Yes |
|
|
456
|
-
| Shop Return Policy | consolidateShopReturnPolicies | No |
|
|
457
|
-
| Shop Return Policy | createShopReturnPolicy | No |
|
|
458
|
-
| Shop Return Policy | getShopReturnPolicies | No |
|
|
459
|
-
| Shop Return Policy | deleteShopReturnPolicy | No |
|
|
460
|
-
| Shop Return Policy | getShopReturnPolicy | No |
|
|
461
|
-
| Shop Return Policy | updateShopReturnPolicy | No |
|
|
462
|
-
| User | getUser | Yes |
|
|
463
|
-
| User | getMe | No |
|
|
464
|
-
| UserAddress | deleteUserAddress | No |
|
|
465
|
-
| UserAddress | getUserAddress | No |
|
|
466
|
-
| UserAddress | getUserAddresses | No |
|
|
467
|
-
|
|
468
|
-
#### Review Methods
|
|
469
|
-
- `getReviewsByListing(listingId, options?)` - Get reviews for a listing
|
|
470
|
-
- `getReviewsByShop(shopId, options?)` - Get reviews for a shop
|
|
471
|
-
|
|
472
|
-
#### Search Methods
|
|
473
|
-
- `findAllListingsActive(params)` - Search listings with filters
|
|
359
|
+
#### Listing Methods
|
|
360
|
+
- `getListing(listingId)` - Get listing details
|
|
361
|
+
- `getListingsByShop(shopId, options?)` - Get shop's listings
|
|
362
|
+
- `findAllListingsActive(options?)` - Search active listings
|
|
363
|
+
|
|
364
|
+
#### Listing Management Endpoint Support
|
|
365
|
+
| Category | Endpoint | Supported |
|
|
366
|
+
| --- | --- | --- |
|
|
367
|
+
| BuyerTaxonomy | getBuyerTaxonomyNodes | Yes |
|
|
368
|
+
| BuyerTaxonomy | getPropertiesByBuyerTaxonomyId | No |
|
|
369
|
+
| SellerTaxonomy | getSellerTaxonomyNodes | Yes |
|
|
370
|
+
| SellerTaxonomy | getPropertiesByTaxonomyId | Yes |
|
|
371
|
+
| ShopListing | createDraftListing | Yes |
|
|
372
|
+
| ShopListing | getListingsByShop | Yes |
|
|
373
|
+
| ShopListing | deleteListing | Yes |
|
|
374
|
+
| ShopListing | getListing | Yes |
|
|
375
|
+
| ShopListing | findAllListingsActive | Yes |
|
|
376
|
+
| ShopListing | findAllActiveListingsByShop | No |
|
|
377
|
+
| ShopListing | getListingsByListingIds | No |
|
|
378
|
+
| ShopListing | getFeaturedListingsByShop | No |
|
|
379
|
+
| ShopListing | deleteListingProperty | No |
|
|
380
|
+
| ShopListing | updateListingProperty | Yes |
|
|
381
|
+
| ShopListing | getListingProperty | No |
|
|
382
|
+
| ShopListing | getListingProperties | Yes |
|
|
383
|
+
| ShopListing | updateListing | Yes |
|
|
384
|
+
| ShopListing | getListingsByShopReceipt | No |
|
|
385
|
+
| ShopListing | getListingsByShopReturnPolicy | No |
|
|
386
|
+
| ShopListing | getListingsByShopSectionId | No |
|
|
387
|
+
| ShopListing File | deleteListingFile | No |
|
|
388
|
+
| ShopListing File | getListingFile | No |
|
|
389
|
+
| ShopListing File | getAllListingFiles | No |
|
|
390
|
+
| ShopListing File | uploadListingFile | No |
|
|
391
|
+
| ShopListing Image | deleteListingImage | Yes |
|
|
392
|
+
| ShopListing Image | getListingImage | Yes |
|
|
393
|
+
| ShopListing Image | getListingImages | Yes |
|
|
394
|
+
| ShopListing Image | uploadListingImage | Yes |
|
|
395
|
+
| ShopListing Inventory | getListingInventory | Yes |
|
|
396
|
+
| ShopListing Inventory | updateListingInventory | Yes |
|
|
397
|
+
| ShopListing Offering | getListingOffering | No |
|
|
398
|
+
| ShopListing Product | getListingProduct | No |
|
|
399
|
+
| ShopListing Translation | createListingTranslation | No |
|
|
400
|
+
| ShopListing Translation | getListingTranslation | No |
|
|
401
|
+
| ShopListing Translation | updateListingTranslation | No |
|
|
402
|
+
| ShopListing VariationImage | getListingVariationImages | No |
|
|
403
|
+
| ShopListing VariationImage | updateVariationImages | No |
|
|
404
|
+
| ShopListing Video | deleteListingVideo | No |
|
|
405
|
+
| ShopListing Video | getListingVideo | No |
|
|
406
|
+
| ShopListing Video | getListingVideos | No |
|
|
407
|
+
| ShopListing Video | uploadListingVideo | No |
|
|
408
|
+
| Other | ping | No |
|
|
409
|
+
| Other | tokenScopes | No |
|
|
410
|
+
| Ledger Entry | getShopPaymentAccountLedgerEntry | Yes |
|
|
411
|
+
| Ledger Entry | getShopPaymentAccountLedgerEntries | Yes |
|
|
412
|
+
| Payment | getShopPaymentByReceiptId | No |
|
|
413
|
+
| Payment | getPaymentAccountLedgerEntry | No |
|
|
414
|
+
| Payment | getPayments | No |
|
|
415
|
+
| Shop Receipt | getShopReceipt | Yes |
|
|
416
|
+
| Shop Receipt | updateShopReceipt | Yes |
|
|
417
|
+
| Shop Receipt | getShopReceipts | Yes |
|
|
418
|
+
| Shop Receipt | searchAllShopReceipts | No |
|
|
419
|
+
| Shop Receipt Transactions | getShopReceiptTransaction | Yes |
|
|
420
|
+
| Shop Receipt Transactions | getShopReceiptTransactionsByListing | No |
|
|
421
|
+
| Shop Receipt Transactions | getShopReceiptTransactionsByReceipt | Yes |
|
|
422
|
+
| Shop Receipt Transactions | getShopReceiptTransactionsByShop | No |
|
|
423
|
+
| Review | getReviewsByListing | Yes |
|
|
424
|
+
| Review | getReviewsByShop | Yes |
|
|
425
|
+
| Shop HolidayPreferences | getShopHolidayPreferences | No |
|
|
426
|
+
| Shop HolidayPreferences | updateShopHolidayPreferences | No |
|
|
427
|
+
| Shop ProcessingProfiles | createShopShippingProfileUpgrade | No |
|
|
428
|
+
| Shop ProcessingProfiles | getShopShippingProfileUpgrades | Yes |
|
|
429
|
+
| Shop ProcessingProfiles | deleteShopShippingProfileUpgrade | No |
|
|
430
|
+
| Shop ProcessingProfiles | getShopShippingProfileUpgrade | No |
|
|
431
|
+
| Shop ProcessingProfiles | updateShopShippingProfileUpgrade | No |
|
|
432
|
+
| Shop ShippingProfile | getShippingCarriers | No |
|
|
433
|
+
| Shop ShippingProfile | createShopShippingProfile | Yes |
|
|
434
|
+
| Shop ShippingProfile | getShopShippingProfiles | Yes |
|
|
435
|
+
| Shop ShippingProfile | deleteShopShippingProfile | Yes |
|
|
436
|
+
| Shop ShippingProfile | getShopShippingProfile | Yes |
|
|
437
|
+
| Shop ShippingProfile | updateShopShippingProfile | Yes |
|
|
438
|
+
| Shop ShippingProfile | createShopShippingProfileDestination | Yes |
|
|
439
|
+
| Shop ShippingProfile | getShopShippingProfileDestinationsByShippingProfile | Yes |
|
|
440
|
+
| Shop ShippingProfile | deleteShopShippingProfileDestination | Yes |
|
|
441
|
+
| Shop ShippingProfile | updateShopShippingProfileDestination | Yes |
|
|
442
|
+
| Shop ShippingProfile | createShopShippingProfileUpgrade | No |
|
|
443
|
+
| Shop ShippingProfile | getShopShippingProfileUpgrades | Yes |
|
|
444
|
+
| Shop ShippingProfile | deleteShopShippingProfileUpgrade | No |
|
|
445
|
+
| Shop ShippingProfile | updateShopShippingProfileUpgrade | No |
|
|
446
|
+
| Shop | getShop | Yes |
|
|
447
|
+
| Shop | updateShop | Yes |
|
|
448
|
+
| Shop | getShopByOwnerUserId | Yes |
|
|
449
|
+
| Shop | findShops | No |
|
|
450
|
+
| Shop ProductionPartner | getShopProductionPartners | Yes |
|
|
451
|
+
| Shop Section | createShopSection | Yes |
|
|
452
|
+
| Shop Section | getShopSections | Yes |
|
|
453
|
+
| Shop Section | deleteShopSection | Yes |
|
|
454
|
+
| Shop Section | getShopSection | Yes |
|
|
455
|
+
| Shop Section | updateShopSection | Yes |
|
|
456
|
+
| Shop Return Policy | consolidateShopReturnPolicies | No |
|
|
457
|
+
| Shop Return Policy | createShopReturnPolicy | No |
|
|
458
|
+
| Shop Return Policy | getShopReturnPolicies | No |
|
|
459
|
+
| Shop Return Policy | deleteShopReturnPolicy | No |
|
|
460
|
+
| Shop Return Policy | getShopReturnPolicy | No |
|
|
461
|
+
| Shop Return Policy | updateShopReturnPolicy | No |
|
|
462
|
+
| User | getUser | Yes |
|
|
463
|
+
| User | getMe | No |
|
|
464
|
+
| UserAddress | deleteUserAddress | No |
|
|
465
|
+
| UserAddress | getUserAddress | No |
|
|
466
|
+
| UserAddress | getUserAddresses | No |
|
|
467
|
+
|
|
468
|
+
#### Review Methods
|
|
469
|
+
- `getReviewsByListing(listingId, options?)` - Get reviews for a listing
|
|
470
|
+
- `getReviewsByShop(shopId, options?)` - Get reviews for a shop
|
|
471
|
+
|
|
472
|
+
#### Search Methods
|
|
473
|
+
- `findAllListingsActive(params)` - Search listings with filters
|
|
474
474
|
|
|
475
475
|
### AuthHelper Methods
|
|
476
476
|
- `getAuthUrl()` - Generate authorization URL
|
|
@@ -832,4 +832,4 @@ If you have questions or need help:
|
|
|
832
832
|
|
|
833
833
|
## 🏷️ Changelog
|
|
834
834
|
|
|
835
|
-
See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|
|
835
|
+
See [CHANGELOG.md](CHANGELOG.md) for version history and release notes.
|