@astermind/cybernetic-chatbot-client 2.2.48 → 2.2.55

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.
@@ -1343,6 +1343,7 @@ class WebSocketTransport {
1343
1343
  documentName: s.documentName,
1344
1344
  sourceType: s.sourceType || 'document',
1345
1345
  chunkId: s.chunkId,
1346
+ downloadUrl: s.downloadUrl,
1346
1347
  }));
1347
1348
  }
1348
1349
  /**
@@ -2344,7 +2345,8 @@ class CyberneticClient {
2344
2345
  this.localRAG = new CyberneticLocalRAG();
2345
2346
  // Initialize license manager
2346
2347
  this.licenseManager = new LicenseManager({
2347
- licenseKey: config.licenseKey
2348
+ licenseKey: config.licenseKey,
2349
+ environment: config.environment,
2348
2350
  });
2349
2351
  // Verify license asynchronously (non-blocking)
2350
2352
  this.licenseManager.verify().then(() => {