@glasstrace/sdk 0.16.0 → 0.17.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/README.md +64 -0
- package/dist/{chunk-BANTDXUT.js → chunk-E33Y7BQH.js} +23 -2
- package/dist/{chunk-BANTDXUT.js.map → chunk-E33Y7BQH.js.map} +1 -1
- package/dist/{chunk-7JBKXSBU.js → chunk-GSGX76Q5.js} +2 -1
- package/dist/{chunk-7JBKXSBU.js.map → chunk-GSGX76Q5.js.map} +1 -1
- package/dist/{chunk-TM5NKZTO.js → chunk-J5BW7V2D.js} +2 -2
- package/dist/{chunk-5C2TJFLB.js → chunk-UUUKI65I.js} +2 -2
- package/dist/cli/init.cjs +1 -1
- package/dist/cli/init.cjs.map +1 -1
- package/dist/cli/init.js +4 -4
- package/dist/cli/mcp-add.cjs.map +1 -1
- package/dist/cli/mcp-add.js +2 -2
- package/dist/index.cjs +120 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +55 -1
- package/dist/index.d.ts +55 -1
- package/dist/index.js +100 -10
- package/dist/index.js.map +1 -1
- package/dist/{source-map-uploader-MUZPI2S5.js → source-map-uploader-26QPRSCG.js} +3 -3
- package/package.json +3 -2
- /package/dist/{chunk-TM5NKZTO.js.map → chunk-J5BW7V2D.js.map} +0 -0
- /package/dist/{chunk-5C2TJFLB.js.map → chunk-UUUKI65I.js.map} +0 -0
- /package/dist/{source-map-uploader-MUZPI2S5.js.map → source-map-uploader-26QPRSCG.js.map} +0 -0
package/dist/cli/init.js
CHANGED
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
import {
|
|
6
6
|
buildImportGraph,
|
|
7
7
|
verifyInitReachable
|
|
8
|
-
} from "../chunk-
|
|
8
|
+
} from "../chunk-UUUKI65I.js";
|
|
9
9
|
import {
|
|
10
10
|
resolveConfig
|
|
11
11
|
} from "../chunk-VUZCLMIX.js";
|
|
@@ -27,8 +27,8 @@ import {
|
|
|
27
27
|
import {
|
|
28
28
|
getOrCreateAnonKey,
|
|
29
29
|
readAnonKey
|
|
30
|
-
} from "../chunk-
|
|
31
|
-
import "../chunk-
|
|
30
|
+
} from "../chunk-J5BW7V2D.js";
|
|
31
|
+
import "../chunk-GSGX76Q5.js";
|
|
32
32
|
import {
|
|
33
33
|
addCoverageMapEnv,
|
|
34
34
|
isDevApiKey,
|
|
@@ -509,7 +509,7 @@ async function verifyAnonKeyRegistration(projectRoot) {
|
|
|
509
509
|
}
|
|
510
510
|
const baseConfig = resolveConfig({ apiKey: devKey });
|
|
511
511
|
const config = { ...baseConfig, apiKey: devKey };
|
|
512
|
-
const sdkVersion = true ? "0.
|
|
512
|
+
const sdkVersion = true ? "0.17.1" : "0.0.0-dev";
|
|
513
513
|
const result = await verifyInitReachable(config, anonKey, sdkVersion);
|
|
514
514
|
if (result.ok) {
|
|
515
515
|
return { outcome: "verified" };
|