@webex/event-dictionary-ts 1.0.2169 → 1.0.2172

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.
@@ -2599,6 +2599,7 @@
2599
2599
  "client.pin.collected",
2600
2600
  "client.pin.prompt",
2601
2601
  "client.post.meeting.hook",
2602
+ "client.pstnaudio.attempt.correlation",
2602
2603
  "client.pstnaudio.attempt.finish",
2603
2604
  "client.pstnaudio.attempt.skip",
2604
2605
  "client.pstnaudio.attempt.start",
@@ -3203,6 +3203,7 @@
3203
3203
  "client.pin.collected",
3204
3204
  "client.pin.prompt",
3205
3205
  "client.post.meeting.hook",
3206
+ "client.pstnaudio.attempt.correlation",
3206
3207
  "client.pstnaudio.attempt.finish",
3207
3208
  "client.pstnaudio.attempt.skip",
3208
3209
  "client.pstnaudio.attempt.start",
@@ -19338,6 +19339,12 @@
19338
19339
  "txbweExecuteTime": {
19339
19340
  "type": "number",
19340
19341
  "description": "one float every 1 minute"
19342
+ },
19343
+ "aecLookBackFrames": {
19344
+ "type": "integer",
19345
+ "description": "one int8 every 1 minute",
19346
+ "minimum": -128,
19347
+ "maximum": 127
19341
19348
  }
19342
19349
  }
19343
19350
  },
@@ -5278,6 +5278,12 @@
5278
5278
  "txbweExecuteTime": {
5279
5279
  "type": "number",
5280
5280
  "description": "one float every 1 minute"
5281
+ },
5282
+ "aecLookBackFrames": {
5283
+ "type": "integer",
5284
+ "description": "one int8 every 1 minute",
5285
+ "minimum": -128,
5286
+ "maximum": 127
5281
5287
  }
5282
5288
  }
5283
5289
  },
@@ -1413,6 +1413,7 @@ export interface Event {
1413
1413
  | "client.pin.collected"
1414
1414
  | "client.pin.prompt"
1415
1415
  | "client.post.meeting.hook"
1416
+ | "client.pstnaudio.attempt.correlation"
1416
1417
  | "client.pstnaudio.attempt.finish"
1417
1418
  | "client.pstnaudio.attempt.skip"
1418
1419
  | "client.pstnaudio.attempt.start"
@@ -8623,6 +8624,10 @@ export interface Event {
8623
8624
  * one float every 1 minute
8624
8625
  */
8625
8626
  txbweExecuteTime?: number;
8627
+ /**
8628
+ * one int8 every 1 minute
8629
+ */
8630
+ aecLookBackFrames?: number;
8626
8631
  additionalProperties?: never;
8627
8632
  };
8628
8633
  /**
@@ -17846,6 +17851,7 @@ export interface ClientEvent {
17846
17851
  | "client.pin.collected"
17847
17852
  | "client.pin.prompt"
17848
17853
  | "client.post.meeting.hook"
17854
+ | "client.pstnaudio.attempt.correlation"
17849
17855
  | "client.pstnaudio.attempt.finish"
17850
17856
  | "client.pstnaudio.attempt.skip"
17851
17857
  | "client.pstnaudio.attempt.start"
@@ -24736,6 +24742,10 @@ export interface MediaQualityEvent {
24736
24742
  * one float every 1 minute
24737
24743
  */
24738
24744
  txbweExecuteTime?: number;
24745
+ /**
24746
+ * one int8 every 1 minute
24747
+ */
24748
+ aecLookBackFrames?: number;
24739
24749
  additionalProperties?: never;
24740
24750
  };
24741
24751
  /**
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  "access": "public",
33
33
  "registry": "https://registry.npmjs.org"
34
34
  },
35
- "version": "1.0.2169"
35
+ "version": "1.0.2172"
36
36
  }