@webex/event-dictionary-ts 1.0.1314 → 1.0.1316

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.
@@ -13113,6 +13113,52 @@
13113
13113
  ],
13114
13114
  "type": "string"
13115
13115
  },
13116
+ "meetingJoinInfo": {
13117
+ "type": "object",
13118
+ "description": "Details of MeetingJoinInfo.",
13119
+ "additionalProperties": true,
13120
+ "properties": {
13121
+ "globalMeetingIdentifier": {
13122
+ "type": "string"
13123
+ },
13124
+ "joinUri": {
13125
+ "type": "string"
13126
+ },
13127
+ "joinUriHash": {
13128
+ "type": "string"
13129
+ },
13130
+ "meetingPlatform": {
13131
+ "type": "string",
13132
+ "description": "The underlying service provider of the call.",
13133
+ "enum": [
13134
+ "MsTeams",
13135
+ "GoogleMeet",
13136
+ "Zoom",
13137
+ "Webex"
13138
+ ]
13139
+ },
13140
+ "inferredMeetingPlatform": {
13141
+ "type": "string",
13142
+ "description": "The underlying service provider of the call.",
13143
+ "enum": [
13144
+ "MsTeams",
13145
+ "GoogleMeet",
13146
+ "Zoom",
13147
+ "Webex"
13148
+ ]
13149
+ },
13150
+ "clientSignallingProtocol": {
13151
+ "type": "string",
13152
+ "description": "protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced",
13153
+ "enum": [
13154
+ "SIP",
13155
+ "H323",
13156
+ "Locus",
13157
+ "WebRTC"
13158
+ ]
13159
+ }
13160
+ }
13161
+ },
13116
13162
  "identifiers": {
13117
13163
  "description": "Base type for the various identifiers used to connect the dots.\nIn general, these should be populated whenever possible. Subtypes may make a particular key required.\n",
13118
13164
  "type": "object",
@@ -2079,6 +2079,52 @@
2079
2079
  ],
2080
2080
  "type": "string"
2081
2081
  },
2082
+ "meetingJoinInfo": {
2083
+ "type": "object",
2084
+ "description": "Details of MeetingJoinInfo.",
2085
+ "additionalProperties": true,
2086
+ "properties": {
2087
+ "globalMeetingIdentifier": {
2088
+ "type": "string"
2089
+ },
2090
+ "joinUri": {
2091
+ "type": "string"
2092
+ },
2093
+ "joinUriHash": {
2094
+ "type": "string"
2095
+ },
2096
+ "meetingPlatform": {
2097
+ "type": "string",
2098
+ "description": "The underlying service provider of the call.",
2099
+ "enum": [
2100
+ "MsTeams",
2101
+ "GoogleMeet",
2102
+ "Zoom",
2103
+ "Webex"
2104
+ ]
2105
+ },
2106
+ "inferredMeetingPlatform": {
2107
+ "type": "string",
2108
+ "description": "The underlying service provider of the call.",
2109
+ "enum": [
2110
+ "MsTeams",
2111
+ "GoogleMeet",
2112
+ "Zoom",
2113
+ "Webex"
2114
+ ]
2115
+ },
2116
+ "clientSignallingProtocol": {
2117
+ "type": "string",
2118
+ "description": "protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced",
2119
+ "enum": [
2120
+ "SIP",
2121
+ "H323",
2122
+ "Locus",
2123
+ "WebRTC"
2124
+ ]
2125
+ }
2126
+ }
2127
+ },
2082
2128
  "identifiers": {
2083
2129
  "description": "Base type for the various identifiers used to connect the dots.\nIn general, these should be populated whenever possible. Subtypes may make a particular key required.\n",
2084
2130
  "type": "object",
@@ -5438,6 +5438,27 @@ export interface Event {
5438
5438
  ivrServiceUcreAttempts?: number;
5439
5439
  trigger?: "dummyTrigger1" | "dummyTrigger2" | "media-quality";
5440
5440
  name: "server.mediaquality.event" | "client.mediaquality.event";
5441
+ /**
5442
+ * Details of MeetingJoinInfo.
5443
+ */
5444
+ meetingJoinInfo?: {
5445
+ globalMeetingIdentifier?: string;
5446
+ joinUri?: string;
5447
+ joinUriHash?: string;
5448
+ /**
5449
+ * The underlying service provider of the call.
5450
+ */
5451
+ meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
5452
+ /**
5453
+ * The underlying service provider of the call.
5454
+ */
5455
+ inferredMeetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
5456
+ /**
5457
+ * protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
5458
+ */
5459
+ clientSignallingProtocol?: "SIP" | "H323" | "Locus" | "WebRTC";
5460
+ additionalProperties?: false;
5461
+ };
5441
5462
  /**
5442
5463
  * Base type for the various identifiers used to connect the dots.
5443
5464
  * In general, these should be populated whenever possible. Subtypes may make a particular key required.
@@ -14391,6 +14412,27 @@ export interface MediaQualityEvent {
14391
14412
  ivrServiceUcreAttempts?: number;
14392
14413
  trigger?: "dummyTrigger1" | "dummyTrigger2" | "media-quality";
14393
14414
  name: "server.mediaquality.event" | "client.mediaquality.event";
14415
+ /**
14416
+ * Details of MeetingJoinInfo.
14417
+ */
14418
+ meetingJoinInfo?: {
14419
+ globalMeetingIdentifier?: string;
14420
+ joinUri?: string;
14421
+ joinUriHash?: string;
14422
+ /**
14423
+ * The underlying service provider of the call.
14424
+ */
14425
+ meetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
14426
+ /**
14427
+ * The underlying service provider of the call.
14428
+ */
14429
+ inferredMeetingPlatform?: "MsTeams" | "GoogleMeet" | "Zoom" | "Webex";
14430
+ /**
14431
+ * protocols used to help determine how the events are processed as well as how the reports are aggregated and sliced
14432
+ */
14433
+ clientSignallingProtocol?: "SIP" | "H323" | "Locus" | "WebRTC";
14434
+ additionalProperties?: false;
14435
+ };
14394
14436
  /**
14395
14437
  * Base type for the various identifiers used to connect the dots.
14396
14438
  * In general, these should be populated whenever possible. Subtypes may make a particular key required.
package/package.json CHANGED
@@ -28,5 +28,5 @@
28
28
  "access": "public",
29
29
  "registry": "https://registry.npmjs.org"
30
30
  },
31
- "version": "1.0.1314"
31
+ "version": "1.0.1316"
32
32
  }