kaafil-js 0.6.0 → 0.6.2

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.
@@ -1761,7 +1761,8 @@ function parseRetryAfterSeconds(headerValue) {
1761
1761
  return Number.isFinite(seconds) && seconds >= 0 ? seconds : void 0;
1762
1762
  }
1763
1763
  function attachMeta(data, meta, facets) {
1764
- const withMeta = Object.assign(data, { meta });
1764
+ const base = data === void 0 || data === null ? {} : data;
1765
+ const withMeta = Object.assign(base, { meta });
1765
1766
  return facets === void 0 ? withMeta : Object.assign(withMeta, { facets });
1766
1767
  }
1767
1768
  function describeCrossOriginSuspect(url) {
@@ -1825,6 +1826,18 @@ function sendOnce(ctx, request, idempotencyKey) {
1825
1826
  return sendOnceWith(ctx, request, idempotencyKey, async (response, status, requestId) => {
1826
1827
  const text = await response.text();
1827
1828
  const body = text.length > 0 ? tryParseJson(text) : void 0;
1829
+ if (body === void 0 && status >= 200 && status < 300) {
1830
+ const serverDate = response.headers.get("date");
1831
+ return {
1832
+ data: void 0,
1833
+ meta: {
1834
+ status,
1835
+ requestId,
1836
+ ...serverDate === null ? {} : { serverTime: new Date(serverDate).toISOString() }
1837
+ },
1838
+ facets: void 0
1839
+ };
1840
+ }
1828
1841
  if (!isSuccessEnvelope(body)) {
1829
1842
  throw new KaafilNetworkError(`Received an unrecognizable success body for HTTP ${status}`, {
1830
1843
  status,