daytona-wildberries-typescript-sdk 2.6.0 → 3.1.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/README.md +4 -2
- package/dist/cjs/index.cjs +16 -16
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/client/base-client.d.ts +13 -0
- package/dist/esm/client/base-client.d.ts.map +1 -1
- package/dist/esm/client/rate-limiter.d.ts +12 -0
- package/dist/esm/client/rate-limiter.d.ts.map +1 -1
- package/dist/esm/client/retry-handler.d.ts +64 -1
- package/dist/esm/client/retry-handler.d.ts.map +1 -1
- package/dist/esm/config/analytics-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/communications-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/general-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/in-store-pickup-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/index.d.ts +9 -0
- package/dist/esm/config/index.d.ts.map +1 -1
- package/dist/esm/config/operation-metadata.d.ts +214 -0
- package/dist/esm/config/operation-metadata.d.ts.map +1 -0
- package/dist/esm/config/orders-dbs-rate-limits.d.ts +3 -0
- package/dist/esm/config/orders-dbs-rate-limits.d.ts.map +1 -0
- package/dist/esm/config/orders-fbs-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/products-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/promotion-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/rate-limits.d.ts.map +1 -1
- package/dist/esm/config/reports-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/tariffs-rate-limits.d.ts.map +1 -1
- package/dist/esm/config/user-management-rate-limits.d.ts +3 -0
- package/dist/esm/config/user-management-rate-limits.d.ts.map +1 -0
- package/dist/esm/errors/auth-error.d.ts +3 -1
- package/dist/esm/errors/auth-error.d.ts.map +1 -1
- package/dist/esm/errors/base-error.d.ts +19 -1
- package/dist/esm/errors/base-error.d.ts.map +1 -1
- package/dist/esm/errors/in-store-pickup-errors.d.ts +3 -3
- package/dist/esm/errors/rate-limit-error.d.ts +3 -1
- package/dist/esm/errors/rate-limit-error.d.ts.map +1 -1
- package/dist/esm/index.d.ts +140 -28
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +10707 -3867
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/modules/analytics/index.d.ts +170 -91
- package/dist/esm/modules/analytics/index.d.ts.map +1 -1
- package/dist/esm/modules/communications/index.d.ts +179 -160
- package/dist/esm/modules/communications/index.d.ts.map +1 -1
- package/dist/esm/modules/finances/index.d.ts +59 -30
- package/dist/esm/modules/finances/index.d.ts.map +1 -1
- package/dist/esm/modules/general/index.d.ts +196 -35
- package/dist/esm/modules/general/index.d.ts.map +1 -1
- package/dist/esm/modules/in-store-pickup/index.d.ts +61 -49
- package/dist/esm/modules/in-store-pickup/index.d.ts.map +1 -1
- package/dist/esm/modules/index.d.ts +2 -0
- package/dist/esm/modules/index.d.ts.map +1 -1
- package/dist/esm/modules/orders-dbs/index.d.ts +512 -0
- package/dist/esm/modules/orders-dbs/index.d.ts.map +1 -0
- package/dist/esm/modules/orders-fbs/index.d.ts +409 -379
- package/dist/esm/modules/orders-fbs/index.d.ts.map +1 -1
- package/dist/esm/modules/orders-fbw/index.d.ts +9 -27
- package/dist/esm/modules/orders-fbw/index.d.ts.map +1 -1
- package/dist/esm/modules/products/index.d.ts +634 -250
- package/dist/esm/modules/products/index.d.ts.map +1 -1
- package/dist/esm/modules/promotion/index.d.ts +678 -454
- package/dist/esm/modules/promotion/index.d.ts.map +1 -1
- package/dist/esm/modules/reports/index.d.ts +155 -220
- package/dist/esm/modules/reports/index.d.ts.map +1 -1
- package/dist/esm/modules/tariffs/index.d.ts +52 -21
- package/dist/esm/modules/tariffs/index.d.ts.map +1 -1
- package/dist/esm/modules/user-management/index.d.ts +138 -0
- package/dist/esm/modules/user-management/index.d.ts.map +1 -0
- package/dist/esm/types/analytics.types.d.ts +412 -329
- package/dist/esm/types/analytics.types.d.ts.map +1 -1
- package/dist/esm/types/communications.types.d.ts +281 -46
- package/dist/esm/types/communications.types.d.ts.map +1 -1
- package/dist/esm/types/finances.types.d.ts +29 -22
- package/dist/esm/types/finances.types.d.ts.map +1 -1
- package/dist/esm/types/general.types.d.ts +144 -0
- package/dist/esm/types/general.types.d.ts.map +1 -1
- package/dist/esm/types/in-store-pickup.types.d.ts +12 -12
- package/dist/esm/types/in-store-pickup.types.d.ts.map +1 -1
- package/dist/esm/types/orders-dbs.types.d.ts +517 -0
- package/dist/esm/types/orders-dbs.types.d.ts.map +1 -0
- package/dist/esm/types/orders-fbs.types.d.ts +536 -144
- package/dist/esm/types/orders-fbs.types.d.ts.map +1 -1
- package/dist/esm/types/orders-fbw.types.d.ts +2 -2
- package/dist/esm/types/orders-fbw.types.d.ts.map +1 -1
- package/dist/esm/types/products.types.d.ts +263 -0
- package/dist/esm/types/products.types.d.ts.map +1 -1
- package/dist/esm/types/promotion.types.d.ts +966 -6
- package/dist/esm/types/promotion.types.d.ts.map +1 -1
- package/dist/esm/types/reports.types.d.ts +427 -24
- package/dist/esm/types/reports.types.d.ts.map +1 -1
- package/dist/esm/types/tariffs.types.d.ts +87 -2
- package/dist/esm/types/tariffs.types.d.ts.map +1 -1
- package/dist/esm/types/user-management.types.d.ts +207 -0
- package/dist/esm/types/user-management.types.d.ts.map +1 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -171,10 +171,11 @@ All 11 Wildberries API modules are fully supported with 100% API coverage:
|
|
|
171
171
|
| **Finances** | Balance, transactions, reports, payouts |
|
|
172
172
|
| **Analytics** | Sales funnel, search queries, stock history, CSV reports |
|
|
173
173
|
| **Reports** | Income reports, sales reports, data exports |
|
|
174
|
-
| **Communications** | Customer chat with real-time messaging, product Q&A, reviews and ratings management, chat previews with last messages |
|
|
174
|
+
| **Communications** | Customer chat with real-time messaging, product Q&A, reviews and ratings management, chat previews with last messages, **NEW:** pinned reviews for product cards |
|
|
175
175
|
| **Promotion** | Campaigns, promo codes, advertising ⚠️ **[Migration Required](https://salacoste.github.io/daytona-wildberries-typescript-sdk/guides/migration-v2.4-promotion-deprecation)** - 4 methods deprecated (Feb 2, 2026) |
|
|
176
176
|
| **Tariffs** | Commission rates, fee schedules |
|
|
177
177
|
| **In-Store Pickup** | Pickup point orders and management |
|
|
178
|
+
| **Orders DBS** | Delivery by Seller orders - seller handles storage AND delivery directly to customers, B2B support, product marking (SGTIN, IMEI) |
|
|
178
179
|
|
|
179
180
|
## 📄 License
|
|
180
181
|
|
|
@@ -363,10 +364,11 @@ chats.result?.forEach(chat => {
|
|
|
363
364
|
| **Finances** | Баланс, транзакции, отчеты, выплаты |
|
|
364
365
|
| **Analytics** | Воронка продаж, поисковые запросы, история запасов, CSV отчеты |
|
|
365
366
|
| **Reports** | Отчеты о доходах, отчеты о продажах, экспорт данных |
|
|
366
|
-
| **Communications** | Чат с клиентами в реальном времени, вопросы-ответы по товарам, управление отзывами и рейтингами, предпросмотр чатов с последними
|
|
367
|
+
| **Communications** | Чат с клиентами в реальном времени, вопросы-ответы по товарам, управление отзывами и рейтингами, предпросмотр чатов с последними сообщениями, **НОВОЕ:** закрепление отзывов на карточках товаров |
|
|
367
368
|
| **Promotion** | Кампании, промокоды, реклама ⚠️ **[Требуется Миграция](https://salacoste.github.io/daytona-wildberries-typescript-sdk/guides/migration-v2.4-promotion-deprecation)** - 4 метода устарели (2 февраля 2026) |
|
|
368
369
|
| **Tariffs** | Ставки комиссий, тарифные планы |
|
|
369
370
|
| **In-Store Pickup** | Заказы с самовывозом и управление |
|
|
371
|
+
| **Orders DBS** | Заказы DBS (Доставка Продавцом) - продавец хранит и доставляет товар напрямую покупателю, поддержка B2B, маркировка (SGTIN, IMEI) |
|
|
370
372
|
|
|
371
373
|
## 📄 Лицензия
|
|
372
374
|
|