@webex/event-dictionary-ts 1.0.1660 → 1.0.1662

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.
@@ -29697,6 +29697,31 @@
29697
29697
  }
29698
29698
  }
29699
29699
  }
29700
+ },
29701
+ "edgeSideMetadata": {
29702
+ "type": "object",
29703
+ "description": "The metadata associated with an EdgeSide",
29704
+ "additionalProperties": true,
29705
+ "properties": {
29706
+ "localIP": {
29707
+ "type": "string"
29708
+ },
29709
+ "remoteIP": {
29710
+ "type": "string"
29711
+ },
29712
+ "rtcpLocalPort": {
29713
+ "type": "string"
29714
+ },
29715
+ "rtcpRemotePort": {
29716
+ "type": "string"
29717
+ },
29718
+ "rtpLocalPort": {
29719
+ "type": "string"
29720
+ },
29721
+ "rtpRemotePort": {
29722
+ "type": "string"
29723
+ }
29724
+ }
29700
29725
  }
29701
29726
  }
29702
29727
  },
@@ -30464,6 +30489,31 @@
30464
30489
  }
30465
30490
  }
30466
30491
  }
30492
+ },
30493
+ "edgeSideMetadata": {
30494
+ "type": "object",
30495
+ "description": "The metadata associated with an EdgeSide",
30496
+ "additionalProperties": true,
30497
+ "properties": {
30498
+ "localIP": {
30499
+ "type": "string"
30500
+ },
30501
+ "remoteIP": {
30502
+ "type": "string"
30503
+ },
30504
+ "rtcpLocalPort": {
30505
+ "type": "string"
30506
+ },
30507
+ "rtcpRemotePort": {
30508
+ "type": "string"
30509
+ },
30510
+ "rtpLocalPort": {
30511
+ "type": "string"
30512
+ },
30513
+ "rtpRemotePort": {
30514
+ "type": "string"
30515
+ }
30516
+ }
30467
30517
  }
30468
30518
  }
30469
30519
  }
@@ -12313,6 +12313,18 @@ export interface Event {
12313
12313
  };
12314
12314
  additionalProperties?: false;
12315
12315
  };
12316
+ /**
12317
+ * The metadata associated with an EdgeSide
12318
+ */
12319
+ edgeSideMetadata?: {
12320
+ localIP?: string;
12321
+ remoteIP?: string;
12322
+ rtcpLocalPort?: string;
12323
+ rtcpRemotePort?: string;
12324
+ rtpLocalPort?: string;
12325
+ rtpRemotePort?: string;
12326
+ additionalProperties?: false;
12327
+ };
12316
12328
  additionalProperties?: false;
12317
12329
  };
12318
12330
  rightSide?: {
@@ -12522,6 +12534,18 @@ export interface Event {
12522
12534
  };
12523
12535
  additionalProperties?: false;
12524
12536
  };
12537
+ /**
12538
+ * The metadata associated with an EdgeSide
12539
+ */
12540
+ edgeSideMetadata?: {
12541
+ localIP?: string;
12542
+ remoteIP?: string;
12543
+ rtcpLocalPort?: string;
12544
+ rtcpRemotePort?: string;
12545
+ rtpLocalPort?: string;
12546
+ rtpRemotePort?: string;
12547
+ additionalProperties?: false;
12548
+ };
12525
12549
  additionalProperties?: false;
12526
12550
  };
12527
12551
  additionalProperties?: false;
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.1660"
31
+ "version": "1.0.1662"
32
32
  }