@indigoai-us/hq-cloud 6.15.43 → 6.15.44

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.
@@ -363,6 +363,9 @@ function setupFetchMock() {
363
363
  if (urlStr.includes("/sts/vend")) {
364
364
  return { ok: true, status: 200, json: async () => mockVendResponse, text: async () => "" };
365
365
  }
366
+ if (urlStr.includes("/v1/files/tombstones")) {
367
+ return { ok: true, status: 200, json: async () => ({ tombstones: [] }), text: async () => "" };
368
+ }
366
369
  return { ok: false, status: 404, text: async () => "Not found" };
367
370
  });
368
371
  vi.stubGlobal("fetch", fetchMock);