@webex/event-dictionary-ts 1.0.1245 → 1.0.1247

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.
@@ -6343,6 +6343,64 @@ export interface Event {
6343
6343
  minDelay: number;
6344
6344
  additionalProperties?: false;
6345
6345
  };
6346
+ endToEndDelayByRtcp?: number;
6347
+ /**
6348
+ * The components of the E2E delay
6349
+ */
6350
+ endToEndDelayComponents?: {
6351
+ /**
6352
+ * avg Time(MS) spent in sender processing
6353
+ */
6354
+ senderTraversalDelay?: number;
6355
+ /**
6356
+ * Avg of RTT/2 between sender client and server
6357
+ */
6358
+ senderTransmitDelay?: number;
6359
+ /**
6360
+ * Avg of total transmit time spent among all servers
6361
+ */
6362
+ totalServerTransmitDelay?: number;
6363
+ /**
6364
+ * Avg of total processing time spent in all servers
6365
+ */
6366
+ totalServerTraversalDelay?: number;
6367
+ additionalProperties?: false;
6368
+ };
6369
+ totalHops?: number;
6370
+ linkNodeList?: {
6371
+ /**
6372
+ * The node type which shows the client and server type shown in the enum lists.
6373
+ */
6374
+ nodeType?:
6375
+ | "WME_CLIENT_WINDOWS"
6376
+ | "WME_CLIENT_MAC"
6377
+ | "WME_CLIENT_IOS"
6378
+ | "WME_CLIENT_ANDROID"
6379
+ | "WME_CLIENT_LINUX"
6380
+ | "DEVICE_CLIENT"
6381
+ | "HOMER_VIDEO_MESH"
6382
+ | "HOMER_CLOUD"
6383
+ | "EDONUS_CLOUD"
6384
+ | "EDONUS_VIDEO_MESH"
6385
+ | "EDGE";
6386
+ /**
6387
+ * The location info, for example 'CN'
6388
+ */
6389
+ regionInfo?: string;
6390
+ /**
6391
+ * The processing time spent in client or server
6392
+ */
6393
+ traversalDelay?: number;
6394
+ /**
6395
+ * RTT/2 between the current node with the last hop
6396
+ */
6397
+ transmitDelay?: number;
6398
+ /**
6399
+ * Whether the current node is cross region with the last hop. false means "not cross" and true means "cross region".
6400
+ */
6401
+ isCrossRegion?: boolean;
6402
+ additionalProperties?: false;
6403
+ }[];
6346
6404
  /**
6347
6405
  * Aggregated end to end delay representing the mean, max, min delay group by csi
6348
6406
  */
@@ -6749,6 +6807,64 @@ export interface Event {
6749
6807
  minDelay: number;
6750
6808
  additionalProperties?: false;
6751
6809
  };
6810
+ endToEndDelayByRtcp?: number;
6811
+ /**
6812
+ * The components of the E2E delay
6813
+ */
6814
+ endToEndDelayComponents?: {
6815
+ /**
6816
+ * avg Time(MS) spent in sender processing
6817
+ */
6818
+ senderTraversalDelay?: number;
6819
+ /**
6820
+ * Avg of RTT/2 between sender client and server
6821
+ */
6822
+ senderTransmitDelay?: number;
6823
+ /**
6824
+ * Avg of total transmit time spent among all servers
6825
+ */
6826
+ totalServerTransmitDelay?: number;
6827
+ /**
6828
+ * Avg of total processing time spent in all servers
6829
+ */
6830
+ totalServerTraversalDelay?: number;
6831
+ additionalProperties?: false;
6832
+ };
6833
+ totalHops?: number;
6834
+ linkNodeList?: {
6835
+ /**
6836
+ * The node type which shows the client and server type shown in the enum lists.
6837
+ */
6838
+ nodeType?:
6839
+ | "WME_CLIENT_WINDOWS"
6840
+ | "WME_CLIENT_MAC"
6841
+ | "WME_CLIENT_IOS"
6842
+ | "WME_CLIENT_ANDROID"
6843
+ | "WME_CLIENT_LINUX"
6844
+ | "DEVICE_CLIENT"
6845
+ | "HOMER_VIDEO_MESH"
6846
+ | "HOMER_CLOUD"
6847
+ | "EDONUS_CLOUD"
6848
+ | "EDONUS_VIDEO_MESH"
6849
+ | "EDGE";
6850
+ /**
6851
+ * The location info, for example 'CN'
6852
+ */
6853
+ regionInfo?: string;
6854
+ /**
6855
+ * The processing time spent in client or server
6856
+ */
6857
+ traversalDelay?: number;
6858
+ /**
6859
+ * RTT/2 between the current node with the last hop
6860
+ */
6861
+ transmitDelay?: number;
6862
+ /**
6863
+ * Whether the current node is cross region with the last hop. false means "not cross" and true means "cross region".
6864
+ */
6865
+ isCrossRegion?: boolean;
6866
+ additionalProperties?: false;
6867
+ }[];
6752
6868
  /**
6753
6869
  * Aggregated end to end delay representing the mean, max, min delay group by csi
6754
6870
  */
@@ -7164,6 +7280,64 @@ export interface Event {
7164
7280
  minDelay: number;
7165
7281
  additionalProperties?: false;
7166
7282
  };
7283
+ endToEndDelayByRtcp?: number;
7284
+ /**
7285
+ * The components of the E2E delay
7286
+ */
7287
+ endToEndDelayComponents?: {
7288
+ /**
7289
+ * avg Time(MS) spent in sender processing
7290
+ */
7291
+ senderTraversalDelay?: number;
7292
+ /**
7293
+ * Avg of RTT/2 between sender client and server
7294
+ */
7295
+ senderTransmitDelay?: number;
7296
+ /**
7297
+ * Avg of total transmit time spent among all servers
7298
+ */
7299
+ totalServerTransmitDelay?: number;
7300
+ /**
7301
+ * Avg of total processing time spent in all servers
7302
+ */
7303
+ totalServerTraversalDelay?: number;
7304
+ additionalProperties?: false;
7305
+ };
7306
+ totalHops?: number;
7307
+ linkNodeList?: {
7308
+ /**
7309
+ * The node type which shows the client and server type shown in the enum lists.
7310
+ */
7311
+ nodeType?:
7312
+ | "WME_CLIENT_WINDOWS"
7313
+ | "WME_CLIENT_MAC"
7314
+ | "WME_CLIENT_IOS"
7315
+ | "WME_CLIENT_ANDROID"
7316
+ | "WME_CLIENT_LINUX"
7317
+ | "DEVICE_CLIENT"
7318
+ | "HOMER_VIDEO_MESH"
7319
+ | "HOMER_CLOUD"
7320
+ | "EDONUS_CLOUD"
7321
+ | "EDONUS_VIDEO_MESH"
7322
+ | "EDGE";
7323
+ /**
7324
+ * The location info, for example 'CN'
7325
+ */
7326
+ regionInfo?: string;
7327
+ /**
7328
+ * The processing time spent in client or server
7329
+ */
7330
+ traversalDelay?: number;
7331
+ /**
7332
+ * RTT/2 between the current node with the last hop
7333
+ */
7334
+ transmitDelay?: number;
7335
+ /**
7336
+ * Whether the current node is cross region with the last hop. false means "not cross" and true means "cross region".
7337
+ */
7338
+ isCrossRegion?: boolean;
7339
+ additionalProperties?: false;
7340
+ }[];
7167
7341
  /**
7168
7342
  * Aggregated end to end delay representing the mean, max, min delay group by csi
7169
7343
  */
@@ -14872,6 +15046,64 @@ export interface MediaQualityEvent {
14872
15046
  minDelay: number;
14873
15047
  additionalProperties?: false;
14874
15048
  };
15049
+ endToEndDelayByRtcp?: number;
15050
+ /**
15051
+ * The components of the E2E delay
15052
+ */
15053
+ endToEndDelayComponents?: {
15054
+ /**
15055
+ * avg Time(MS) spent in sender processing
15056
+ */
15057
+ senderTraversalDelay?: number;
15058
+ /**
15059
+ * Avg of RTT/2 between sender client and server
15060
+ */
15061
+ senderTransmitDelay?: number;
15062
+ /**
15063
+ * Avg of total transmit time spent among all servers
15064
+ */
15065
+ totalServerTransmitDelay?: number;
15066
+ /**
15067
+ * Avg of total processing time spent in all servers
15068
+ */
15069
+ totalServerTraversalDelay?: number;
15070
+ additionalProperties?: false;
15071
+ };
15072
+ totalHops?: number;
15073
+ linkNodeList?: {
15074
+ /**
15075
+ * The node type which shows the client and server type shown in the enum lists.
15076
+ */
15077
+ nodeType?:
15078
+ | "WME_CLIENT_WINDOWS"
15079
+ | "WME_CLIENT_MAC"
15080
+ | "WME_CLIENT_IOS"
15081
+ | "WME_CLIENT_ANDROID"
15082
+ | "WME_CLIENT_LINUX"
15083
+ | "DEVICE_CLIENT"
15084
+ | "HOMER_VIDEO_MESH"
15085
+ | "HOMER_CLOUD"
15086
+ | "EDONUS_CLOUD"
15087
+ | "EDONUS_VIDEO_MESH"
15088
+ | "EDGE";
15089
+ /**
15090
+ * The location info, for example 'CN'
15091
+ */
15092
+ regionInfo?: string;
15093
+ /**
15094
+ * The processing time spent in client or server
15095
+ */
15096
+ traversalDelay?: number;
15097
+ /**
15098
+ * RTT/2 between the current node with the last hop
15099
+ */
15100
+ transmitDelay?: number;
15101
+ /**
15102
+ * Whether the current node is cross region with the last hop. false means "not cross" and true means "cross region".
15103
+ */
15104
+ isCrossRegion?: boolean;
15105
+ additionalProperties?: false;
15106
+ }[];
14875
15107
  /**
14876
15108
  * Aggregated end to end delay representing the mean, max, min delay group by csi
14877
15109
  */
@@ -15278,6 +15510,64 @@ export interface MediaQualityEvent {
15278
15510
  minDelay: number;
15279
15511
  additionalProperties?: false;
15280
15512
  };
15513
+ endToEndDelayByRtcp?: number;
15514
+ /**
15515
+ * The components of the E2E delay
15516
+ */
15517
+ endToEndDelayComponents?: {
15518
+ /**
15519
+ * avg Time(MS) spent in sender processing
15520
+ */
15521
+ senderTraversalDelay?: number;
15522
+ /**
15523
+ * Avg of RTT/2 between sender client and server
15524
+ */
15525
+ senderTransmitDelay?: number;
15526
+ /**
15527
+ * Avg of total transmit time spent among all servers
15528
+ */
15529
+ totalServerTransmitDelay?: number;
15530
+ /**
15531
+ * Avg of total processing time spent in all servers
15532
+ */
15533
+ totalServerTraversalDelay?: number;
15534
+ additionalProperties?: false;
15535
+ };
15536
+ totalHops?: number;
15537
+ linkNodeList?: {
15538
+ /**
15539
+ * The node type which shows the client and server type shown in the enum lists.
15540
+ */
15541
+ nodeType?:
15542
+ | "WME_CLIENT_WINDOWS"
15543
+ | "WME_CLIENT_MAC"
15544
+ | "WME_CLIENT_IOS"
15545
+ | "WME_CLIENT_ANDROID"
15546
+ | "WME_CLIENT_LINUX"
15547
+ | "DEVICE_CLIENT"
15548
+ | "HOMER_VIDEO_MESH"
15549
+ | "HOMER_CLOUD"
15550
+ | "EDONUS_CLOUD"
15551
+ | "EDONUS_VIDEO_MESH"
15552
+ | "EDGE";
15553
+ /**
15554
+ * The location info, for example 'CN'
15555
+ */
15556
+ regionInfo?: string;
15557
+ /**
15558
+ * The processing time spent in client or server
15559
+ */
15560
+ traversalDelay?: number;
15561
+ /**
15562
+ * RTT/2 between the current node with the last hop
15563
+ */
15564
+ transmitDelay?: number;
15565
+ /**
15566
+ * Whether the current node is cross region with the last hop. false means "not cross" and true means "cross region".
15567
+ */
15568
+ isCrossRegion?: boolean;
15569
+ additionalProperties?: false;
15570
+ }[];
15281
15571
  /**
15282
15572
  * Aggregated end to end delay representing the mean, max, min delay group by csi
15283
15573
  */
@@ -15693,6 +15983,64 @@ export interface MediaQualityEvent {
15693
15983
  minDelay: number;
15694
15984
  additionalProperties?: false;
15695
15985
  };
15986
+ endToEndDelayByRtcp?: number;
15987
+ /**
15988
+ * The components of the E2E delay
15989
+ */
15990
+ endToEndDelayComponents?: {
15991
+ /**
15992
+ * avg Time(MS) spent in sender processing
15993
+ */
15994
+ senderTraversalDelay?: number;
15995
+ /**
15996
+ * Avg of RTT/2 between sender client and server
15997
+ */
15998
+ senderTransmitDelay?: number;
15999
+ /**
16000
+ * Avg of total transmit time spent among all servers
16001
+ */
16002
+ totalServerTransmitDelay?: number;
16003
+ /**
16004
+ * Avg of total processing time spent in all servers
16005
+ */
16006
+ totalServerTraversalDelay?: number;
16007
+ additionalProperties?: false;
16008
+ };
16009
+ totalHops?: number;
16010
+ linkNodeList?: {
16011
+ /**
16012
+ * The node type which shows the client and server type shown in the enum lists.
16013
+ */
16014
+ nodeType?:
16015
+ | "WME_CLIENT_WINDOWS"
16016
+ | "WME_CLIENT_MAC"
16017
+ | "WME_CLIENT_IOS"
16018
+ | "WME_CLIENT_ANDROID"
16019
+ | "WME_CLIENT_LINUX"
16020
+ | "DEVICE_CLIENT"
16021
+ | "HOMER_VIDEO_MESH"
16022
+ | "HOMER_CLOUD"
16023
+ | "EDONUS_CLOUD"
16024
+ | "EDONUS_VIDEO_MESH"
16025
+ | "EDGE";
16026
+ /**
16027
+ * The location info, for example 'CN'
16028
+ */
16029
+ regionInfo?: string;
16030
+ /**
16031
+ * The processing time spent in client or server
16032
+ */
16033
+ traversalDelay?: number;
16034
+ /**
16035
+ * RTT/2 between the current node with the last hop
16036
+ */
16037
+ transmitDelay?: number;
16038
+ /**
16039
+ * Whether the current node is cross region with the last hop. false means "not cross" and true means "cross region".
16040
+ */
16041
+ isCrossRegion?: boolean;
16042
+ additionalProperties?: false;
16043
+ }[];
15696
16044
  /**
15697
16045
  * Aggregated end to end delay representing the mean, max, min delay group by csi
15698
16046
  */
package/package.json CHANGED
@@ -29,5 +29,5 @@
29
29
  "access": "public",
30
30
  "registry": "https://registry.npmjs.org"
31
31
  },
32
- "version": "1.0.1245"
32
+ "version": "1.0.1247"
33
33
  }