letsfg 1.7.0 → 1.9.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.
package/dist/cli.js CHANGED
@@ -745,12 +745,14 @@ async function cmdMe(args) {
745
745
  const gh = p.github_username || "";
746
746
  const starOk = p.github_star_verified || false;
747
747
  if (starOk) {
748
- console.log(` GitHub: \u2713 ${gh} (star verified \u2014 unlimited access)`);
748
+ console.log(` GitHub: \u2713 ${gh} (star verified)`);
749
749
  } else if (gh) {
750
- console.log(` GitHub: ${gh} (star not verified)`);
750
+ console.log(` GitHub: ${gh} (star not yet verified \u2014 run: letsfg star --github ${gh})`);
751
751
  } else {
752
752
  console.log(` GitHub: Not linked \u2014 run: letsfg star --github <username>`);
753
753
  }
754
+ const access = p.access_granted || false;
755
+ console.log(` Access: ${access ? "\u2713 Granted (search, unlock, book)" : "\u2717 Not granted \u2014 star the repo to unlock"}`);
754
756
  console.log(` Payment: ${p.payment_ready ? "\u2713 Ready" : "\u2014"}`);
755
757
  console.log(` Searches: ${u.total_searches || 0}`);
756
758
  console.log(` Unlocks: ${u.total_unlocks || 0}`);
package/dist/cli.mjs CHANGED
@@ -301,12 +301,14 @@ async function cmdMe(args) {
301
301
  const gh = p.github_username || "";
302
302
  const starOk = p.github_star_verified || false;
303
303
  if (starOk) {
304
- console.log(` GitHub: \u2713 ${gh} (star verified \u2014 unlimited access)`);
304
+ console.log(` GitHub: \u2713 ${gh} (star verified)`);
305
305
  } else if (gh) {
306
- console.log(` GitHub: ${gh} (star not verified)`);
306
+ console.log(` GitHub: ${gh} (star not yet verified \u2014 run: letsfg star --github ${gh})`);
307
307
  } else {
308
308
  console.log(` GitHub: Not linked \u2014 run: letsfg star --github <username>`);
309
309
  }
310
+ const access = p.access_granted || false;
311
+ console.log(` Access: ${access ? "\u2713 Granted (search, unlock, book)" : "\u2717 Not granted \u2014 star the repo to unlock"}`);
310
312
  console.log(` Payment: ${p.payment_ready ? "\u2713 Ready" : "\u2014"}`);
311
313
  console.log(` Searches: ${u.total_searches || 0}`);
312
314
  console.log(` Unlocks: ${u.total_unlocks || 0}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "letsfg",
3
- "version": "1.7.0",
3
+ "version": "1.9.0",
4
4
  "description": "Agent-native flight search & booking. 200 airline connectors run locally + enterprise GDS/NDC APIs. Built for autonomous AI agents.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",