@merkl/api 0.10.409 → 0.10.410

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.
@@ -16,7 +16,7 @@ const gcsClient = new S3Client({
16
16
  endpoint: process.env.GCS_ENDPOINT,
17
17
  bucket: `merkl-rewards-lake-${process.env.ENV}`,
18
18
  });
19
- const file = gcsClient.file(process.env.FILENAME);
19
+ const file = gcsClient.file(`pendings/${process.env.FILENAME}`);
20
20
  const failedBatches = [];
21
21
  // ─── Extract ─────────────────────────────────────────────────────────────────
22
22
  const extract = async () => {
@@ -196,7 +196,7 @@ export const main = async () => {
196
196
  process.exit(1);
197
197
  }
198
198
  if (failedBatches.length === 0) {
199
- await file.delete();
199
+ // await file.delete();
200
200
  log.info("Object deleted");
201
201
  }
202
202
  };