letsfg 2026.5.56 → 2026.5.57

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.
@@ -1612,7 +1612,7 @@ var LetsFG = class {
1612
1612
  const result = await this.getNoAuth(
1613
1613
  `/api/results/${search_id}`
1614
1614
  );
1615
- if (result.status !== "pending") {
1615
+ if (!["pending", "searching"].includes(result.status)) {
1616
1616
  return result;
1617
1617
  }
1618
1618
  }
package/dist/cli.js CHANGED
@@ -367,7 +367,7 @@ var LetsFG = class {
367
367
  const result = await this.getNoAuth(
368
368
  `/api/results/${search_id}`
369
369
  );
370
- if (result.status !== "pending") {
370
+ if (!["pending", "searching"].includes(result.status)) {
371
371
  return result;
372
372
  }
373
373
  }
package/dist/cli.mjs CHANGED
@@ -3,7 +3,7 @@ import {
3
3
  LetsFG,
4
4
  LetsFGError,
5
5
  offerSummary
6
- } from "./chunk-3GLZR3AT.mjs";
6
+ } from "./chunk-3F2FJHVG.mjs";
7
7
 
8
8
  // src/cli.ts
9
9
  function getFlag(args, flag, alias) {
package/dist/index.js CHANGED
@@ -1660,7 +1660,7 @@ var LetsFG = class {
1660
1660
  const result = await this.getNoAuth(
1661
1661
  `/api/results/${search_id}`
1662
1662
  );
1663
- if (result.status !== "pending") {
1663
+ if (!["pending", "searching"].includes(result.status)) {
1664
1664
  return result;
1665
1665
  }
1666
1666
  }
package/dist/index.mjs CHANGED
@@ -22,7 +22,7 @@ import {
22
22
  offerSummary,
23
23
  rankOffers,
24
24
  selectDiverseTop
25
- } from "./chunk-3GLZR3AT.mjs";
25
+ } from "./chunk-3F2FJHVG.mjs";
26
26
  export {
27
27
  AuthenticationError,
28
28
  BoostedTravel,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "letsfg",
3
- "version": "2026.5.56",
3
+ "version": "2026.5.57",
4
4
  "description": "Flight search & booking for AI agents. Server-side engine covers hundreds of airlines. Free search via Bearer token or prepaid Developer API. Includes open-source ranking engine.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",