@musashimiyamoto/agent-guard 0.4.1 → 0.4.2
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/package.json +1 -1
- package/src/cli.js +1 -1
- package/src/license.js +3 -2
package/package.json
CHANGED
package/src/cli.js
CHANGED
|
@@ -9,7 +9,7 @@ import { resolve } from 'path';
|
|
|
9
9
|
import { createProxy } from './proxy/index.js';
|
|
10
10
|
import { getLicense, getUpgradePrompt } from './license.js';
|
|
11
11
|
|
|
12
|
-
const VERSION = '0.4.
|
|
12
|
+
const VERSION = '0.4.2';
|
|
13
13
|
|
|
14
14
|
const FEEDBACK_URL = 'https://github.com/MusashiMiyamoto1-cloud/agent-guard/issues/new';
|
|
15
15
|
const REPO_URL = 'https://github.com/MusashiMiyamoto1-cloud/agent-guard';
|
package/src/license.js
CHANGED
|
@@ -9,8 +9,9 @@ import { createHash } from 'crypto';
|
|
|
9
9
|
const CONFIG_DIR = join(homedir(), '.agent-guard');
|
|
10
10
|
const LICENSE_FILE = join(CONFIG_DIR, 'license.json');
|
|
11
11
|
|
|
12
|
-
// Keygen account
|
|
13
|
-
const KEYGEN_ACCOUNT = process.env.KEYGEN_ACCOUNT || '
|
|
12
|
+
// Keygen account & product IDs
|
|
13
|
+
const KEYGEN_ACCOUNT = process.env.KEYGEN_ACCOUNT || 'd4e0f169-7857-4b98-85f5-68e56b7a6e1b';
|
|
14
|
+
const KEYGEN_PRODUCT = '96d1b566-bd48-4bc9-9185-6ddbcb54683b';
|
|
14
15
|
const KEYGEN_API = `https://api.keygen.sh/v1/accounts/${KEYGEN_ACCOUNT}`;
|
|
15
16
|
|
|
16
17
|
// Feature entitlements
|