daytona-wildberries-typescript-sdk 2.0.1 → 2.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.
Files changed (47) hide show
  1. package/README.md +4 -2
  2. package/dist/cjs/index.cjs +18 -18
  3. package/dist/cjs/index.cjs.map +1 -1
  4. package/dist/esm/client/base-client.d.ts.map +1 -1
  5. package/dist/esm/client/retry-handler.d.ts.map +1 -1
  6. package/dist/esm/errors/base-error.d.ts.map +1 -1
  7. package/dist/esm/errors/promotion-errors.d.ts.map +1 -1
  8. package/dist/esm/index.d.ts +4 -4
  9. package/dist/esm/index.d.ts.map +1 -1
  10. package/dist/esm/index.js +7251 -3033
  11. package/dist/esm/index.js.map +1 -1
  12. package/dist/esm/modules/analytics/index.d.ts +457 -148
  13. package/dist/esm/modules/analytics/index.d.ts.map +1 -1
  14. package/dist/esm/modules/communications/index.d.ts +1458 -1
  15. package/dist/esm/modules/communications/index.d.ts.map +1 -1
  16. package/dist/esm/modules/finances/index.d.ts.map +1 -1
  17. package/dist/esm/modules/general/index.d.ts +13 -28
  18. package/dist/esm/modules/general/index.d.ts.map +1 -1
  19. package/dist/esm/modules/in-store-pickup/index.d.ts.map +1 -1
  20. package/dist/esm/modules/orders-fbs/index.d.ts +1070 -3
  21. package/dist/esm/modules/orders-fbs/index.d.ts.map +1 -1
  22. package/dist/esm/modules/products/index.d.ts +156 -104
  23. package/dist/esm/modules/products/index.d.ts.map +1 -1
  24. package/dist/esm/modules/promotion/index.d.ts +16 -14
  25. package/dist/esm/modules/promotion/index.d.ts.map +1 -1
  26. package/dist/esm/modules/reports/index.d.ts +154 -56
  27. package/dist/esm/modules/reports/index.d.ts.map +1 -1
  28. package/dist/esm/modules/tariffs/index.d.ts +41 -13
  29. package/dist/esm/modules/tariffs/index.d.ts.map +1 -1
  30. package/dist/esm/types/analytics.types.d.ts +625 -0
  31. package/dist/esm/types/analytics.types.d.ts.map +1 -1
  32. package/dist/esm/types/communications.types.d.ts +2476 -0
  33. package/dist/esm/types/communications.types.d.ts.map +1 -1
  34. package/dist/esm/types/general.types.d.ts +66 -0
  35. package/dist/esm/types/general.types.d.ts.map +1 -0
  36. package/dist/esm/types/orders-fbs.types.d.ts +459 -0
  37. package/dist/esm/types/orders-fbs.types.d.ts.map +1 -1
  38. package/dist/esm/types/orders-fbw.types.d.ts.map +1 -1
  39. package/dist/esm/types/products.types.d.ts +105 -0
  40. package/dist/esm/types/products.types.d.ts.map +1 -1
  41. package/dist/esm/types/promotion.types.d.ts +73 -0
  42. package/dist/esm/types/promotion.types.d.ts.map +1 -1
  43. package/dist/esm/types/reports.types.d.ts +224 -0
  44. package/dist/esm/types/reports.types.d.ts.map +1 -1
  45. package/dist/esm/types/tariffs.types.d.ts.map +1 -1
  46. package/package.json +3 -2
  47. package/README.old.md +0 -3771
package/README.md CHANGED
@@ -34,7 +34,8 @@ Transform 11 OpenAPI specifications into a production-ready SDK with complete ty
34
34
  - **🔄 Smart Retry Logic** - Exponential backoff retry mechanism for transient failures
35
35
  - **🛡️ Rich Error Handling** - Typed error hierarchy with detailed recovery guidance
36
36
  - **📦 Tree-Shakeable** - Dual ESM/CommonJS builds, import only what you need (<100KB gzipped)
37
- - **✅ Battle-Tested** - 98% test coverage with 1,584+ tests across all modules
37
+ - **✅ Battle-Tested** - 98% test coverage with 1,657 tests across all modules
38
+ - **🎯 100% API Coverage** - All 229 YAML endpoints implemented (v2.0.2)
38
39
  - **📚 Comprehensive Documentation** - Complete API reference, tutorials, and working examples in English and Russian
39
40
  - **🔧 Zero Configuration** - Works out of the box with sensible defaults, configurable for advanced use
40
41
 
@@ -162,7 +163,8 @@ This is an unofficial SDK. It is not affiliated with, officially maintained by,
162
163
  - **🔄 Умная Логика Повторов** - Экспоненциальная задержка для временных сбоев
163
164
  - **🛡️ Богатая Обработка Ошибок** - Типизированная иерархия ошибок с подробными рекомендациями
164
165
  - **📦 Tree-Shakeable** - Двойная сборка ESM/CommonJS, импортируйте только то, что нужно (<100KB gzip)
165
- - **✅ Проверено в Бою** - 98% покрытие тестами, 1,584+ тестов для всех модулей
166
+ - **✅ Проверено в Бою** - 98% покрытие тестами, 1,657 тестов для всех модулей
167
+ - **🎯 100% Покрытие API** - Все 229 эндпоинтов YAML реализованы (v2.0.2)
166
168
  - **📚 Полная Документация** - Справочник API, учебные руководства и примеры на английском и русском
167
169
  - **🔧 Без Настройки** - Работает из коробки с разумными значениями по умолчанию
168
170