@webex/event-dictionary-ts 1.0.1646 → 1.0.1648

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.
@@ -21540,7 +21540,26 @@
21540
21540
  ],
21541
21541
  "type": "string"
21542
21542
  },
21543
- "errorType": {},
21543
+ "errorType": {
21544
+ "type": "string",
21545
+ "enum": [
21546
+ "NO_ERROR\t# No issues, reported under the report section for media error",
21547
+ "DECRYPT_ERROR\t#Decrypt related issues, srtp, mls ++",
21548
+ "DEVICE_ERROR",
21549
+ "LOAD_LIBRARY_ERROR\t# Fail to load media library, including security checks",
21550
+ "NO_FRAME_DECODE_ERROR\t# Video frame decode errors or Audio packet decode error",
21551
+ "NO_PACKET_RECV_ERROR\t# No packet received for a session (media type)",
21552
+ "INITIAL_MEMORY_ERROR\t# Fail to allocate memory. More common on 32-bits than 64-bits OS",
21553
+ "MAC_VIRTUAL_AUDIO_DRV_ERROR\t# In high frame share audio, mac need install virtual audio driver to capture computer audio.",
21554
+ "MEDIA_PROCESS_CRASH_ERROR\t# Media process crash",
21555
+ "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR\t# Lost heart beat from media process, such as media process hung, IPC issue.",
21556
+ "LOCUS_SESSION_CONNECT_ERROR\t# Connect to locus server fail.",
21557
+ "NO_PACKET_SEND_ERROR\t# No packets send out.",
21558
+ "NETWORK_LOST_ERROR\t# Network lost causes meeting end.",
21559
+ "MEDIA_NOT_AVAILABLE\t# Media is not available after media channel is created, such as SCR failure.",
21560
+ "MEDIA_CONNECT_FAILURE"
21561
+ ]
21562
+ },
21544
21563
  "errorCode": {
21545
21564
  "type": "number",
21546
21565
  "minimum": -9223372036854776000.0,
@@ -9272,7 +9272,26 @@
9272
9272
  ],
9273
9273
  "type": "string"
9274
9274
  },
9275
- "errorType": {},
9275
+ "errorType": {
9276
+ "type": "string",
9277
+ "enum": [
9278
+ "NO_ERROR\t# No issues, reported under the report section for media error",
9279
+ "DECRYPT_ERROR\t#Decrypt related issues, srtp, mls ++",
9280
+ "DEVICE_ERROR",
9281
+ "LOAD_LIBRARY_ERROR\t# Fail to load media library, including security checks",
9282
+ "NO_FRAME_DECODE_ERROR\t# Video frame decode errors or Audio packet decode error",
9283
+ "NO_PACKET_RECV_ERROR\t# No packet received for a session (media type)",
9284
+ "INITIAL_MEMORY_ERROR\t# Fail to allocate memory. More common on 32-bits than 64-bits OS",
9285
+ "MAC_VIRTUAL_AUDIO_DRV_ERROR\t# In high frame share audio, mac need install virtual audio driver to capture computer audio.",
9286
+ "MEDIA_PROCESS_CRASH_ERROR\t# Media process crash",
9287
+ "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR\t# Lost heart beat from media process, such as media process hung, IPC issue.",
9288
+ "LOCUS_SESSION_CONNECT_ERROR\t# Connect to locus server fail.",
9289
+ "NO_PACKET_SEND_ERROR\t# No packets send out.",
9290
+ "NETWORK_LOST_ERROR\t# Network lost causes meeting end.",
9291
+ "MEDIA_NOT_AVAILABLE\t# Media is not available after media channel is created, such as SCR failure.",
9292
+ "MEDIA_CONNECT_FAILURE"
9293
+ ]
9294
+ },
9276
9295
  "errorCode": {
9277
9296
  "type": "number",
9278
9297
  "minimum": -9223372036854776000.0,
@@ -9161,7 +9161,22 @@ export interface Event {
9161
9161
  stateTriggeredTime?: string;
9162
9162
  shareInstanceId?: string;
9163
9163
  direction?: "RX" | "TX" | "BOTH";
9164
- errorType?: {};
9164
+ errorType?:
9165
+ | "NO_ERROR\t# No issues, reported under the report section for media error"
9166
+ | "DECRYPT_ERROR\t#Decrypt related issues, srtp, mls ++"
9167
+ | "DEVICE_ERROR"
9168
+ | "LOAD_LIBRARY_ERROR\t# Fail to load media library, including security checks"
9169
+ | "NO_FRAME_DECODE_ERROR\t# Video frame decode errors or Audio packet decode error"
9170
+ | "NO_PACKET_RECV_ERROR\t# No packet received for a session (media type)"
9171
+ | "INITIAL_MEMORY_ERROR\t# Fail to allocate memory. More common on 32-bits than 64-bits OS"
9172
+ | "MAC_VIRTUAL_AUDIO_DRV_ERROR\t# In high frame share audio, mac need install virtual audio driver to capture computer audio."
9173
+ | "MEDIA_PROCESS_CRASH_ERROR\t# Media process crash"
9174
+ | "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR\t# Lost heart beat from media process, such as media process hung, IPC issue."
9175
+ | "LOCUS_SESSION_CONNECT_ERROR\t# Connect to locus server fail."
9176
+ | "NO_PACKET_SEND_ERROR\t# No packets send out."
9177
+ | "NETWORK_LOST_ERROR\t# Network lost causes meeting end."
9178
+ | "MEDIA_NOT_AVAILABLE\t# Media is not available after media channel is created, such as SCR failure."
9179
+ | "MEDIA_CONNECT_FAILURE";
9165
9180
  errorCode?: number;
9166
9181
  errorCodeExt1?: number;
9167
9182
  errorDescription?: string;
@@ -22135,7 +22150,22 @@ export interface MediaQualityEvent {
22135
22150
  stateTriggeredTime?: string;
22136
22151
  shareInstanceId?: string;
22137
22152
  direction?: "RX" | "TX" | "BOTH";
22138
- errorType?: {};
22153
+ errorType?:
22154
+ | "NO_ERROR\t# No issues, reported under the report section for media error"
22155
+ | "DECRYPT_ERROR\t#Decrypt related issues, srtp, mls ++"
22156
+ | "DEVICE_ERROR"
22157
+ | "LOAD_LIBRARY_ERROR\t# Fail to load media library, including security checks"
22158
+ | "NO_FRAME_DECODE_ERROR\t# Video frame decode errors or Audio packet decode error"
22159
+ | "NO_PACKET_RECV_ERROR\t# No packet received for a session (media type)"
22160
+ | "INITIAL_MEMORY_ERROR\t# Fail to allocate memory. More common on 32-bits than 64-bits OS"
22161
+ | "MAC_VIRTUAL_AUDIO_DRV_ERROR\t# In high frame share audio, mac need install virtual audio driver to capture computer audio."
22162
+ | "MEDIA_PROCESS_CRASH_ERROR\t# Media process crash"
22163
+ | "HEARTBEAT_LOST_WITH_MEDIA_PROCESS_ERROR\t# Lost heart beat from media process, such as media process hung, IPC issue."
22164
+ | "LOCUS_SESSION_CONNECT_ERROR\t# Connect to locus server fail."
22165
+ | "NO_PACKET_SEND_ERROR\t# No packets send out."
22166
+ | "NETWORK_LOST_ERROR\t# Network lost causes meeting end."
22167
+ | "MEDIA_NOT_AVAILABLE\t# Media is not available after media channel is created, such as SCR failure."
22168
+ | "MEDIA_CONNECT_FAILURE";
22139
22169
  errorCode?: number;
22140
22170
  errorCodeExt1?: number;
22141
22171
  errorDescription?: string;
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.1646"
31
+ "version": "1.0.1648"
32
32
  }