daytona-wildberries-typescript-sdk 3.10.0 → 3.10.2
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 +8 -0
- package/dist/cjs/index.cjs +9 -9
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.d.ts.map +1 -1
- package/dist/esm/index.js +391 -350
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/modules/orders-dbs/index.d.ts +4 -1
- package/dist/esm/modules/orders-dbs/index.d.ts.map +1 -1
- package/dist/esm/types/orders-dbs.types.d.ts +21 -0
- package/dist/esm/types/orders-dbs.types.d.ts.map +1 -1
- package/dist/esm/types/orders-fbs.types.d.ts +20 -0
- package/dist/esm/types/orders-fbs.types.d.ts.map +1 -1
- package/dist/esm/types/products.types.d.ts +33 -0
- package/dist/esm/types/products.types.d.ts.map +1 -1
- package/dist/esm/utils/validateMergedCardVariants.d.ts +30 -6
- package/dist/esm/utils/validateMergedCardVariants.d.ts.map +1 -1
- package/dist/esm/utils/validateRequiredCharacteristics.d.ts +25 -3
- package/dist/esm/utils/validateRequiredCharacteristics.d.ts.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,6 +41,10 @@ Transform 11 OpenAPI specifications into a production-ready SDK with 14 modules,
|
|
|
41
41
|
- **💰 Finance v1 Reports** - Sales Reports and Acquiring Reports with `parseMoneyAmount()` helper and field union types for autocomplete
|
|
42
42
|
- **🔔 Deprecation Utilities** - `warnOnce()` and `resetDeprecationWarnings()` for clean migration workflows
|
|
43
43
|
|
|
44
|
+
## What's New (v3.10.2 hotfix)
|
|
45
|
+
|
|
46
|
+
🔧 **Bug fix**: `validateRequiredCharacteristics` and `validateMergedCardVariants` now correctly handle `existNamedField:true` characteristics (brand, height, length, etc.). See CHANGELOG v3.10.2 for migration details.
|
|
47
|
+
|
|
44
48
|
## What's New (v3.10.0) — May 2026
|
|
45
49
|
|
|
46
50
|
🆕 **`sdk.returns` aggregator module** — single source of truth for return analytics. Combines FBO + FBS + Finance sources via `Promise.allSettled` with srid-based deduplication and per-source telemetry. Three methods:
|
|
@@ -279,6 +283,10 @@ This is an unofficial SDK. It is not affiliated with, officially maintained by,
|
|
|
279
283
|
- **💰 Финансовые Отчеты v1** - Отчеты о продажах и эквайринге с хелпером `parseMoneyAmount()` и union-типами полей для автодополнения
|
|
280
284
|
- **🔔 Утилиты Для Устаревших Методов** - `warnOnce()` и `resetDeprecationWarnings()` для удобной миграции
|
|
281
285
|
|
|
286
|
+
## Что нового (v3.10.2 hotfix)
|
|
287
|
+
|
|
288
|
+
🔧 **Исправление**: `validateRequiredCharacteristics` и `validateMergedCardVariants` теперь корректно обрабатывают характеристики с `existNamedField:true` (бренд, высота, длина и т.д.). Подробности миграции — в CHANGELOG v3.10.2.
|
|
289
|
+
|
|
282
290
|
## Что Нового (v3.10.0) — Май 2026
|
|
283
291
|
|
|
284
292
|
🆕 **Агрегаторный модуль `sdk.returns`** — единый источник истины для аналитики возвратов. Объединяет источники FBO + FBS + Finance через `Promise.allSettled` с дедупликацией по srid и телеметрией по каждому источнику. Три метода:
|