@bagelink/auth 1.8.22 → 1.8.26

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
@@ -88,10 +88,8 @@ class AuthApi {
88
88
  if (resetToken !== null) {
89
89
  config.headers["X-Reset-Token"] = resetToken;
90
90
  }
91
- console.log("[AuthApi] Interceptor - currentTenantId:", this.currentTenantId);
92
91
  if (this.currentTenantId !== null) {
93
92
  config.headers["X-Tenant-ID"] = this.currentTenantId;
94
- console.log("[AuthApi] Added X-Tenant-ID header:", this.currentTenantId);
95
93
  }
96
94
  return config;
97
95
  });
package/dist/index.mjs CHANGED
@@ -86,10 +86,8 @@ class AuthApi {
86
86
  if (resetToken !== null) {
87
87
  config.headers["X-Reset-Token"] = resetToken;
88
88
  }
89
- console.log("[AuthApi] Interceptor - currentTenantId:", this.currentTenantId);
90
89
  if (this.currentTenantId !== null) {
91
90
  config.headers["X-Tenant-ID"] = this.currentTenantId;
92
- console.log("[AuthApi] Added X-Tenant-ID header:", this.currentTenantId);
93
91
  }
94
92
  return config;
95
93
  });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bagelink/auth",
3
3
  "type": "module",
4
- "version": "1.8.22",
4
+ "version": "1.8.26",
5
5
  "description": "Bagelink auth package",
6
6
  "author": {
7
7
  "name": "Bagel Studio",
package/src/api.ts CHANGED
@@ -74,10 +74,8 @@ export class AuthApi {
74
74
  }
75
75
 
76
76
  // Add tenant ID header if set
77
- console.log('[AuthApi] Interceptor - currentTenantId:', this.currentTenantId)
78
77
  if (this.currentTenantId !== null) {
79
78
  config.headers['X-Tenant-ID'] = this.currentTenantId
80
- console.log('[AuthApi] Added X-Tenant-ID header:', this.currentTenantId)
81
79
  }
82
80
 
83
81
  return config