@webex/event-dictionary-ts 1.0.2011 → 1.0.2013
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.
|
@@ -2809,6 +2809,9 @@
|
|
|
2809
2809
|
"sign-up"
|
|
2810
2810
|
],
|
|
2811
2811
|
"type": "string"
|
|
2812
|
+
},
|
|
2813
|
+
"userFound": {
|
|
2814
|
+
"type": "boolean"
|
|
2812
2815
|
}
|
|
2813
2816
|
}
|
|
2814
2817
|
},
|
|
@@ -10895,6 +10898,9 @@
|
|
|
10895
10898
|
"sign-up"
|
|
10896
10899
|
],
|
|
10897
10900
|
"type": "string"
|
|
10901
|
+
},
|
|
10902
|
+
"userFound": {
|
|
10903
|
+
"type": "boolean"
|
|
10898
10904
|
}
|
|
10899
10905
|
}
|
|
10900
10906
|
},
|
|
@@ -11091,6 +11097,7 @@
|
|
|
11091
11097
|
"server.breakout-session.move.response",
|
|
11092
11098
|
"server.cascade.initiated",
|
|
11093
11099
|
"server.confluence.move.response",
|
|
11100
|
+
"server.keyframe.request",
|
|
11094
11101
|
"server.lobby-media.rx.start",
|
|
11095
11102
|
"server.lobby-media.tx.start",
|
|
11096
11103
|
"server.media.alert.info",
|
|
@@ -13217,6 +13224,9 @@
|
|
|
13217
13224
|
},
|
|
13218
13225
|
"secureMedia": {
|
|
13219
13226
|
"type": "boolean"
|
|
13227
|
+
},
|
|
13228
|
+
"isMain": {
|
|
13229
|
+
"type": "boolean"
|
|
13220
13230
|
}
|
|
13221
13231
|
}
|
|
13222
13232
|
},
|
|
@@ -15520,6 +15530,9 @@
|
|
|
15520
15530
|
"sign-up"
|
|
15521
15531
|
],
|
|
15522
15532
|
"type": "string"
|
|
15533
|
+
},
|
|
15534
|
+
"userFound": {
|
|
15535
|
+
"type": "boolean"
|
|
15523
15536
|
}
|
|
15524
15537
|
}
|
|
15525
15538
|
},
|
|
@@ -26880,6 +26893,9 @@
|
|
|
26880
26893
|
"sign-up"
|
|
26881
26894
|
],
|
|
26882
26895
|
"type": "string"
|
|
26896
|
+
},
|
|
26897
|
+
"userFound": {
|
|
26898
|
+
"type": "boolean"
|
|
26883
26899
|
}
|
|
26884
26900
|
}
|
|
26885
26901
|
},
|
|
@@ -30952,6 +30968,9 @@
|
|
|
30952
30968
|
"sign-up"
|
|
30953
30969
|
],
|
|
30954
30970
|
"type": "string"
|
|
30971
|
+
},
|
|
30972
|
+
"userFound": {
|
|
30973
|
+
"type": "boolean"
|
|
30955
30974
|
}
|
|
30956
30975
|
}
|
|
30957
30976
|
},
|
|
@@ -36744,6 +36763,9 @@
|
|
|
36744
36763
|
"sign-up"
|
|
36745
36764
|
],
|
|
36746
36765
|
"type": "string"
|
|
36766
|
+
},
|
|
36767
|
+
"userFound": {
|
|
36768
|
+
"type": "boolean"
|
|
36747
36769
|
}
|
|
36748
36770
|
}
|
|
36749
36771
|
},
|
|
@@ -1101,6 +1101,7 @@ export interface Event {
|
|
|
1101
1101
|
additionalProperties?: false;
|
|
1102
1102
|
};
|
|
1103
1103
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
1104
|
+
userFound?: boolean;
|
|
1104
1105
|
additionalProperties?: false;
|
|
1105
1106
|
};
|
|
1106
1107
|
isPrivateMeeting?: boolean;
|
|
@@ -4907,6 +4908,7 @@ export interface Event {
|
|
|
4907
4908
|
additionalProperties?: false;
|
|
4908
4909
|
};
|
|
4909
4910
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
4911
|
+
userFound?: boolean;
|
|
4910
4912
|
additionalProperties?: false;
|
|
4911
4913
|
};
|
|
4912
4914
|
isPrivateMeeting?: boolean;
|
|
@@ -5097,6 +5099,7 @@ export interface Event {
|
|
|
5097
5099
|
| "server.breakout-session.move.response"
|
|
5098
5100
|
| "server.cascade.initiated"
|
|
5099
5101
|
| "server.confluence.move.response"
|
|
5102
|
+
| "server.keyframe.request"
|
|
5100
5103
|
| "server.lobby-media.rx.start"
|
|
5101
5104
|
| "server.lobby-media.tx.start"
|
|
5102
5105
|
| "server.media.alert.info"
|
|
@@ -6083,6 +6086,7 @@ export interface Event {
|
|
|
6083
6086
|
signInRegion?: string;
|
|
6084
6087
|
isAnswered?: boolean;
|
|
6085
6088
|
secureMedia?: boolean;
|
|
6089
|
+
isMain?: boolean;
|
|
6086
6090
|
additionalProperties?: false;
|
|
6087
6091
|
}
|
|
6088
6092
|
| {
|
|
@@ -6913,6 +6917,7 @@ export interface Event {
|
|
|
6913
6917
|
additionalProperties?: false;
|
|
6914
6918
|
};
|
|
6915
6919
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
6920
|
+
userFound?: boolean;
|
|
6916
6921
|
additionalProperties?: false;
|
|
6917
6922
|
};
|
|
6918
6923
|
isPrivateMeeting?: boolean;
|
|
@@ -11550,6 +11555,7 @@ export interface Event {
|
|
|
11550
11555
|
additionalProperties?: false;
|
|
11551
11556
|
};
|
|
11552
11557
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
11558
|
+
userFound?: boolean;
|
|
11553
11559
|
additionalProperties?: false;
|
|
11554
11560
|
};
|
|
11555
11561
|
isPrivateMeeting?: boolean;
|
|
@@ -13326,6 +13332,7 @@ export interface Event {
|
|
|
13326
13332
|
additionalProperties?: false;
|
|
13327
13333
|
};
|
|
13328
13334
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
13335
|
+
userFound?: boolean;
|
|
13329
13336
|
additionalProperties?: false;
|
|
13330
13337
|
};
|
|
13331
13338
|
isPrivateMeeting?: boolean;
|
|
@@ -15283,6 +15290,7 @@ export interface Event {
|
|
|
15283
15290
|
additionalProperties?: false;
|
|
15284
15291
|
};
|
|
15285
15292
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
15293
|
+
userFound?: boolean;
|
|
15286
15294
|
additionalProperties?: false;
|
|
15287
15295
|
};
|
|
15288
15296
|
isPrivateMeeting?: boolean;
|
|
@@ -16310,6 +16318,7 @@ export interface ClientEvent {
|
|
|
16310
16318
|
additionalProperties?: false;
|
|
16311
16319
|
};
|
|
16312
16320
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
16321
|
+
userFound?: boolean;
|
|
16313
16322
|
additionalProperties?: false;
|
|
16314
16323
|
};
|
|
16315
16324
|
isPrivateMeeting?: boolean;
|
|
@@ -20023,6 +20032,7 @@ export interface FeatureEvent {
|
|
|
20023
20032
|
additionalProperties?: false;
|
|
20024
20033
|
};
|
|
20025
20034
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
20035
|
+
userFound?: boolean;
|
|
20026
20036
|
additionalProperties?: false;
|
|
20027
20037
|
};
|
|
20028
20038
|
isPrivateMeeting?: boolean;
|
|
@@ -21804,6 +21814,7 @@ export interface MediaQualityEvent {
|
|
|
21804
21814
|
additionalProperties?: false;
|
|
21805
21815
|
};
|
|
21806
21816
|
signInSignUpType?: "sign-in" | "sign-up";
|
|
21817
|
+
userFound?: boolean;
|
|
21807
21818
|
additionalProperties?: false;
|
|
21808
21819
|
};
|
|
21809
21820
|
isPrivateMeeting?: boolean;
|
package/package.json
CHANGED