@voicenter-team/events-sdk 0.0.35 → 0.0.36

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.
@@ -481,6 +481,10 @@ export declare type ExtensionCall = {
481
481
  */
482
482
  answered: number;
483
483
  callType?: CallTypeEnum;
484
+ /**
485
+ * duration
486
+ */
487
+ duration?: number;
484
488
  /**
485
489
  * Channel 2
486
490
  */
@@ -521,6 +525,14 @@ export declare type ExtensionCall = {
521
525
  * Call answered
522
526
  */
523
527
  callAnswered: number;
528
+ /**
529
+ * callStartedUTC
530
+ */
531
+ callStartedUTC?: number;
532
+ /**
533
+ * callAnsweredUTC
534
+ */
535
+ callAnsweredUTC?: number;
524
536
  /**
525
537
  * Original caller id
526
538
  */
@@ -545,10 +557,18 @@ export declare type ExtensionCall = {
545
557
  * Related ivr unique ids
546
558
  */
547
559
  relatedIvrUniqueIDs?: Array<string>;
560
+ /**
561
+ * callStartedUTCClient
562
+ */
563
+ callStartedUTCClient?: number;
548
564
  /**
549
565
  * Call duration interval
550
566
  */
551
567
  calldurationinterval: number;
568
+ /**
569
+ * callAnsweredUTCClient
570
+ */
571
+ callAnsweredUTCClient?: number;
552
572
  };
553
573
 
554
574
  export declare type ExtensionEvent = {
@@ -957,7 +977,7 @@ declare class SocketIoClass {
957
977
  private onConnect;
958
978
  private onDisconnect;
959
979
  private onConnectError;
960
- private configureExtensionUTC;
980
+ private configureExtensionAdditionalProperties;
961
981
  }
962
982
 
963
983
  export declare type SocketTyped = Socket_2<EventCallbackRegistry, Record<EventsEnum, any>>