orchestrated 0.1.25 → 0.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/index.js +2 -2
- package/index.js.map +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -114153,7 +114153,7 @@ class BatchClient {
|
|
|
114153
114153
|
}
|
|
114154
114154
|
async initialize(name, checksum, dataSourceType, maxAgeDays = 3) {
|
|
114155
114155
|
this.metadata = { name, checksum };
|
|
114156
|
-
const batches = await this.listBatches(
|
|
114156
|
+
const batches = await this.listBatches(2);
|
|
114157
114157
|
const maxAgeMs = maxAgeDays * 24 * 60 * 60 * 1000;
|
|
114158
114158
|
const cutoff = Date.now() - maxAgeMs;
|
|
114159
114159
|
const matchingBatches = batches.filter((batch) => {
|
|
@@ -116025,4 +116025,4 @@ export {
|
|
|
116025
116025
|
Behavioral
|
|
116026
116026
|
};
|
|
116027
116027
|
|
|
116028
|
-
//# debugId=
|
|
116028
|
+
//# debugId=CEDE73347EF05D7564756E2164756E21
|