@agentix-security/nextjs 0.1.5 → 0.1.6

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/index.cjs CHANGED
@@ -272,7 +272,7 @@ var AgentixSDK = class {
272
272
  this._tenantId = body.tenant_id;
273
273
  this._domain = body.domain;
274
274
  this._tokenSecret = body.token_secret;
275
- this._proxyUrl = body.proxy_url;
275
+ this._proxyUrl = cp;
276
276
  } else {
277
277
  console.warn(`[agentix] Registration failed (${res.status}) \u2014 operating in degraded mode`);
278
278
  this._tokenSecret = deriveTokenSecret(this.config.licenseKey);
package/dist/index.js CHANGED
@@ -270,7 +270,7 @@ var AgentixSDK = class {
270
270
  this._tenantId = body.tenant_id;
271
271
  this._domain = body.domain;
272
272
  this._tokenSecret = body.token_secret;
273
- this._proxyUrl = body.proxy_url;
273
+ this._proxyUrl = cp;
274
274
  } else {
275
275
  console.warn(`[agentix] Registration failed (${res.status}) \u2014 operating in degraded mode`);
276
276
  this._tokenSecret = deriveTokenSecret(this.config.licenseKey);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentix-security/nextjs",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "Agentix Next.js adapter — AI agent intent-based authorization for Next.js apps",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",