@webex/event-dictionary-ts 1.0.1959 → 1.0.1961

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.
@@ -1894,6 +1894,9 @@
1894
1894
  "callDurationSecs": {
1895
1895
  "type": "integer"
1896
1896
  },
1897
+ "connectionDurationSecs": {
1898
+ "type": "integer"
1899
+ },
1897
1900
  "lobbyType": {
1898
1901
  "type": "string"
1899
1902
  },
@@ -2430,6 +2430,9 @@
2430
2430
  "callDurationSecs": {
2431
2431
  "type": "integer"
2432
2432
  },
2433
+ "connectionDurationSecs": {
2434
+ "type": "integer"
2435
+ },
2433
2436
  "lobbyType": {
2434
2437
  "type": "string"
2435
2438
  },
@@ -10432,6 +10435,9 @@
10432
10435
  "callDurationSecs": {
10433
10436
  "type": "integer"
10434
10437
  },
10438
+ "connectionDurationSecs": {
10439
+ "type": "integer"
10440
+ },
10435
10441
  "lobbyType": {
10436
10442
  "type": "string"
10437
10443
  },
@@ -15049,6 +15055,9 @@
15049
15055
  "callDurationSecs": {
15050
15056
  "type": "integer"
15051
15057
  },
15058
+ "connectionDurationSecs": {
15059
+ "type": "integer"
15060
+ },
15052
15061
  "lobbyType": {
15053
15062
  "type": "string"
15054
15063
  },
@@ -15959,6 +15968,10 @@
15959
15968
  }
15960
15969
  }
15961
15970
  },
15971
+ "passThroughMQEventData": {
15972
+ "type": "object",
15973
+ "additionalProperties": true
15974
+ },
15962
15975
  "edgeInfo": {
15963
15976
  "type": "object",
15964
15977
  "description": "Details of a media edge server which is in the media path but does not generate MQE directly",
@@ -26224,6 +26237,9 @@
26224
26237
  "callDurationSecs": {
26225
26238
  "type": "integer"
26226
26239
  },
26240
+ "connectionDurationSecs": {
26241
+ "type": "integer"
26242
+ },
26227
26243
  "lobbyType": {
26228
26244
  "type": "string"
26229
26245
  },
@@ -30287,6 +30303,9 @@
30287
30303
  "callDurationSecs": {
30288
30304
  "type": "integer"
30289
30305
  },
30306
+ "connectionDurationSecs": {
30307
+ "type": "integer"
30308
+ },
30290
30309
  "lobbyType": {
30291
30310
  "type": "string"
30292
30311
  },
@@ -36023,6 +36042,9 @@
36023
36042
  "callDurationSecs": {
36024
36043
  "type": "integer"
36025
36044
  },
36045
+ "connectionDurationSecs": {
36046
+ "type": "integer"
36047
+ },
36026
36048
  "lobbyType": {
36027
36049
  "type": "string"
36028
36050
  },
@@ -1894,6 +1894,9 @@
1894
1894
  "callDurationSecs": {
1895
1895
  "type": "integer"
1896
1896
  },
1897
+ "connectionDurationSecs": {
1898
+ "type": "integer"
1899
+ },
1897
1900
  "lobbyType": {
1898
1901
  "type": "string"
1899
1902
  },
@@ -1895,6 +1895,9 @@
1895
1895
  "callDurationSecs": {
1896
1896
  "type": "integer"
1897
1897
  },
1898
+ "connectionDurationSecs": {
1899
+ "type": "integer"
1900
+ },
1898
1901
  "lobbyType": {
1899
1902
  "type": "string"
1900
1903
  },
@@ -2805,6 +2808,10 @@
2805
2808
  }
2806
2809
  }
2807
2810
  },
2811
+ "passThroughMQEventData": {
2812
+ "type": "object",
2813
+ "additionalProperties": true
2814
+ },
2808
2815
  "edgeInfo": {
2809
2816
  "type": "object",
2810
2817
  "description": "Details of a media edge server which is in the media path but does not generate MQE directly",
@@ -954,6 +954,7 @@ export interface Event {
954
954
  };
955
955
  skipInterstitialWindow?: boolean;
956
956
  callDurationSecs?: number;
957
+ connectionDurationSecs?: number;
957
958
  lobbyType?: string;
958
959
  callDirection?: "ORIGINATING" | "TERMINATING";
959
960
  /**
@@ -4718,6 +4719,7 @@ export interface Event {
4718
4719
  };
4719
4720
  skipInterstitialWindow?: boolean;
4720
4721
  callDurationSecs?: number;
4722
+ connectionDurationSecs?: number;
4721
4723
  lobbyType?: string;
4722
4724
  callDirection?: "ORIGINATING" | "TERMINATING";
4723
4725
  /**
@@ -6720,6 +6722,7 @@ export interface Event {
6720
6722
  };
6721
6723
  skipInterstitialWindow?: boolean;
6722
6724
  callDurationSecs?: number;
6725
+ connectionDurationSecs?: number;
6723
6726
  lobbyType?: string;
6724
6727
  callDirection?: "ORIGINATING" | "TERMINATING";
6725
6728
  /**
@@ -7068,6 +7071,7 @@ export interface Event {
7068
7071
  cascadePeerDeployType?: "private" | "public";
7069
7072
  additionalProperties?: false;
7070
7073
  };
7074
+ passThroughMQEventData?: {};
7071
7075
  /**
7072
7076
  * Details of a media edge server which is in the media path but does not generate MQE directly
7073
7077
  */
@@ -11285,6 +11289,7 @@ export interface Event {
11285
11289
  };
11286
11290
  skipInterstitialWindow?: boolean;
11287
11291
  callDurationSecs?: number;
11292
+ connectionDurationSecs?: number;
11288
11293
  lobbyType?: string;
11289
11294
  callDirection?: "ORIGINATING" | "TERMINATING";
11290
11295
  /**
@@ -13056,6 +13061,7 @@ export interface Event {
13056
13061
  };
13057
13062
  skipInterstitialWindow?: boolean;
13058
13063
  callDurationSecs?: number;
13064
+ connectionDurationSecs?: number;
13059
13065
  lobbyType?: string;
13060
13066
  callDirection?: "ORIGINATING" | "TERMINATING";
13061
13067
  /**
@@ -15001,6 +15007,7 @@ export interface Event {
15001
15007
  };
15002
15008
  skipInterstitialWindow?: boolean;
15003
15009
  callDurationSecs?: number;
15010
+ connectionDurationSecs?: number;
15004
15011
  lobbyType?: string;
15005
15012
  callDirection?: "ORIGINATING" | "TERMINATING";
15006
15013
  /**
@@ -16061,6 +16068,7 @@ export interface ClientEvent {
16061
16068
  };
16062
16069
  skipInterstitialWindow?: boolean;
16063
16070
  callDurationSecs?: number;
16071
+ connectionDurationSecs?: number;
16064
16072
  lobbyType?: string;
16065
16073
  callDirection?: "ORIGINATING" | "TERMINATING";
16066
16074
  /**
@@ -19732,6 +19740,7 @@ export interface FeatureEvent {
19732
19740
  };
19733
19741
  skipInterstitialWindow?: boolean;
19734
19742
  callDurationSecs?: number;
19743
+ connectionDurationSecs?: number;
19735
19744
  lobbyType?: string;
19736
19745
  callDirection?: "ORIGINATING" | "TERMINATING";
19737
19746
  /**
@@ -21508,6 +21517,7 @@ export interface MediaQualityEvent {
21508
21517
  };
21509
21518
  skipInterstitialWindow?: boolean;
21510
21519
  callDurationSecs?: number;
21520
+ connectionDurationSecs?: number;
21511
21521
  lobbyType?: string;
21512
21522
  callDirection?: "ORIGINATING" | "TERMINATING";
21513
21523
  /**
@@ -21850,6 +21860,7 @@ export interface MediaQualityEvent {
21850
21860
  cascadePeerDeployType?: "private" | "public";
21851
21861
  additionalProperties?: false;
21852
21862
  };
21863
+ passThroughMQEventData?: {};
21853
21864
  /**
21854
21865
  * Details of a media edge server which is in the media path but does not generate MQE directly
21855
21866
  */
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.1959"
30
+ "version": "1.0.1961"
31
31
  }