@adhdev/mesh-shared 1.0.56-rc.14 → 1.0.56-rc.16

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.
@@ -201,11 +201,13 @@ export declare function normalizeMeshNodeFacts(raw: unknown): MeshNodeFacts | un
201
201
  * ★antigravity-cli was likewise twice judged impossible, from reading
202
202
  * `agy --help` where the usage view does not appear because it is a TUI view.
203
203
  * Its quota comes from the SHARED Gemini Code Assist backend
204
- * (`cloudcode-pa.googleapis.com/v1internal:retrieveUserQuotaSummary`), and its
205
- * credential lives in the OS keyring, not the stale on-disk token file — see
206
- * the provenance note in daemon-core `quota/fetchers/antigravity.ts`. It is
207
- * macOS-only by design; other platforms report `unsupported` rather than guess
208
- * at a keyring backend nobody has verified.
204
+ * (`daily-cloudcode-pa.googleapis.com/v1internal:retrieveUserQuotaSummary`
205
+ * the host `agy` itself uses; the unprefixed `cloudcode-pa` host 429s Google
206
+ * AI Pro Antigravity accounts), and its credential lives in the OS keyring,
207
+ * not the stale on-disk token file see the provenance note in daemon-core
208
+ * `quota/fetchers/antigravity.ts`. Supported on macOS and Windows; other
209
+ * platforms report `unsupported` rather than guess at a keyring backend
210
+ * nobody has verified.
209
211
  *
210
212
  * ★Adding a provider here without adding its fetcher to REFRESHERS re-creates
211
213
  * exactly the "switch that does nothing" this constant prevents.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adhdev/mesh-shared",
3
- "version": "1.0.56-rc.14",
3
+ "version": "1.0.56-rc.16",
4
4
  "description": "ADHDev mesh-shared — pure mesh/git status normalizers shared by daemon-core and web-core",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/node-facts.ts CHANGED
@@ -216,11 +216,13 @@ export function normalizeMeshNodeFacts(raw: unknown): MeshNodeFacts | undefined
216
216
  * ★antigravity-cli was likewise twice judged impossible, from reading
217
217
  * `agy --help` where the usage view does not appear because it is a TUI view.
218
218
  * Its quota comes from the SHARED Gemini Code Assist backend
219
- * (`cloudcode-pa.googleapis.com/v1internal:retrieveUserQuotaSummary`), and its
220
- * credential lives in the OS keyring, not the stale on-disk token file — see
221
- * the provenance note in daemon-core `quota/fetchers/antigravity.ts`. It is
222
- * macOS-only by design; other platforms report `unsupported` rather than guess
223
- * at a keyring backend nobody has verified.
219
+ * (`daily-cloudcode-pa.googleapis.com/v1internal:retrieveUserQuotaSummary`
220
+ * the host `agy` itself uses; the unprefixed `cloudcode-pa` host 429s Google
221
+ * AI Pro Antigravity accounts), and its credential lives in the OS keyring,
222
+ * not the stale on-disk token file see the provenance note in daemon-core
223
+ * `quota/fetchers/antigravity.ts`. Supported on macOS and Windows; other
224
+ * platforms report `unsupported` rather than guess at a keyring backend
225
+ * nobody has verified.
224
226
  *
225
227
  * ★Adding a provider here without adding its fetcher to REFRESHERS re-creates
226
228
  * exactly the "switch that does nothing" this constant prevents.