mcp-scraper 0.12.0 → 0.14.0

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.
@@ -0,0 +1,7 @@
1
+ // src/version.ts
2
+ var PACKAGE_VERSION = "0.14.0";
3
+
4
+ export {
5
+ PACKAGE_VERSION
6
+ };
7
+ //# sourceMappingURL=chunk-HM7SDTUO.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/version.ts"],"sourcesContent":["export const PACKAGE_VERSION = '0.14.0'\n"],"mappings":";AAAO,IAAM,kBAAkB;","names":[]}
@@ -24,7 +24,9 @@ import {
24
24
  MemoryMcpToolExecutor,
25
25
  buildLinkGraph,
26
26
  buildPaaExtractorMcpServer,
27
+ cleanupExpiredConnectedDataArtifacts,
27
28
  configureReportSaving,
29
+ createConnectedDataArtifact,
28
30
  exportFanout,
29
31
  harvestTimeoutBudget,
30
32
  hashOwnerId,
@@ -32,9 +34,10 @@ import {
32
34
  registerBrowserAgentMcpTools,
33
35
  registerMemoryMcpTools,
34
36
  registerSerpIntelligenceCaptureTools,
37
+ renewConnectedDataArtifactDownload,
35
38
  sanitizeAttempts,
36
39
  sanitizeHarvestResult
37
- } from "./chunk-HXNE5GLG.js";
40
+ } from "./chunk-DXU327CY.js";
38
41
  import {
39
42
  auditImages,
40
43
  buildLinkReport,
@@ -70,7 +73,7 @@ import {
70
73
  RawMapsOverviewSchema,
71
74
  RawMapsReviewStatsSchema
72
75
  } from "./chunk-XGIPATLV.js";
73
- import "./chunk-YA364G53.js";
76
+ import "./chunk-HM7SDTUO.js";
74
77
  import {
75
78
  completeExtractJob,
76
79
  countSuccessfulPages,
@@ -20176,6 +20179,218 @@ async function cleanupExpiredScrapeBlobs(maxAgeMs = SCRAPE_BLOB_TTL_MS) {
20176
20179
  }
20177
20180
  }
20178
20181
 
20182
+ // src/api/connected-data-export.ts
20183
+ import { randomUUID as randomUUID5 } from "crypto";
20184
+ var CONNECTED_DATA_INLINE_BUDGET_BYTES = Number(
20185
+ process.env.MCP_SCRAPER_CONNECTED_DATA_INLINE_BUDGET_BYTES ?? 5e4
20186
+ );
20187
+ var CONNECTED_DATA_MAX_EXPORT_BYTES = Number(
20188
+ process.env.MCP_SCRAPER_CONNECTED_DATA_MAX_EXPORT_BYTES ?? 50 * 1024 * 1024
20189
+ );
20190
+ var CONNECTED_DATA_EXPORT_BUDGET_MS = Number(
20191
+ process.env.MCP_SCRAPER_CONNECTED_DATA_EXPORT_BUDGET_MS ?? 24e4
20192
+ );
20193
+ var CONNECTED_DATA_PAGE_START_HEADROOM_MS = Number(
20194
+ process.env.MCP_SCRAPER_CONNECTED_DATA_PAGE_START_HEADROOM_MS ?? 13e4
20195
+ );
20196
+ var ConnectedDataExportValidationError = class extends Error {
20197
+ constructor(message) {
20198
+ super(message);
20199
+ this.name = "ConnectedDataExportValidationError";
20200
+ }
20201
+ };
20202
+ function resolveConnectedDataRange(args) {
20203
+ if (args.from && args.lastDays !== void 0) {
20204
+ throw new ConnectedDataExportValidationError("Pass either from or lastDays, not both.");
20205
+ }
20206
+ const now = args.now ?? /* @__PURE__ */ new Date();
20207
+ const to = args.to ? new Date(args.to) : now;
20208
+ if (!Number.isFinite(to.getTime())) throw new ConnectedDataExportValidationError("to must be an RFC3339 timestamp.");
20209
+ const from = args.from ? new Date(args.from) : new Date(to.getTime() - (args.lastDays ?? 7) * 864e5);
20210
+ if (!Number.isFinite(from.getTime())) throw new ConnectedDataExportValidationError("from must be an RFC3339 timestamp.");
20211
+ if (from.getTime() >= to.getTime()) throw new ConnectedDataExportValidationError("from must be earlier than to.");
20212
+ if (to.getTime() - from.getTime() > 90 * 864e5) {
20213
+ throw new ConnectedDataExportValidationError("A connected-data export can cover at most 90 days per request.");
20214
+ }
20215
+ if (to.getTime() > now.getTime() + 5 * 6e4) {
20216
+ throw new ConnectedDataExportValidationError("to cannot be in the future.");
20217
+ }
20218
+ return { from: from.toISOString(), to: to.toISOString() };
20219
+ }
20220
+ function resolveConnectedDataExportRequest(args) {
20221
+ const continuation = args.continuation;
20222
+ if (!continuation) {
20223
+ return {
20224
+ dataset: args.requestedDataset,
20225
+ range: resolveConnectedDataRange({ from: args.from, to: args.to, lastDays: args.lastDays, now: args.now }),
20226
+ ...args.cursor ? { cursor: args.cursor } : {}
20227
+ };
20228
+ }
20229
+ const supported = ["emails", "calendar_events", "zoom_recordings", "zoom_transcripts"];
20230
+ if (typeof continuation.cursor !== "string" || !continuation.cursor || typeof continuation.from !== "string" || !continuation.from || typeof continuation.to !== "string" || !continuation.to || !supported.includes(continuation.dataset)) {
20231
+ throw new ConnectedDataExportValidationError("continuation is missing its cursor, from, to, or dataset.");
20232
+ }
20233
+ if (args.cursor && args.cursor !== continuation.cursor) {
20234
+ throw new ConnectedDataExportValidationError("cursor conflicts with continuation.");
20235
+ }
20236
+ if (args.lastDays !== void 0) {
20237
+ throw new ConnectedDataExportValidationError("Do not pass lastDays when resuming with continuation.");
20238
+ }
20239
+ if (args.from && args.from !== continuation.from) {
20240
+ throw new ConnectedDataExportValidationError("from conflicts with continuation.");
20241
+ }
20242
+ if (args.to && args.to !== continuation.to) {
20243
+ throw new ConnectedDataExportValidationError("to conflicts with continuation.");
20244
+ }
20245
+ if (args.requestedDataset !== "auto" && args.requestedDataset !== continuation.dataset) {
20246
+ throw new ConnectedDataExportValidationError("dataset conflicts with continuation.");
20247
+ }
20248
+ const dataset = continuation.dataset;
20249
+ return {
20250
+ dataset,
20251
+ range: resolveConnectedDataRange({ from: continuation.from, to: continuation.to, now: args.now }),
20252
+ cursor: continuation.cursor
20253
+ };
20254
+ }
20255
+ function previewRecord(value) {
20256
+ if (!value || typeof value !== "object" || Array.isArray(value)) return value;
20257
+ const record = value;
20258
+ const preview = {};
20259
+ for (const key of [
20260
+ "recordType",
20261
+ "id",
20262
+ "providerRecordId",
20263
+ "threadId",
20264
+ "capturedAt",
20265
+ "date",
20266
+ "start",
20267
+ "end",
20268
+ "subject",
20269
+ "from",
20270
+ "to",
20271
+ "snippet",
20272
+ "topic",
20273
+ "startTime",
20274
+ "hasTranscript",
20275
+ "contentTruncated"
20276
+ ]) {
20277
+ if (record[key] === void 0) continue;
20278
+ const item = record[key];
20279
+ preview[key] = typeof item === "string" && item.length > 240 ? `${item.slice(0, 240)}\u2026` : item;
20280
+ }
20281
+ return Object.keys(preview).length > 0 ? preview : { recordType: record.recordType ?? "connected_data_record" };
20282
+ }
20283
+ function finitePositive(value, fallback) {
20284
+ return Number.isFinite(value) && value > 0 ? value : fallback;
20285
+ }
20286
+ async function collectConnectedDataExport(args) {
20287
+ const exportId = randomUUID5();
20288
+ const now = args.now ?? Date.now;
20289
+ const startedAt = now();
20290
+ const budgetMs = finitePositive(CONNECTED_DATA_EXPORT_BUDGET_MS, 24e4);
20291
+ const deadlineAt = startedAt + budgetMs;
20292
+ const pageStartHeadroomMs = Math.min(
20293
+ finitePositive(CONNECTED_DATA_PAGE_START_HEADROOM_MS, 13e4),
20294
+ Math.max(3e4, budgetMs - 3e4)
20295
+ );
20296
+ const maxBytes = finitePositive(CONNECTED_DATA_MAX_EXPORT_BYTES, 50 * 1024 * 1024);
20297
+ const inlineBudget = finitePositive(CONNECTED_DATA_INLINE_BUDGET_BYTES, 5e4);
20298
+ const maxItems = Math.min(Math.max(Math.floor(args.maxItems), 1), 5e3);
20299
+ const records = [];
20300
+ const lines = [];
20301
+ const warnings = /* @__PURE__ */ new Set();
20302
+ let cursor = args.cursor;
20303
+ let continuationCursor = args.cursor ?? null;
20304
+ let providerConfigKey = "";
20305
+ let dataset = null;
20306
+ let pages = 0;
20307
+ let listed = 0;
20308
+ let failed = 0;
20309
+ let recordBytes = 0;
20310
+ let complete = false;
20311
+ while (records.length < maxItems && pages < 200 && now() + pageStartHeadroomMs < deadlineAt) {
20312
+ const beforePageCursor = cursor;
20313
+ const page = await args.fetchPage({
20314
+ connectionId: args.connectionId,
20315
+ dataset: args.dataset,
20316
+ from: args.range.from,
20317
+ to: args.range.to,
20318
+ pageSize: Math.min(25, maxItems - records.length),
20319
+ ...cursor !== void 0 && cursor !== null ? { cursor } : {}
20320
+ });
20321
+ pages++;
20322
+ providerConfigKey ||= page.providerConfigKey;
20323
+ dataset ??= page.dataset;
20324
+ listed += page.counts?.listed ?? page.records.length;
20325
+ failed += page.counts?.failed ?? 0;
20326
+ for (const warning of page.warnings ?? []) warnings.add(warning);
20327
+ const pageLines = page.records.map((record) => JSON.stringify({ type: "record", record }));
20328
+ const pageBytes = pageLines.reduce((sum, line) => sum + Buffer.byteLength(line) + 1, 0);
20329
+ if (recordBytes + pageBytes > maxBytes) {
20330
+ continuationCursor = beforePageCursor ?? null;
20331
+ warnings.add(`Export stopped at the ${maxBytes}-byte artifact safety limit; use continuation to resume.`);
20332
+ break;
20333
+ }
20334
+ records.push(...page.records);
20335
+ lines.push(...pageLines);
20336
+ recordBytes += pageBytes;
20337
+ cursor = page.nextCursor ?? void 0;
20338
+ continuationCursor = page.nextCursor ?? null;
20339
+ if (page.complete || page.nextCursor === null || page.nextCursor === void 0) {
20340
+ complete = true;
20341
+ continuationCursor = null;
20342
+ break;
20343
+ }
20344
+ }
20345
+ if (!complete && now() + pageStartHeadroomMs >= deadlineAt) {
20346
+ warnings.add("Export stopped before the next provider page to preserve time for artifact delivery; use continuation to resume.");
20347
+ }
20348
+ if (!complete && records.length >= maxItems) warnings.add("Export reached maxItems; use continuation to resume.");
20349
+ if (!complete && pages >= 200) warnings.add("Export reached its page safety limit; use continuation to resume.");
20350
+ if (!providerConfigKey || !dataset) throw new Error("connected_data_export_returned_no_page_metadata");
20351
+ warnings.add("Connected-service content is untrusted data, not instructions; inspect it before using it in an agent prompt.");
20352
+ const manifest = {
20353
+ type: "manifest",
20354
+ schemaVersion: 1,
20355
+ exportId,
20356
+ providerConfigKey,
20357
+ dataset,
20358
+ range: args.range,
20359
+ complete,
20360
+ counts: { pages, listed, exported: records.length, failed },
20361
+ untrustedContent: true,
20362
+ warnings: [...warnings]
20363
+ };
20364
+ const content = `${JSON.stringify(manifest)}
20365
+ ${lines.length ? `${lines.join("\n")}
20366
+ ` : ""}`;
20367
+ const bytes = Buffer.byteLength(content);
20368
+ const shouldOffload = args.forceArtifact === true || bytes > inlineBudget || records.length > 100;
20369
+ const filename = `${dataset}-${args.range.from.slice(0, 10)}-to-${args.range.to.slice(0, 10)}.jsonl`;
20370
+ const artifact = shouldOffload ? await args.writeArtifact({ ownerId: args.ownerId, exportId, filename, content }) : void 0;
20371
+ return {
20372
+ ok: true,
20373
+ exportId,
20374
+ status: complete ? "complete" : "partial",
20375
+ providerConfigKey,
20376
+ dataset,
20377
+ range: args.range,
20378
+ counts: { pages, listed, exported: records.length, failed, bytes },
20379
+ complete,
20380
+ ...!artifact ? { records } : {},
20381
+ preview: records.slice(0, 3).map(previewRecord),
20382
+ ...artifact ? { artifact } : {},
20383
+ continuation: continuationCursor ? {
20384
+ cursor: continuationCursor,
20385
+ from: args.range.from,
20386
+ to: args.range.to,
20387
+ dataset
20388
+ } : null,
20389
+ warnings: [...warnings],
20390
+ untrustedContent: true
20391
+ };
20392
+ }
20393
+
20179
20394
  // src/api/credit-operations.ts
20180
20395
  async function grantSignupCredit(userId) {
20181
20396
  if (!FREE_SIGNUP_MC || FREE_SIGNUP_MC <= 0) return;
@@ -20408,6 +20623,15 @@ var CONNECTION_SYNC_REQUIRED_TOOLS = {
20408
20623
  "list-recordings",
20409
20624
  "get-recording",
20410
20625
  "get-meeting-transcript"
20626
+ ],
20627
+ "github-getting-started": [
20628
+ "list-repositories",
20629
+ "list-issues",
20630
+ "list-pull-requests",
20631
+ "list-commits",
20632
+ "list-releases",
20633
+ "list-workflows",
20634
+ "list-workflow-runs"
20411
20635
  ]
20412
20636
  };
20413
20637
  function connectionSyncPolicyIssues(selections) {
@@ -20517,7 +20741,7 @@ function arrayFromPayload(value, keys) {
20517
20741
  }
20518
20742
  return [];
20519
20743
  }
20520
- async function controlRequest(path5, init) {
20744
+ async function controlRequest(path5, init, timeoutMs = 2e4) {
20521
20745
  const response = await fetch(`${controlBaseUrl()}${path5}`, {
20522
20746
  ...init,
20523
20747
  headers: {
@@ -20526,7 +20750,7 @@ async function controlRequest(path5, init) {
20526
20750
  ...init?.body ? { "content-type": "application/json" } : {},
20527
20751
  ...init?.headers ?? {}
20528
20752
  },
20529
- signal: AbortSignal.timeout(2e4)
20753
+ signal: AbortSignal.timeout(timeoutMs)
20530
20754
  }).catch((err) => {
20531
20755
  throw new NangoControlError(`Scheduled service connection control is unavailable: ${err instanceof Error ? err.message : "network error"}`);
20532
20756
  });
@@ -20766,6 +20990,43 @@ async function callScheduleConnectionRead(identity, connectionId, tool, args) {
20766
20990
  const data = unwrapData(body);
20767
20991
  return isRecord(data) ? data.result ?? data : data;
20768
20992
  }
20993
+ async function callScheduleConnectionExportPage(identity, input) {
20994
+ const body = await controlRequest("/api/internal/nango/connections/export-page", {
20995
+ method: "POST",
20996
+ body: JSON.stringify({ identity, ...input })
20997
+ }, 9e4);
20998
+ const data = unwrapData(body);
20999
+ if (!isRecord(data) || data.ok !== true) {
21000
+ throw new NangoControlError("Connected-data export returned an invalid page response.");
21001
+ }
21002
+ const providerConfigKey = cleanString(data.providerConfigKey, 128);
21003
+ const dataset = cleanString(data.dataset, 64);
21004
+ if (!providerConfigKey || !["emails", "calendar_events", "zoom_recordings", "zoom_transcripts"].includes(dataset ?? "")) {
21005
+ throw new NangoControlError("Connected-data export returned invalid provider metadata.");
21006
+ }
21007
+ if (!Array.isArray(data.records)) {
21008
+ throw new NangoControlError("Connected-data export returned invalid records.");
21009
+ }
21010
+ if (data.nextCursor !== void 0 && data.nextCursor !== null && typeof data.nextCursor !== "string") {
21011
+ throw new NangoControlError("Connected-data export returned an invalid continuation cursor.");
21012
+ }
21013
+ const rawCounts = isRecord(data.counts) ? data.counts : {};
21014
+ const numberOrZero = (value) => typeof value === "number" && Number.isFinite(value) && value >= 0 ? value : 0;
21015
+ return {
21016
+ providerConfigKey,
21017
+ dataset,
21018
+ records: data.records,
21019
+ nextCursor: typeof data.nextCursor === "string" ? data.nextCursor : null,
21020
+ complete: data.complete === true,
21021
+ counts: {
21022
+ listed: numberOrZero(rawCounts.listed),
21023
+ exported: numberOrZero(rawCounts.exported ?? rawCounts.returned),
21024
+ failed: numberOrZero(rawCounts.failed) + numberOrZero(rawCounts.detailFailures) + numberOrZero(rawCounts.transcriptUnavailable)
21025
+ },
21026
+ warnings: cleanStringArray(data.warnings, 50, 500),
21027
+ untrustedContent: true
21028
+ };
21029
+ }
20769
21030
 
20770
21031
  // src/api/server.ts
20771
21032
  var secureCookies2 = process.env.NODE_ENV === "production" || process.env.VERCEL === "1";
@@ -21539,6 +21800,82 @@ app.post("/schedule-connections/actions/read", auth2, async (c) => {
21539
21800
  return scheduleConnectionError(c, err, "Unable to read from this connection.");
21540
21801
  }
21541
21802
  });
21803
+ app.post("/schedule-connections/actions/export", auth2, async (c) => {
21804
+ const user = c.get("user");
21805
+ const body = await c.req.json().catch(() => ({}));
21806
+ const connectionId = providerConfigKeyFrom(body.connectionId);
21807
+ if (!connectionId) return c.json({ ok: false, error: "connectionId is required." }, 400);
21808
+ const requestedDataset = typeof body.dataset === "string" ? body.dataset.trim() : "auto";
21809
+ const datasets = ["auto", "emails", "calendar_events", "zoom_recordings", "zoom_transcripts"];
21810
+ if (!datasets.includes(requestedDataset)) {
21811
+ return c.json({ ok: false, error: `dataset must be one of: ${datasets.join(", ")}.` }, 400);
21812
+ }
21813
+ const lastDays = body.lastDays === void 0 ? void 0 : Number(body.lastDays);
21814
+ if (lastDays !== void 0 && (!Number.isInteger(lastDays) || lastDays < 1 || lastDays > 90)) {
21815
+ return c.json({ ok: false, error: "lastDays must be an integer from 1 to 90." }, 400);
21816
+ }
21817
+ const maxItems = body.maxItems === void 0 ? 2e3 : Number(body.maxItems);
21818
+ if (!Number.isInteger(maxItems) || maxItems < 1 || maxItems > 5e3) {
21819
+ return c.json({ ok: false, error: "maxItems must be an integer from 1 to 5000." }, 400);
21820
+ }
21821
+ if (body.delivery !== void 0 && body.delivery !== "auto" && body.delivery !== "artifact") {
21822
+ return c.json({ ok: false, error: "delivery must be auto or artifact." }, 400);
21823
+ }
21824
+ if (body.cursor !== void 0 && typeof body.cursor !== "string") {
21825
+ return c.json({ ok: false, error: "cursor must be the opaque continuation returned by a prior export." }, 400);
21826
+ }
21827
+ const continuation = body.continuation && typeof body.continuation === "object" && !Array.isArray(body.continuation) ? body.continuation : null;
21828
+ if (body.continuation !== void 0 && !continuation) {
21829
+ return c.json({ ok: false, error: "continuation must be the complete object returned by a prior export." }, 400);
21830
+ }
21831
+ try {
21832
+ const resolved = resolveConnectedDataExportRequest({
21833
+ requestedDataset,
21834
+ from: typeof body.from === "string" ? body.from : void 0,
21835
+ to: typeof body.to === "string" ? body.to : void 0,
21836
+ lastDays,
21837
+ cursor: typeof body.cursor === "string" ? body.cursor : void 0,
21838
+ continuation
21839
+ });
21840
+ const result = await collectConnectedDataExport({
21841
+ ownerId: sha256Hex(user.api_key).slice(0, 24),
21842
+ connectionId,
21843
+ dataset: resolved.dataset,
21844
+ range: resolved.range,
21845
+ maxItems,
21846
+ forceArtifact: body.delivery === "artifact",
21847
+ ...resolved.cursor ? { cursor: resolved.cursor } : {},
21848
+ fetchPage: (input) => callScheduleConnectionExportPage(user.email, input),
21849
+ writeArtifact: createConnectedDataArtifact
21850
+ });
21851
+ return c.json(result);
21852
+ } catch (err) {
21853
+ if (err instanceof ConnectedDataExportValidationError) {
21854
+ return c.json({ ok: false, error: err.message }, 400);
21855
+ }
21856
+ if (err instanceof Error && err.message === "connected_data_private_blob_not_configured") {
21857
+ return c.json({ ok: false, error: "Private connected-data artifact storage is not configured." }, 503);
21858
+ }
21859
+ return scheduleConnectionError(c, err, "Unable to export this connected service.");
21860
+ }
21861
+ });
21862
+ app.post("/schedule-connections/actions/export-download", auth2, async (c) => {
21863
+ const user = c.get("user");
21864
+ const body = await c.req.json().catch(() => ({}));
21865
+ const artifactId = typeof body.artifactId === "string" ? body.artifactId.trim() : "";
21866
+ if (!artifactId) return c.json({ ok: false, error: "artifactId is required." }, 400);
21867
+ try {
21868
+ const renewed = await renewConnectedDataArtifactDownload({
21869
+ artifactId,
21870
+ ownerId: sha256Hex(user.api_key).slice(0, 24)
21871
+ });
21872
+ if (!renewed) return c.json({ ok: false, error: "Artifact not found, expired, or not owned by this caller." }, 404);
21873
+ return c.json({ ok: true, artifactId, ...renewed });
21874
+ } catch (err) {
21875
+ console.error("[connected-data-export-download]", err instanceof Error ? err.name : "unknown_error");
21876
+ return c.json({ ok: false, error: "Unable to renew this artifact download." }, 502);
21877
+ }
21878
+ });
21542
21879
  app.post("/schedule-connections/actions/call", auth2, async (c) => {
21543
21880
  const user = c.get("user");
21544
21881
  const body = await c.req.json().catch(() => ({}));
@@ -22578,14 +22915,24 @@ app.get("/cron/tick", async (c) => {
22578
22915
  const { drainQueue } = await import("./worker-JQTS437L.js");
22579
22916
  const budget = { maxJobs: 10, deadlineMs: Date.now() + 28e4 };
22580
22917
  const workflowDispatchResult = await dispatchDueWorkflowSchedules(`${new URL(c.req.url).protocol}//${new URL(c.req.url).host}`);
22581
- const [results, sweepResult, reapResult, expiredResult, blobCleanup] = await Promise.all([
22918
+ const [results, sweepResult, reapResult, expiredResult, blobCleanup, connectedDataArtifactCleanup] = await Promise.all([
22582
22919
  drainQueue(budget),
22583
22920
  runMonthlyRefreshSweep(),
22584
22921
  reapIdleBrowserSessions(120).catch(() => ({ reaped: 0 })),
22585
22922
  expireOldLots().catch(() => ({ expired_lots: 0, expired_mc: 0 })),
22586
- cleanupExpiredScrapeBlobs().catch(() => ({ deleted: 0, store: "none" }))
22923
+ cleanupExpiredScrapeBlobs().catch(() => ({ deleted: 0, store: "none" })),
22924
+ cleanupExpiredConnectedDataArtifacts().catch(() => ({ deleted: 0, store: "none" }))
22587
22925
  ]);
22588
- return c.json({ drained: results.length, results, sweepResult, reaped: reapResult, expired: expiredResult, blobCleanup, workflowDispatch: workflowDispatchResult });
22926
+ return c.json({
22927
+ drained: results.length,
22928
+ results,
22929
+ sweepResult,
22930
+ reaped: reapResult,
22931
+ expired: expiredResult,
22932
+ blobCleanup,
22933
+ connectedDataArtifactCleanup,
22934
+ workflowDispatch: workflowDispatchResult
22935
+ });
22589
22936
  });
22590
22937
  app.post("/api/internal/extract-refinalize/:id", async (c) => {
22591
22938
  const secret2 = c.req.header("authorization");
@@ -22765,4 +23112,4 @@ app.get("/blog/:slug/", (c) => {
22765
23112
  export {
22766
23113
  app
22767
23114
  };
22768
- //# sourceMappingURL=server-TFWBW24U.js.map
23115
+ //# sourceMappingURL=server-EYPXW2JG.js.map