@integrity-labs/agt-cli 0.10.13 → 0.10.15
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/bin/agt.js +33 -17
- package/dist/bin/agt.js.map +1 -1
- package/dist/{chunk-KZ7Y55HJ.js → chunk-XTETZ2D5.js} +4 -1
- package/dist/{chunk-KZ7Y55HJ.js.map → chunk-XTETZ2D5.js.map} +1 -1
- package/dist/lib/manager-worker.js +56 -25
- package/dist/lib/manager-worker.js.map +1 -1
- package/package.json +1 -1
|
@@ -3563,6 +3563,7 @@ async function exchangeApiKey(rawKey, retried = false) {
|
|
|
3563
3563
|
hostId: cachedExchange.hostId,
|
|
3564
3564
|
teamId: cachedExchange.teamId,
|
|
3565
3565
|
teamSlug: cachedExchange.teamSlug,
|
|
3566
|
+
framework: cachedExchange.framework,
|
|
3566
3567
|
userEmail: cachedExchange.userEmail,
|
|
3567
3568
|
supabaseUrl: cachedExchange.supabaseUrl,
|
|
3568
3569
|
supabaseAnonKey: cachedExchange.supabaseAnonKey
|
|
@@ -3610,6 +3611,7 @@ async function doExchange(rawKey, retried) {
|
|
|
3610
3611
|
hostId: data.host_id,
|
|
3611
3612
|
teamId: data.team_id,
|
|
3612
3613
|
teamSlug: data.team_slug,
|
|
3614
|
+
framework: data.framework ?? null,
|
|
3613
3615
|
userEmail: data.user_email,
|
|
3614
3616
|
supabaseUrl: data.supabase_url,
|
|
3615
3617
|
supabaseAnonKey: data.supabase_anon_key,
|
|
@@ -3620,6 +3622,7 @@ async function doExchange(rawKey, retried) {
|
|
|
3620
3622
|
hostId: data.host_id,
|
|
3621
3623
|
teamId: data.team_id,
|
|
3622
3624
|
teamSlug: data.team_slug,
|
|
3625
|
+
framework: data.framework ?? null,
|
|
3623
3626
|
userEmail: data.user_email,
|
|
3624
3627
|
supabaseUrl: data.supabase_url,
|
|
3625
3628
|
supabaseAnonKey: data.supabase_anon_key
|
|
@@ -5747,4 +5750,4 @@ export {
|
|
|
5747
5750
|
detectDrift,
|
|
5748
5751
|
provision
|
|
5749
5752
|
};
|
|
5750
|
-
//# sourceMappingURL=chunk-
|
|
5753
|
+
//# sourceMappingURL=chunk-XTETZ2D5.js.map
|