@webex/event-dictionary-ts 1.0.2098 → 1.0.2100

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.
@@ -19952,7 +19952,26 @@
19952
19952
  "frameRate"
19953
19953
  ],
19954
19954
  "properties": {
19955
- "sourceType": {},
19955
+ "sourceType": {
19956
+ "type": "string",
19957
+ "description": "Video source type for outgoing video sessions",
19958
+ "enum": [
19959
+ "HDMI",
19960
+ "SDI",
19961
+ "InternCamera",
19962
+ "VGA",
19963
+ "USBC",
19964
+ "USBCamera",
19965
+ "VideoOverEthernet",
19966
+ "AirPlay",
19967
+ "Miracast",
19968
+ "DirectShare",
19969
+ "JpgPresentation",
19970
+ "JpgVideoMutePoster",
19971
+ "JpgRemoteAccess",
19972
+ "Other"
19973
+ ]
19974
+ },
19956
19975
  "sourceIdentifier": {
19957
19976
  "type": "string"
19958
19977
  },
@@ -25403,6 +25422,31 @@
25403
25422
  "type": "number",
25404
25423
  "minimum": -9223372036854776000.0,
25405
25424
  "maximum": 9223372036854776000.0
25425
+ },
25426
+ "networkInfrastructureInfo": {
25427
+ "type": "object",
25428
+ "description": "Network infrastructure identification - uniquely identifies network elements (switches, WiFi APs, cell towers).",
25429
+ "additionalProperties": true,
25430
+ "required": [
25431
+ "id"
25432
+ ],
25433
+ "properties": {
25434
+ "elementName": {
25435
+ "type": "string",
25436
+ "description": "Friendly name of the network element (switch name, access point name, or cellular provider name). It can be empty example for wifi, the AP names can be hidden.",
25437
+ "example": "SW-BLDG-A-FL2-IDF1"
25438
+ },
25439
+ "id": {
25440
+ "type": "string",
25441
+ "description": "ID is BSSID for WiFi- derived from AP's mac address, designed to be globally unique. ID is PLMN ID for Cellular- It is globally unique. ID is Chassis ID for Switch- derived from switch's mac address, designed to be globally unique.",
25442
+ "example": "00:1A:2B:3C:4D:5E"
25443
+ },
25444
+ "interfaceName": {
25445
+ "type": "string",
25446
+ "description": "LLDP Port ID or interface identifier on the switch or Service Set Identifier (WiFi network name)",
25447
+ "example": "GigabitEthernet1/0/24"
25448
+ }
25449
+ }
25406
25450
  }
25407
25451
  }
25408
25452
  }
@@ -6372,7 +6372,26 @@
6372
6372
  "frameRate"
6373
6373
  ],
6374
6374
  "properties": {
6375
- "sourceType": {},
6375
+ "sourceType": {
6376
+ "type": "string",
6377
+ "description": "Video source type for outgoing video sessions",
6378
+ "enum": [
6379
+ "HDMI",
6380
+ "SDI",
6381
+ "InternCamera",
6382
+ "VGA",
6383
+ "USBC",
6384
+ "USBCamera",
6385
+ "VideoOverEthernet",
6386
+ "AirPlay",
6387
+ "Miracast",
6388
+ "DirectShare",
6389
+ "JpgPresentation",
6390
+ "JpgVideoMutePoster",
6391
+ "JpgRemoteAccess",
6392
+ "Other"
6393
+ ]
6394
+ },
6376
6395
  "sourceIdentifier": {
6377
6396
  "type": "string"
6378
6397
  },
@@ -11823,6 +11842,31 @@
11823
11842
  "type": "number",
11824
11843
  "minimum": -9223372036854776000.0,
11825
11844
  "maximum": 9223372036854776000.0
11845
+ },
11846
+ "networkInfrastructureInfo": {
11847
+ "type": "object",
11848
+ "description": "Network infrastructure identification - uniquely identifies network elements (switches, WiFi APs, cell towers).",
11849
+ "additionalProperties": true,
11850
+ "required": [
11851
+ "id"
11852
+ ],
11853
+ "properties": {
11854
+ "elementName": {
11855
+ "type": "string",
11856
+ "description": "Friendly name of the network element (switch name, access point name, or cellular provider name). It can be empty example for wifi, the AP names can be hidden.",
11857
+ "example": "SW-BLDG-A-FL2-IDF1"
11858
+ },
11859
+ "id": {
11860
+ "type": "string",
11861
+ "description": "ID is BSSID for WiFi- derived from AP's mac address, designed to be globally unique. ID is PLMN ID for Cellular- It is globally unique. ID is Chassis ID for Switch- derived from switch's mac address, designed to be globally unique.",
11862
+ "example": "00:1A:2B:3C:4D:5E"
11863
+ },
11864
+ "interfaceName": {
11865
+ "type": "string",
11866
+ "description": "LLDP Port ID or interface identifier on the switch or Service Set Identifier (WiFi network name)",
11867
+ "example": "GigabitEthernet1/0/24"
11868
+ }
11869
+ }
11826
11870
  }
11827
11871
  }
11828
11872
  }
@@ -8696,7 +8696,24 @@ export interface Event {
8696
8696
  additionalProperties?: false;
8697
8697
  }[];
8698
8698
  videoSourceInputs?: {
8699
- sourceType: {};
8699
+ /**
8700
+ * Video source type for outgoing video sessions
8701
+ */
8702
+ sourceType:
8703
+ | "HDMI"
8704
+ | "SDI"
8705
+ | "InternCamera"
8706
+ | "VGA"
8707
+ | "USBC"
8708
+ | "USBCamera"
8709
+ | "VideoOverEthernet"
8710
+ | "AirPlay"
8711
+ | "Miracast"
8712
+ | "DirectShare"
8713
+ | "JpgPresentation"
8714
+ | "JpgVideoMutePoster"
8715
+ | "JpgRemoteAccess"
8716
+ | "Other";
8700
8717
  sourceIdentifier: string;
8701
8718
  correlationId?: string;
8702
8719
  lastIntervalNumber?: number;
@@ -11120,6 +11137,24 @@ export interface Event {
11120
11137
  additionalProperties?: false;
11121
11138
  };
11122
11139
  configuredBitrate?: number;
11140
+ /**
11141
+ * Network infrastructure identification - uniquely identifies network elements (switches, WiFi APs, cell towers).
11142
+ */
11143
+ networkInfrastructureInfo?: {
11144
+ /**
11145
+ * Friendly name of the network element (switch name, access point name, or cellular provider name). It can be empty example for wifi, the AP names can be hidden.
11146
+ */
11147
+ elementName?: string;
11148
+ /**
11149
+ * ID is BSSID for WiFi- derived from AP's mac address, designed to be globally unique. ID is PLMN ID for Cellular- It is globally unique. ID is Chassis ID for Switch- derived from switch's mac address, designed to be globally unique.
11150
+ */
11151
+ id: string;
11152
+ /**
11153
+ * LLDP Port ID or interface identifier on the switch or Service Set Identifier (WiFi network name)
11154
+ */
11155
+ interfaceName?: string;
11156
+ additionalProperties?: false;
11157
+ };
11123
11158
  additionalProperties?: false;
11124
11159
  };
11125
11160
  additionalProperties?: false;
@@ -24110,7 +24145,24 @@ export interface MediaQualityEvent {
24110
24145
  additionalProperties?: false;
24111
24146
  }[];
24112
24147
  videoSourceInputs?: {
24113
- sourceType: {};
24148
+ /**
24149
+ * Video source type for outgoing video sessions
24150
+ */
24151
+ sourceType:
24152
+ | "HDMI"
24153
+ | "SDI"
24154
+ | "InternCamera"
24155
+ | "VGA"
24156
+ | "USBC"
24157
+ | "USBCamera"
24158
+ | "VideoOverEthernet"
24159
+ | "AirPlay"
24160
+ | "Miracast"
24161
+ | "DirectShare"
24162
+ | "JpgPresentation"
24163
+ | "JpgVideoMutePoster"
24164
+ | "JpgRemoteAccess"
24165
+ | "Other";
24114
24166
  sourceIdentifier: string;
24115
24167
  correlationId?: string;
24116
24168
  lastIntervalNumber?: number;
@@ -26534,6 +26586,24 @@ export interface MediaQualityEvent {
26534
26586
  additionalProperties?: false;
26535
26587
  };
26536
26588
  configuredBitrate?: number;
26589
+ /**
26590
+ * Network infrastructure identification - uniquely identifies network elements (switches, WiFi APs, cell towers).
26591
+ */
26592
+ networkInfrastructureInfo?: {
26593
+ /**
26594
+ * Friendly name of the network element (switch name, access point name, or cellular provider name). It can be empty example for wifi, the AP names can be hidden.
26595
+ */
26596
+ elementName?: string;
26597
+ /**
26598
+ * ID is BSSID for WiFi- derived from AP's mac address, designed to be globally unique. ID is PLMN ID for Cellular- It is globally unique. ID is Chassis ID for Switch- derived from switch's mac address, designed to be globally unique.
26599
+ */
26600
+ id: string;
26601
+ /**
26602
+ * LLDP Port ID or interface identifier on the switch or Service Set Identifier (WiFi network name)
26603
+ */
26604
+ interfaceName?: string;
26605
+ additionalProperties?: false;
26606
+ };
26537
26607
  additionalProperties?: false;
26538
26608
  };
26539
26609
  additionalProperties?: false;
package/package.json CHANGED
@@ -27,5 +27,5 @@
27
27
  "access": "public",
28
28
  "registry": "https://registry.npmjs.org"
29
29
  },
30
- "version": "1.0.2098"
30
+ "version": "1.0.2100"
31
31
  }