@merkl/api 0.10.145 → 0.10.146

Sign up to get free protection for your applications and to get access to all the features.
@@ -7,7 +7,6 @@ export const StatusController = new Elysia({ prefix: "/campaign-status", detail:
7
7
  // ─── Update a Campaign Status ──────────────────────────────────────
8
8
  .put("/engine/:campaignId", async ({ params, body }) => {
9
9
  const [distributionChain, campaignId] = params.campaignId.split("-");
10
- console.log({ distributionChain: +distributionChain, campaignId });
11
10
  return await StatusService.update({ distributionChain: +distributionChain, campaignId }, body);
12
11
  }, {
13
12
  beforeHandle: EngineGuard,