@webex/event-dictionary-ts 1.0.2099 → 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.
|
@@ -25422,6 +25422,31 @@
|
|
|
25422
25422
|
"type": "number",
|
|
25423
25423
|
"minimum": -9223372036854776000.0,
|
|
25424
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
|
+
}
|
|
25425
25450
|
}
|
|
25426
25451
|
}
|
|
25427
25452
|
}
|
|
@@ -11842,6 +11842,31 @@
|
|
|
11842
11842
|
"type": "number",
|
|
11843
11843
|
"minimum": -9223372036854776000.0,
|
|
11844
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
|
+
}
|
|
11845
11870
|
}
|
|
11846
11871
|
}
|
|
11847
11872
|
}
|
|
@@ -11137,6 +11137,24 @@ export interface Event {
|
|
|
11137
11137
|
additionalProperties?: false;
|
|
11138
11138
|
};
|
|
11139
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
|
+
};
|
|
11140
11158
|
additionalProperties?: false;
|
|
11141
11159
|
};
|
|
11142
11160
|
additionalProperties?: false;
|
|
@@ -26568,6 +26586,24 @@ export interface MediaQualityEvent {
|
|
|
26568
26586
|
additionalProperties?: false;
|
|
26569
26587
|
};
|
|
26570
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
|
+
};
|
|
26571
26607
|
additionalProperties?: false;
|
|
26572
26608
|
};
|
|
26573
26609
|
additionalProperties?: false;
|
package/package.json
CHANGED