@gpsglobal-ai/gpsglobal 1.4.9 → 1.4.10
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/CHANGELOG.md +4 -0
- package/dist/cli/doctor.js +6 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
# Changelog — gpsglobal
|
|
2
2
|
|
|
3
|
+
## 1.4.10 — 2026-06-21
|
|
4
|
+
|
|
5
|
+
- **`doctor`:** checks both DCR (`registration_endpoint`) and CIMD (`client_id_metadata_document_supported`)
|
|
6
|
+
|
|
3
7
|
## 1.4.9 — 2026-06-21
|
|
4
8
|
|
|
5
9
|
- **`doctor`:** checks OAuth AS `registration_endpoint` (DCR) for VS Code zero-config Connect
|
package/dist/cli/doctor.js
CHANGED
|
@@ -84,12 +84,13 @@ export async function runDoctor() {
|
|
|
84
84
|
validateStatus: () => true,
|
|
85
85
|
});
|
|
86
86
|
const hasDcr = asMeta.status === 200 && Boolean(asMeta.data?.registration_endpoint);
|
|
87
|
+
const hasCimd = asMeta.status === 200 && asMeta.data?.client_id_metadata_document_supported === true;
|
|
87
88
|
checks.push({
|
|
88
|
-
name: 'oauth-
|
|
89
|
-
ok: hasDcr,
|
|
90
|
-
detail: hasDcr
|
|
91
|
-
? '
|
|
92
|
-
: `AS metadata → ${asMeta.status} (
|
|
89
|
+
name: 'oauth-registration',
|
|
90
|
+
ok: hasDcr && hasCimd,
|
|
91
|
+
detail: hasDcr && hasCimd
|
|
92
|
+
? 'DCR + CIMD (SEP-991) supported — VS Code/Copilot zero-config Connect'
|
|
93
|
+
: `AS metadata → ${asMeta.status} (missing DCR or CIMD flags)`,
|
|
93
94
|
});
|
|
94
95
|
}
|
|
95
96
|
catch (err) {
|
package/package.json
CHANGED