@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 +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
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
|
-
|
|
13294
|
+
let allRows = [];
|
|
13295
13295
|
files.forEach((file) => {
|
|
13296
13296
|
const csvText = file.getDataAsString();
|
|
13297
13297
|
const rows = FileUtils3.parseCsv(csvText);
|
|
13298
|
-
allRows.
|
|
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
|
-
|
|
13292
|
+
let allRows = [];
|
|
13293
13293
|
files.forEach((file) => {
|
|
13294
13294
|
const csvText = file.getDataAsString();
|
|
13295
13295
|
const rows = FileUtils3.parseCsv(csvText);
|
|
13296
|
-
allRows.
|
|
13296
|
+
allRows = allRows.concat(rows);
|
|
13297
13297
|
});
|
|
13298
13298
|
return allRows;
|
|
13299
13299
|
},
|