@webex/event-dictionary-ts 1.0.2138 → 1.0.2140

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.
@@ -4011,6 +4011,9 @@
4011
4011
  "isVideoMuted": {
4012
4012
  "type": "boolean"
4013
4013
  },
4014
+ "isVPN": {
4015
+ "type": "boolean"
4016
+ },
4014
4017
  "joinHttpTiming": {
4015
4018
  "type": "object",
4016
4019
  "description": "phrased HTTP timing",
@@ -4588,6 +4588,9 @@
4588
4588
  "isVideoMuted": {
4589
4589
  "type": "boolean"
4590
4590
  },
4591
+ "isVPN": {
4592
+ "type": "boolean"
4593
+ },
4591
4594
  "joinHttpTiming": {
4592
4595
  "type": "object",
4593
4596
  "description": "phrased HTTP timing",
@@ -23810,6 +23813,18 @@
23810
23813
  "minimum": -9223372036854776000.0,
23811
23814
  "maximum": 9223372036854776000.0
23812
23815
  },
23816
+ "remoteVideoAugmentationType": {
23817
+ "type": "string",
23818
+ "enum": [
23819
+ "VIDEO_BACKGROUND_AUGMENT_NONE",
23820
+ "VIDEO_BACKGROUND_AUGMENT_BLUR",
23821
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE",
23822
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO",
23823
+ "VIDEO_BACKGROUND_AUGMENT_BLUR_INHOUSE",
23824
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE_INHOUSE",
23825
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO_INHOUSE"
23826
+ ]
23827
+ },
23813
23828
  "remoteClientType": {
23814
23829
  "type": "string",
23815
23830
  "description": "this defines the major client types",
@@ -9809,6 +9809,18 @@
9809
9809
  "minimum": -9223372036854776000.0,
9810
9810
  "maximum": 9223372036854776000.0
9811
9811
  },
9812
+ "remoteVideoAugmentationType": {
9813
+ "type": "string",
9814
+ "enum": [
9815
+ "VIDEO_BACKGROUND_AUGMENT_NONE",
9816
+ "VIDEO_BACKGROUND_AUGMENT_BLUR",
9817
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE",
9818
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO",
9819
+ "VIDEO_BACKGROUND_AUGMENT_BLUR_INHOUSE",
9820
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE_INHOUSE",
9821
+ "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO_INHOUSE"
9822
+ ]
9823
+ },
9812
9824
  "remoteClientType": {
9813
9825
  "type": "string",
9814
9826
  "description": "this defines the major client types",
@@ -2091,6 +2091,7 @@ export interface Event {
2091
2091
  joinType?: "auto" | "no-locus-join";
2092
2092
  audioJoinType?: "phone-call-in" | "phone-call-back" | "voip" | "device-call-back" | "never-join-audio";
2093
2093
  isVideoMuted?: boolean;
2094
+ isVPN?: boolean;
2094
2095
  /**
2095
2096
  * phrased HTTP timing
2096
2097
  */
@@ -10537,6 +10538,14 @@ export interface Event {
10537
10538
  | "UpSample_VP_1pt5";
10538
10539
  processSRMillis?: number;
10539
10540
  superResFps?: number;
10541
+ remoteVideoAugmentationType?:
10542
+ | "VIDEO_BACKGROUND_AUGMENT_NONE"
10543
+ | "VIDEO_BACKGROUND_AUGMENT_BLUR"
10544
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE"
10545
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO"
10546
+ | "VIDEO_BACKGROUND_AUGMENT_BLUR_INHOUSE"
10547
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE_INHOUSE"
10548
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO_INHOUSE";
10540
10549
  /**
10541
10550
  * this defines the major client types
10542
10551
  */
@@ -18468,6 +18477,7 @@ export interface ClientEvent {
18468
18477
  joinType?: "auto" | "no-locus-join";
18469
18478
  audioJoinType?: "phone-call-in" | "phone-call-back" | "voip" | "device-call-back" | "never-join-audio";
18470
18479
  isVideoMuted?: boolean;
18480
+ isVPN?: boolean;
18471
18481
  /**
18472
18482
  * phrased HTTP timing
18473
18483
  */
@@ -26592,6 +26602,14 @@ export interface MediaQualityEvent {
26592
26602
  | "UpSample_VP_1pt5";
26593
26603
  processSRMillis?: number;
26594
26604
  superResFps?: number;
26605
+ remoteVideoAugmentationType?:
26606
+ | "VIDEO_BACKGROUND_AUGMENT_NONE"
26607
+ | "VIDEO_BACKGROUND_AUGMENT_BLUR"
26608
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE"
26609
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO"
26610
+ | "VIDEO_BACKGROUND_AUGMENT_BLUR_INHOUSE"
26611
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_IMAGE_INHOUSE"
26612
+ | "VIDEO_BACKGROUND_AUGMENT_REPLACE_VIDEO_INHOUSE";
26595
26613
  /**
26596
26614
  * this defines the major client types
26597
26615
  */
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org"
29
29
  },
30
- "version": "1.0.2138"
30
+ "version": "1.0.2140"
31
31
  }