@webex/event-dictionary-ts 1.0.1597 → 1.0.1598

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.
@@ -6773,6 +6773,12 @@
6773
6773
  "type": "number",
6774
6774
  "minimum": 0.0,
6775
6775
  "maximum": 9223372036854776000.0
6776
+ },
6777
+ "audioCaptureRestartTime": {
6778
+ "description": "Timestamp in milliseconds when audio capture restart algorithm is performed. The restart is triggered by client App if certain conditions are met",
6779
+ "type": "number",
6780
+ "minimum": 0.0,
6781
+ "maximum": 9223372036854776000.0
6776
6782
  }
6777
6783
  }
6778
6784
  },
@@ -6826,6 +6832,10 @@
6826
6832
  "mediaStartOnCallCreate": {
6827
6833
  "type": "boolean"
6828
6834
  },
6835
+ "sipServiceIndex": {
6836
+ "type": "integer",
6837
+ "minimum": 0
6838
+ },
6829
6839
  "wxcCallId": {
6830
6840
  "type": "string"
6831
6841
  }
@@ -7277,6 +7277,12 @@
7277
7277
  "type": "number",
7278
7278
  "minimum": 0.0,
7279
7279
  "maximum": 9223372036854776000.0
7280
+ },
7281
+ "audioCaptureRestartTime": {
7282
+ "description": "Timestamp in milliseconds when audio capture restart algorithm is performed. The restart is triggered by client App if certain conditions are met",
7283
+ "type": "number",
7284
+ "minimum": 0.0,
7285
+ "maximum": 9223372036854776000.0
7280
7286
  }
7281
7287
  }
7282
7288
  },
@@ -7330,6 +7336,10 @@
7330
7336
  "mediaStartOnCallCreate": {
7331
7337
  "type": "boolean"
7332
7338
  },
7339
+ "sipServiceIndex": {
7340
+ "type": "integer",
7341
+ "minimum": 0
7342
+ },
7333
7343
  "wxcCallId": {
7334
7344
  "type": "string"
7335
7345
  }
@@ -3450,6 +3450,10 @@ export interface Event {
3450
3450
  * Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback
3451
3451
  */
3452
3452
  audioPlaybackFirstSpeechTime?: number;
3453
+ /**
3454
+ * Timestamp in milliseconds when audio capture restart algorithm is performed. The restart is triggered by client App if certain conditions are met
3455
+ */
3456
+ audioCaptureRestartTime?: number;
3453
3457
  additionalProperties?: false;
3454
3458
  };
3455
3459
  /**
@@ -3469,6 +3473,7 @@ export interface Event {
3469
3473
  isSipProxyIpv6?: boolean;
3470
3474
  mediaCreateOnCallCreate?: boolean;
3471
3475
  mediaStartOnCallCreate?: boolean;
3476
+ sipServiceIndex?: number;
3472
3477
  wxcCallId?: string;
3473
3478
  additionalProperties?: false;
3474
3479
  };
@@ -15582,6 +15587,10 @@ export interface ClientEvent {
15582
15587
  * Timestamp in milliseconds of first WmeMediaEngineEventType_Audio_Processing_NotifyFirstSpeech. First time when VAD (voice activity detection) event is sent from WME for playback
15583
15588
  */
15584
15589
  audioPlaybackFirstSpeechTime?: number;
15590
+ /**
15591
+ * Timestamp in milliseconds when audio capture restart algorithm is performed. The restart is triggered by client App if certain conditions are met
15592
+ */
15593
+ audioCaptureRestartTime?: number;
15585
15594
  additionalProperties?: false;
15586
15595
  };
15587
15596
  /**
@@ -15601,6 +15610,7 @@ export interface ClientEvent {
15601
15610
  isSipProxyIpv6?: boolean;
15602
15611
  mediaCreateOnCallCreate?: boolean;
15603
15612
  mediaStartOnCallCreate?: boolean;
15613
+ sipServiceIndex?: number;
15604
15614
  wxcCallId?: string;
15605
15615
  additionalProperties?: false;
15606
15616
  };
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1597"
31
+ "version": "1.0.1598"
32
32
  }