@lovrabet/sdk 1.1.23 → 1.1.26

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 CHANGED
@@ -631,6 +631,32 @@ const client = createClient({ token });
631
631
 
632
632
  ## 📝 What's New
633
633
 
634
+ ### v1.1.24 (2025-12-03)
635
+
636
+ **新增功能 (New Features):**
637
+
638
+ - ✨ **Excel 导出功能** - 新增 `excelExport()` 方法,支持将数据集导出为 Excel 文件
639
+
640
+ ```typescript
641
+ // 导出所有数据
642
+ const fileUrl = await client.models.users.excelExport();
643
+ window.open(fileUrl, '_blank');
644
+
645
+ // 按条件筛选导出
646
+ const fileUrl = await client.models.users.excelExport({
647
+ status: 'active',
648
+ createTime: '2025-01-01'
649
+ });
650
+ ```
651
+
652
+ **核心特性:**
653
+ - 返回可下载的文件 URL(OSS 地址)
654
+ - 支持传递筛选条件(`ListParams`)
655
+ - 直接使用 `window.open()` 打开下载
656
+ - 仅 **WebAPI 模式**支持,OpenAPI 模式不支持
657
+
658
+ ---
659
+
634
660
  ### v1.1.22 (2025-11-21)
635
661
 
636
662
  **新增功能 (New Features):**