@owox/connectors 0.16.0-next-20251231124015 → 0.16.0-next-20251231152525

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/dist/index.cjs CHANGED
@@ -13291,11 +13291,11 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
13291
13291
  const response = await HttpUtils3.fetch(url);
13292
13292
  const blob = await response.getBlob();
13293
13293
  const files = FileUtils3.unzip(blob);
13294
- const allRows = [];
13294
+ let allRows = [];
13295
13295
  files.forEach((file) => {
13296
13296
  const csvText = file.getDataAsString();
13297
13297
  const rows = FileUtils3.parseCsv(csvText);
13298
- allRows.push(...rows);
13298
+ allRows = allRows.concat(rows);
13299
13299
  });
13300
13300
  return allRows;
13301
13301
  },
package/dist/index.js CHANGED
@@ -13289,11 +13289,11 @@ API Response: ${JSON.stringify(statusResult, null, 2)}`);
13289
13289
  const response = await HttpUtils3.fetch(url);
13290
13290
  const blob = await response.getBlob();
13291
13291
  const files = FileUtils3.unzip(blob);
13292
- const allRows = [];
13292
+ let allRows = [];
13293
13293
  files.forEach((file) => {
13294
13294
  const csvText = file.getDataAsString();
13295
13295
  const rows = FileUtils3.parseCsv(csvText);
13296
- allRows.push(...rows);
13296
+ allRows = allRows.concat(rows);
13297
13297
  });
13298
13298
  return allRows;
13299
13299
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@owox/connectors",
3
- "version": "0.16.0-next-20251231124015",
3
+ "version": "0.16.0-next-20251231152525",
4
4
  "description": "Connectors and storages for different data sources",
5
5
  "license": "MIT",
6
6
  "publishConfig": {