@webex/event-dictionary-ts 1.0.1828 → 1.0.1830
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.
|
@@ -5000,6 +5000,9 @@
|
|
|
5000
5000
|
"public"
|
|
5001
5001
|
],
|
|
5002
5002
|
"type": "string"
|
|
5003
|
+
},
|
|
5004
|
+
"isPrivateMeeting": {
|
|
5005
|
+
"type": "boolean"
|
|
5003
5006
|
}
|
|
5004
5007
|
}
|
|
5005
5008
|
},
|
|
@@ -15683,6 +15686,9 @@
|
|
|
15683
15686
|
"public"
|
|
15684
15687
|
],
|
|
15685
15688
|
"type": "string"
|
|
15689
|
+
},
|
|
15690
|
+
"isPrivateMeeting": {
|
|
15691
|
+
"type": "boolean"
|
|
15686
15692
|
}
|
|
15687
15693
|
}
|
|
15688
15694
|
},
|
|
@@ -29640,6 +29646,9 @@
|
|
|
29640
29646
|
"public"
|
|
29641
29647
|
],
|
|
29642
29648
|
"type": "string"
|
|
29649
|
+
},
|
|
29650
|
+
"isPrivateMeeting": {
|
|
29651
|
+
"type": "boolean"
|
|
29643
29652
|
}
|
|
29644
29653
|
}
|
|
29645
29654
|
},
|
|
@@ -2134,6 +2134,7 @@ export interface Event {
|
|
|
2134
2134
|
| "MSE"
|
|
2135
2135
|
| "UNKNOWN";
|
|
2136
2136
|
cascadePeerDeployType?: "private" | "public";
|
|
2137
|
+
isPrivateMeeting?: boolean;
|
|
2137
2138
|
additionalProperties?: false;
|
|
2138
2139
|
};
|
|
2139
2140
|
/**
|
|
@@ -6928,6 +6929,7 @@ export interface Event {
|
|
|
6928
6929
|
| "MSE"
|
|
6929
6930
|
| "UNKNOWN";
|
|
6930
6931
|
cascadePeerDeployType?: "private" | "public";
|
|
6932
|
+
isPrivateMeeting?: boolean;
|
|
6931
6933
|
additionalProperties?: false;
|
|
6932
6934
|
};
|
|
6933
6935
|
/**
|
|
@@ -12559,6 +12561,7 @@ export interface Event {
|
|
|
12559
12561
|
| "MSE"
|
|
12560
12562
|
| "UNKNOWN";
|
|
12561
12563
|
cascadePeerDeployType?: "private" | "public";
|
|
12564
|
+
isPrivateMeeting?: boolean;
|
|
12562
12565
|
additionalProperties?: false;
|
|
12563
12566
|
};
|
|
12564
12567
|
edgeIntervals: {
|
|
@@ -16299,6 +16302,7 @@ export interface ClientEvent {
|
|
|
16299
16302
|
| "MSE"
|
|
16300
16303
|
| "UNKNOWN";
|
|
16301
16304
|
cascadePeerDeployType?: "private" | "public";
|
|
16305
|
+
isPrivateMeeting?: boolean;
|
|
16302
16306
|
additionalProperties?: false;
|
|
16303
16307
|
};
|
|
16304
16308
|
/**
|
|
@@ -20793,6 +20797,7 @@ export interface MediaQualityEvent {
|
|
|
20793
20797
|
| "MSE"
|
|
20794
20798
|
| "UNKNOWN";
|
|
20795
20799
|
cascadePeerDeployType?: "private" | "public";
|
|
20800
|
+
isPrivateMeeting?: boolean;
|
|
20796
20801
|
additionalProperties?: false;
|
|
20797
20802
|
};
|
|
20798
20803
|
/**
|
package/package.json
CHANGED