letsfg 1.1.0 → 1.1.1
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/{chunk-GSV6LFSX.mjs → chunk-R2DLDQIL.mjs} +1 -1
- package/dist/cli.js +1 -1
- package/dist/cli.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
|
@@ -336,7 +336,7 @@ var LetsFG = class {
|
|
|
336
336
|
*/
|
|
337
337
|
async linkGithub(githubUsername) {
|
|
338
338
|
this.requireApiKey();
|
|
339
|
-
return this.post(
|
|
339
|
+
return this.post("/api/v1/agents/link-github", { github_username: githubUsername });
|
|
340
340
|
}
|
|
341
341
|
/**
|
|
342
342
|
* Get current agent profile and usage stats.
|
package/dist/cli.js
CHANGED
|
@@ -308,7 +308,7 @@ var LetsFG = class {
|
|
|
308
308
|
*/
|
|
309
309
|
async linkGithub(githubUsername) {
|
|
310
310
|
this.requireApiKey();
|
|
311
|
-
return this.post(
|
|
311
|
+
return this.post("/api/v1/agents/link-github", { github_username: githubUsername });
|
|
312
312
|
}
|
|
313
313
|
/**
|
|
314
314
|
* Get current agent profile and usage stats.
|
package/dist/cli.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -386,7 +386,7 @@ var LetsFG = class {
|
|
|
386
386
|
*/
|
|
387
387
|
async linkGithub(githubUsername) {
|
|
388
388
|
this.requireApiKey();
|
|
389
|
-
return this.post(
|
|
389
|
+
return this.post("/api/v1/agents/link-github", { github_username: githubUsername });
|
|
390
390
|
}
|
|
391
391
|
/**
|
|
392
392
|
* Get current agent profile and usage stats.
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "letsfg",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Agent-native flight search & booking. 102 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",
|