@funnycode/myclaude 0.1.71 → 0.1.72

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/myclaude.js CHANGED
@@ -4,8 +4,8 @@
4
4
  // MACRO - build-time constants (injected by build.ts)
5
5
  // MACRO injected by build script
6
6
  globalThis.MACRO = {
7
- VERSION: "0.1.71",
8
- BUILD_TIME: "2026-07-15T06:36:55.223Z",
7
+ VERSION: "0.1.72",
8
+ BUILD_TIME: "2026-07-15T09:20:40.982Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -112195,7 +112195,8 @@ function getAttributionHeader(fingerprint) {
112195
112195
  if (!isAttributionHeaderEnabled()) {
112196
112196
  return "";
112197
112197
  }
112198
- const version2 = `${MACRO.VERSION}.${fingerprint}`;
112198
+ const baseVersion = globalThis.MACRO?.VERSION ?? "unknown";
112199
+ const version2 = `${baseVersion}.${fingerprint}`;
112199
112200
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
112200
112201
  const cch = getFeatureValue_CACHED_MAY_BE_STALE("NATIVE_CLIENT_ATTESTATION", false) ? " cch=00000;" : "";
112201
112202
  const workload = getWorkload();
package/dist/myclaude.mjs CHANGED
@@ -4,8 +4,8 @@
4
4
  // MACRO - build-time constants (injected by build.ts)
5
5
  // MACRO injected by build script
6
6
  globalThis.MACRO = {
7
- VERSION: "0.1.71",
8
- BUILD_TIME: "2026-07-15T06:36:55.223Z",
7
+ VERSION: "0.1.72",
8
+ BUILD_TIME: "2026-07-15T09:20:40.982Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -112195,7 +112195,8 @@ function getAttributionHeader(fingerprint) {
112195
112195
  if (!isAttributionHeaderEnabled()) {
112196
112196
  return "";
112197
112197
  }
112198
- const version2 = `${MACRO.VERSION}.${fingerprint}`;
112198
+ const baseVersion = globalThis.MACRO?.VERSION ?? "unknown";
112199
+ const version2 = `${baseVersion}.${fingerprint}`;
112199
112200
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
112200
112201
  const cch = getFeatureValue_CACHED_MAY_BE_STALE("NATIVE_CLIENT_ATTESTATION", false) ? " cch=00000;" : "";
112201
112202
  const workload = getWorkload();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnycode/myclaude",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",