rez_core 2.2.252 → 2.2.253

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rez_core",
3
- "version": "2.2.252",
3
+ "version": "2.2.253",
4
4
  "description": "",
5
5
  "author": "",
6
6
  "private": false,
@@ -573,6 +573,7 @@ export class CommunicationService {
573
573
  userName: configJson?.userName,
574
574
  agentID: configJson?.agentID,
575
575
  campaignName: configJson?.campaignName,
576
+ agentLoginUrl: configJson?.agentLoginUrl,
576
577
  hasApiKey: !!configJson?.apiKey,
577
578
  };
578
579
 
@@ -10,6 +10,7 @@ interface OzonetelVoiceConfig {
10
10
  userName: string;
11
11
  agentID: string;
12
12
  campaignName: string;
13
+ agentLoginUrl?: string;
13
14
  }
14
15
 
15
16
  @Injectable()