mycai 1.0.5 → 1.0.7

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.
Files changed (2) hide show
  1. package/package.json +1 -2
  2. package/sdk/licensing.js +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mycai",
3
- "version": "1.0.5",
3
+ "version": "1.0.7",
4
4
  "description": "Sovereign Air-Gapped Cognitive AI & Embedded Intent Engine for Turkish NLP and Industrial Automation",
5
5
  "main": "index.js",
6
6
  "module": "index.js",
@@ -47,7 +47,6 @@
47
47
  },
48
48
  "dependencies": {
49
49
  "express": "^4.19.2",
50
- "mycai": "^1.0.3",
51
50
  "xlsx": "^0.18.5"
52
51
  }
53
52
  }
package/sdk/licensing.js CHANGED
@@ -58,7 +58,7 @@ export class LicenseManager {
58
58
  /**
59
59
  * @param {string} [vendorSecret] - Master secret for signing/verifying licenses.
60
60
  */
61
- constructor(vendorSecret = 'RESONANCE_SOVEREIGN_KEY_2026_AIRGAPPED_HMAC') {
61
+ constructor(vendorSecret = 'MYCAI_SOVEREIGN_ROOT_c931916628181f5f752b274a39932c999518c15485602ba0d7c73b0e8bcaefb7') {
62
62
  this._secret = vendorSecret;
63
63
  this.currentLicense = null;
64
64
  this.tier = LICENSE_TIERS.STARTER;
@@ -77,7 +77,7 @@ export class LicenseManager {
77
77
  * @param {string} [opts.clientId]
78
78
  * @returns {string}
79
79
  */
80
- static generateLicenseKey(opts, secret = 'RESONANCE_SOVEREIGN_KEY_2026_AIRGAPPED_HMAC') {
80
+ static generateLicenseKey(opts, secret = 'MYCAI_SOVEREIGN_ROOT_c931916628181f5f752b274a39932c999518c15485602ba0d7c73b0e8bcaefb7') {
81
81
  const tierKey = (opts.tier || 'STARTER').toUpperCase();
82
82
  if (!LICENSE_TIERS[tierKey]) throw new Error(`Invalid tier: ${tierKey}`);
83
83