@webex/event-dictionary-ts 1.0.1743 → 1.0.1745
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.
|
@@ -3066,6 +3066,7 @@
|
|
|
3066
3066
|
"deep-link",
|
|
3067
3067
|
"protocol-after-upgrade",
|
|
3068
3068
|
"protocol-after-crash",
|
|
3069
|
+
"protocol-refresh-token-expired",
|
|
3069
3070
|
"protocol-generated-link",
|
|
3070
3071
|
"protocol-in-meeting-upgrade"
|
|
3071
3072
|
],
|
|
@@ -4010,6 +4011,14 @@
|
|
|
4010
4011
|
"type": "integer",
|
|
4011
4012
|
"minimum": 0
|
|
4012
4013
|
},
|
|
4014
|
+
"ivrSvcDialInFirstScript": {
|
|
4015
|
+
"type": "integer",
|
|
4016
|
+
"minimum": 0
|
|
4017
|
+
},
|
|
4018
|
+
"ivrSvcDialInTahoeJoin": {
|
|
4019
|
+
"type": "integer",
|
|
4020
|
+
"minimum": 0
|
|
4021
|
+
},
|
|
4013
4022
|
"JMTDetail": {
|
|
4014
4023
|
"type": "string"
|
|
4015
4024
|
},
|
|
@@ -3578,6 +3578,7 @@
|
|
|
3578
3578
|
"deep-link",
|
|
3579
3579
|
"protocol-after-upgrade",
|
|
3580
3580
|
"protocol-after-crash",
|
|
3581
|
+
"protocol-refresh-token-expired",
|
|
3581
3582
|
"protocol-generated-link",
|
|
3582
3583
|
"protocol-in-meeting-upgrade"
|
|
3583
3584
|
],
|
|
@@ -4522,6 +4523,14 @@
|
|
|
4522
4523
|
"type": "integer",
|
|
4523
4524
|
"minimum": 0
|
|
4524
4525
|
},
|
|
4526
|
+
"ivrSvcDialInFirstScript": {
|
|
4527
|
+
"type": "integer",
|
|
4528
|
+
"minimum": 0
|
|
4529
|
+
},
|
|
4530
|
+
"ivrSvcDialInTahoeJoin": {
|
|
4531
|
+
"type": "integer",
|
|
4532
|
+
"minimum": 0
|
|
4533
|
+
},
|
|
4525
4534
|
"JMTDetail": {
|
|
4526
4535
|
"type": "string"
|
|
4527
4536
|
},
|
|
@@ -1540,6 +1540,7 @@ export interface Event {
|
|
|
1540
1540
|
| "deep-link"
|
|
1541
1541
|
| "protocol-after-upgrade"
|
|
1542
1542
|
| "protocol-after-crash"
|
|
1543
|
+
| "protocol-refresh-token-expired"
|
|
1543
1544
|
| "protocol-generated-link"
|
|
1544
1545
|
| "protocol-in-meeting-upgrade";
|
|
1545
1546
|
leaveReason?: "paired-leave" | "one-to-one" | "ended-by-locus";
|
|
@@ -1940,6 +1941,8 @@ export interface Event {
|
|
|
1940
1941
|
interstitialToLoginEnd?: number;
|
|
1941
1942
|
interstitialToJoinOK?: number;
|
|
1942
1943
|
interstitialToMediaOKJMT?: number;
|
|
1944
|
+
ivrSvcDialInFirstScript?: number;
|
|
1945
|
+
ivrSvcDialInTahoeJoin?: number;
|
|
1943
1946
|
JMTDetail?: string;
|
|
1944
1947
|
joinConfJmt?: number;
|
|
1945
1948
|
joinReqResp?: number;
|
|
@@ -15197,6 +15200,7 @@ export interface ClientEvent {
|
|
|
15197
15200
|
| "deep-link"
|
|
15198
15201
|
| "protocol-after-upgrade"
|
|
15199
15202
|
| "protocol-after-crash"
|
|
15203
|
+
| "protocol-refresh-token-expired"
|
|
15200
15204
|
| "protocol-generated-link"
|
|
15201
15205
|
| "protocol-in-meeting-upgrade";
|
|
15202
15206
|
leaveReason?: "paired-leave" | "one-to-one" | "ended-by-locus";
|
|
@@ -15597,6 +15601,8 @@ export interface ClientEvent {
|
|
|
15597
15601
|
interstitialToLoginEnd?: number;
|
|
15598
15602
|
interstitialToJoinOK?: number;
|
|
15599
15603
|
interstitialToMediaOKJMT?: number;
|
|
15604
|
+
ivrSvcDialInFirstScript?: number;
|
|
15605
|
+
ivrSvcDialInTahoeJoin?: number;
|
|
15600
15606
|
JMTDetail?: string;
|
|
15601
15607
|
joinConfJmt?: number;
|
|
15602
15608
|
joinReqResp?: number;
|
package/package.json
CHANGED