@webex/event-dictionary-ts 0.0.3 → 0.0.1236

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.
package/README.md CHANGED
@@ -1,4 +1,46 @@
1
1
  # @webex/event-dictionary-ts
2
2
 
3
- This package is used as a type-only module to provide typing to the event
4
- tooling within the various `@webex` packages.
3
+ This package is designed as a *type module* to be consumed within various `@webex` scoped packages. This module reflects the contents of our event dictionary tooling internally, exposed for external consumption.
4
+
5
+ ## Table of Contents
6
+
7
+ * [Consumption](#consumption)
8
+ * [Installation](#installation)
9
+ * [Usage](#usage)
10
+ * [Contribute](#contribute)
11
+ * [Maintainers](#maintainers)
12
+
13
+ ## Consumption
14
+
15
+ This package is intended to be consumed within a [TypeScript](https://www.typescriptlang.org/) project as a *type module*.
16
+
17
+ ### Installation
18
+
19
+ This project is meant to be consumed as a **dev-dependency**.
20
+
21
+ Installation can be performed by using the following commands:
22
+
23
+ ```bash
24
+ # Project root
25
+ yarn add --dev @webex/event-dictionary-ts
26
+ ```
27
+
28
+ ### Usage
29
+
30
+ This package is expected to be consumed as a TypeScript *type module*.
31
+
32
+ ```ts
33
+ import type { Event } from '@webex/event-dictionary-ts';
34
+ ```
35
+
36
+ To see a full list of event interfaces, please inspect the `./dist/index.d.ts` file from the root of this module.
37
+
38
+ ## Contribute
39
+
40
+ This product is a reflection of our internal event designations and is not intended to be contributed to externally, and exists only as a permeable resource for other products interacting with our metrics service.
41
+
42
+ ## Maintainers
43
+
44
+ This package is maintained by [Webex by Cisco](https://www.webex.com/)
45
+
46
+
@@ -235,6 +235,14 @@ export interface Event {
235
235
  canProceed: boolean;
236
236
  state?: string;
237
237
  mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
238
+ /**
239
+ * Details associated with a share floor type
240
+ */
241
+ floorType?: {
242
+ name: "DEFAULT" | "EMBEDDED_APP" | "OTHER";
243
+ priority?: {};
244
+ additionalProperties?: false;
245
+ };
238
246
  csi?: number;
239
247
  /**
240
248
  * media capability for both transmit and receive
@@ -267,7 +275,7 @@ export interface Event {
267
275
  additionalProperties?: false;
268
276
  };
269
277
  mediaLines?: {
270
- mediaType: "audio" | "embedded_app" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
278
+ mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
271
279
  remoteIP?: string;
272
280
  localIP?: string;
273
281
  localNetworkPrefix?: string;
@@ -820,6 +828,18 @@ export interface Event {
820
828
  granted?: "one_way" | "two_way";
821
829
  additionalProperties?: false;
822
830
  };
831
+ /**
832
+ * Pstn Carrier Infos
833
+ */
834
+ pstnCarrierInfo?: {
835
+ cic?: string;
836
+ carrierName?: string;
837
+ ucreDnsSrvs?: string[];
838
+ additionalProperties?: false;
839
+ };
840
+ pstnAudioCallType?: "PSTN" | "CCA_E" | "CCA_SP" | "EDGE_AUDIO";
841
+ l2sipCallbackUrl?: string;
842
+ ivrDialingStatusOriginator?: "L2SIP" | "CLOUD_PROXY" | "CARRIER" | "UNIDENTIFIED";
823
843
  name:
824
844
  | "client.alert.displayed"
825
845
  | "client.alert.removed"
@@ -885,10 +905,12 @@ export interface Event {
885
905
  | "client.locus.media.request"
886
906
  | "client.locus.media.response"
887
907
  | "client.media-engine.crash"
908
+ | "client.media-engine.launched"
888
909
  | "client.media-engine.lost"
889
910
  | "client.media-engine.local-sdp-generated"
890
911
  | "client.media-engine.ready"
891
912
  | "client.media-engine.remote-sdp-received"
913
+ | "client.media-engine.start-launch"
892
914
  | "client.media-status"
893
915
  | "client.media.capabilities"
894
916
  | "client.media.reachability"
@@ -957,6 +979,8 @@ export interface Event {
957
979
  | "client.muted"
958
980
  | "client.network.changed"
959
981
  | "client.notification.received"
982
+ | "client.onboarding-window.start"
983
+ | "client.onboarding-window.end"
960
984
  | "client.permission.closed"
961
985
  | "client.permission.prompted"
962
986
  | "client.pin.collected"
@@ -2946,6 +2970,14 @@ export interface Event {
2946
2970
  * iOS specific. The audio session is activated.
2947
2971
  */
2948
2972
  iosAudioSessionActiveTime?: number;
2973
+ /**
2974
+ * If the call was started in background then when the user unlocks the screen the time is recorded. At this time the camera will be opened. Meaningful only on iOS.
2975
+ */
2976
+ switchedToForegroundTime?: number;
2977
+ /**
2978
+ * The time between call join and call close.
2979
+ */
2980
+ callDuration?: number;
2949
2981
  additionalProperties?: false;
2950
2982
  };
2951
2983
  /**
@@ -2954,10 +2986,13 @@ export interface Event {
2954
2986
  wxcCallMetadata?: {
2955
2987
  bwcCallType?: "Sip" | "Xsi" | "Other";
2956
2988
  callAcceptInBackground?: boolean;
2989
+ callNegotiatedAsVideo?: boolean;
2957
2990
  callOrigin?: string;
2958
2991
  callType?: string;
2959
2992
  endReason?: string;
2993
+ iceEnabled?: boolean;
2960
2994
  iosAcceptCallImmediately?: boolean;
2995
+ ipv6Negotiated?: boolean;
2961
2996
  mediaCreateOnCallCreate?: boolean;
2962
2997
  mediaStartOnCallCreate?: boolean;
2963
2998
  wxcCallId?: string;
@@ -2969,6 +3004,14 @@ export interface Event {
2969
3004
  canProceed: boolean;
2970
3005
  state?: string;
2971
3006
  mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
3007
+ /**
3008
+ * Details associated with a share floor type
3009
+ */
3010
+ floorType?: {
3011
+ name: "DEFAULT" | "EMBEDDED_APP" | "OTHER";
3012
+ priority?: {};
3013
+ additionalProperties?: false;
3014
+ };
2972
3015
  csi?: number;
2973
3016
  /**
2974
3017
  * media capability for both transmit and receive
@@ -3001,7 +3044,7 @@ export interface Event {
3001
3044
  additionalProperties?: false;
3002
3045
  };
3003
3046
  mediaLines?: {
3004
- mediaType: "audio" | "embedded_app" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
3047
+ mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
3005
3048
  remoteIP?: string;
3006
3049
  localIP?: string;
3007
3050
  localNetworkPrefix?: string;
@@ -3661,6 +3704,18 @@ export interface Event {
3661
3704
  seq?: number;
3662
3705
  additionalProperties?: false;
3663
3706
  };
3707
+ /**
3708
+ * Pstn Carrier Infos
3709
+ */
3710
+ pstnCarrierInfo?: {
3711
+ cic?: string;
3712
+ carrierName?: string;
3713
+ ucreDnsSrvs?: string[];
3714
+ additionalProperties?: false;
3715
+ };
3716
+ pstnAudioCallType?: "PSTN" | "CCA_E" | "CCA_SP" | "EDGE_AUDIO";
3717
+ l2sipCallbackUrl?: string;
3718
+ ivrDialingStatusOriginator?: "L2SIP" | "CLOUD_PROXY" | "CARRIER" | "UNIDENTIFIED";
3664
3719
  remoteAgent?: string;
3665
3720
  name:
3666
3721
  | "breakout.breakout-session.move.initiated"
@@ -3687,6 +3742,8 @@ export interface Event {
3687
3742
  | "ivr.join.response"
3688
3743
  | "ivr.l2sip.call.request"
3689
3744
  | "ivr.l2sip.call.response"
3745
+ | "ivr.l2sip.createmedia.request"
3746
+ | "ivr.l2sip.createmedia.response"
3690
3747
  | "ivr.l2sip.dialing.status"
3691
3748
  | "ivr.l2sip.terminate.request"
3692
3749
  | "ivr.l2sip.terminate.response"
@@ -3697,6 +3754,8 @@ export interface Event {
3697
3754
  | "ivr.locus.connect.request"
3698
3755
  | "ivr.locus.connect.response"
3699
3756
  | "ivr.locus.connect.status.update"
3757
+ | "ivr.locus.handover.request"
3758
+ | "ivr.locus.handover.response"
3700
3759
  | "ivr.mrs.meetinginfo.query"
3701
3760
  | "ivr.mrs.routingprofile.query"
3702
3761
  | "ivr.notify.request"
@@ -4275,6 +4334,7 @@ export interface Event {
4275
4334
  meetingType?: string;
4276
4335
  numberOfClustersTried?: number;
4277
4336
  preferredClustersLoadBalanced?: string[];
4337
+ preferTranscode?: boolean;
4278
4338
  reachableCloudReachabilityClustersCount?: number;
4279
4339
  reachableHybridMediaReachabilityClustersCount?: number;
4280
4340
  reachabilityClusters?: string[];
@@ -4535,6 +4595,14 @@ export interface Event {
4535
4595
  canProceed: boolean;
4536
4596
  state?: string;
4537
4597
  mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
4598
+ /**
4599
+ * Details associated with a share floor type
4600
+ */
4601
+ floorType?: {
4602
+ name: "DEFAULT" | "EMBEDDED_APP" | "OTHER";
4603
+ priority?: {};
4604
+ additionalProperties?: false;
4605
+ };
4538
4606
  csi?: number;
4539
4607
  /**
4540
4608
  * media capability for both transmit and receive
@@ -4567,7 +4635,7 @@ export interface Event {
4567
4635
  additionalProperties?: false;
4568
4636
  };
4569
4637
  mediaLines?: {
4570
- mediaType: "audio" | "embedded_app" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
4638
+ mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
4571
4639
  remoteIP?: string;
4572
4640
  localIP?: string;
4573
4641
  localNetworkPrefix?: string;
@@ -5149,6 +5217,18 @@ export interface Event {
5149
5217
  seq?: number;
5150
5218
  additionalProperties?: false;
5151
5219
  };
5220
+ /**
5221
+ * Pstn Carrier Infos
5222
+ */
5223
+ pstnCarrierInfo?: {
5224
+ cic?: string;
5225
+ carrierName?: string;
5226
+ ucreDnsSrvs?: string[];
5227
+ additionalProperties?: false;
5228
+ };
5229
+ pstnAudioCallType?: "PSTN" | "CCA_E" | "CCA_SP" | "EDGE_AUDIO";
5230
+ l2sipCallbackUrl?: string;
5231
+ ivrDialingStatusOriginator?: "L2SIP" | "CLOUD_PROXY" | "CARRIER" | "UNIDENTIFIED";
5152
5232
  trigger?: "dummyTrigger1" | "dummyTrigger2" | "media-quality";
5153
5233
  name: "server.mediaquality.event" | "client.mediaquality.event";
5154
5234
  /**
@@ -5453,6 +5533,7 @@ export interface Event {
5453
5533
  };
5454
5534
  fecPackets: number;
5455
5535
  fecBitrate: number;
5536
+ dscpValue?: number;
5456
5537
  rtxPackets?: number;
5457
5538
  rtxBitrate?: number;
5458
5539
  rtpPackets: number;
@@ -5816,6 +5897,7 @@ export interface Event {
5816
5897
  };
5817
5898
  fecPackets: number;
5818
5899
  fecBitrate: number;
5900
+ dscpValue?: number;
5819
5901
  rtxPackets?: number;
5820
5902
  rtxBitrate?: number;
5821
5903
  rtpPackets: number;
@@ -6018,6 +6100,7 @@ export interface Event {
6018
6100
  };
6019
6101
  fecPackets: number;
6020
6102
  fecBitrate: number;
6103
+ dscpValue?: number;
6021
6104
  rtxPackets?: number;
6022
6105
  rtxBitrate?: number;
6023
6106
  meanRtxDelay?: number;
@@ -6423,6 +6506,7 @@ export interface Event {
6423
6506
  };
6424
6507
  fecPackets: number;
6425
6508
  fecBitrate: number;
6509
+ dscpValue?: number;
6426
6510
  rtxPackets?: number;
6427
6511
  rtxBitrate?: number;
6428
6512
  meanRtxDelay?: number;
@@ -6719,6 +6803,7 @@ export interface Event {
6719
6803
  };
6720
6804
  fecPackets: number;
6721
6805
  fecBitrate: number;
6806
+ dscpValue?: number;
6722
6807
  rtxPackets?: number;
6723
6808
  rtxBitrate?: number;
6724
6809
  rtpPackets: number;
@@ -6836,6 +6921,7 @@ export interface Event {
6836
6921
  };
6837
6922
  fecPackets: number;
6838
6923
  fecBitrate: number;
6924
+ dscpValue?: number;
6839
6925
  rtxPackets?: number;
6840
6926
  rtxBitrate?: number;
6841
6927
  meanRtxDelay?: number;
@@ -7096,6 +7182,14 @@ export interface Event {
7096
7182
  canProceed: boolean;
7097
7183
  state?: string;
7098
7184
  mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
7185
+ /**
7186
+ * Details associated with a share floor type
7187
+ */
7188
+ floorType?: {
7189
+ name: "DEFAULT" | "EMBEDDED_APP" | "OTHER";
7190
+ priority?: {};
7191
+ additionalProperties?: false;
7192
+ };
7099
7193
  csi?: number;
7100
7194
  /**
7101
7195
  * media capability for both transmit and receive
@@ -7128,7 +7222,7 @@ export interface Event {
7128
7222
  additionalProperties?: false;
7129
7223
  };
7130
7224
  mediaLines?: {
7131
- mediaType: "audio" | "embedded_app" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
7225
+ mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
7132
7226
  remoteIP?: string;
7133
7227
  localIP?: string;
7134
7228
  localNetworkPrefix?: string;
@@ -7710,6 +7804,18 @@ export interface Event {
7710
7804
  seq?: number;
7711
7805
  additionalProperties?: false;
7712
7806
  };
7807
+ /**
7808
+ * Pstn Carrier Infos
7809
+ */
7810
+ pstnCarrierInfo?: {
7811
+ cic?: string;
7812
+ carrierName?: string;
7813
+ ucreDnsSrvs?: string[];
7814
+ additionalProperties?: false;
7815
+ };
7816
+ pstnAudioCallType?: "PSTN" | "CCA_E" | "CCA_SP" | "EDGE_AUDIO";
7817
+ l2sipCallbackUrl?: string;
7818
+ ivrDialingStatusOriginator?: "L2SIP" | "CLOUD_PROXY" | "CARRIER" | "UNIDENTIFIED";
7713
7819
  name:
7714
7820
  | "client.feature.audio.noise.removal"
7715
7821
  | "client.feature.embedded-object-info"
@@ -8683,6 +8789,14 @@ export interface ClientEvent {
8683
8789
  canProceed: boolean;
8684
8790
  state?: string;
8685
8791
  mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
8792
+ /**
8793
+ * Details associated with a share floor type
8794
+ */
8795
+ floorType?: {
8796
+ name: "DEFAULT" | "EMBEDDED_APP" | "OTHER";
8797
+ priority?: {};
8798
+ additionalProperties?: false;
8799
+ };
8686
8800
  csi?: number;
8687
8801
  /**
8688
8802
  * media capability for both transmit and receive
@@ -8715,7 +8829,7 @@ export interface ClientEvent {
8715
8829
  additionalProperties?: false;
8716
8830
  };
8717
8831
  mediaLines?: {
8718
- mediaType: "audio" | "embedded_app" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
8832
+ mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
8719
8833
  remoteIP?: string;
8720
8834
  localIP?: string;
8721
8835
  localNetworkPrefix?: string;
@@ -9261,6 +9375,18 @@ export interface ClientEvent {
9261
9375
  granted?: "one_way" | "two_way";
9262
9376
  additionalProperties?: false;
9263
9377
  };
9378
+ /**
9379
+ * Pstn Carrier Infos
9380
+ */
9381
+ pstnCarrierInfo?: {
9382
+ cic?: string;
9383
+ carrierName?: string;
9384
+ ucreDnsSrvs?: string[];
9385
+ additionalProperties?: false;
9386
+ };
9387
+ pstnAudioCallType?: "PSTN" | "CCA_E" | "CCA_SP" | "EDGE_AUDIO";
9388
+ l2sipCallbackUrl?: string;
9389
+ ivrDialingStatusOriginator?: "L2SIP" | "CLOUD_PROXY" | "CARRIER" | "UNIDENTIFIED";
9264
9390
  name:
9265
9391
  | "client.alert.displayed"
9266
9392
  | "client.alert.removed"
@@ -9326,10 +9452,12 @@ export interface ClientEvent {
9326
9452
  | "client.locus.media.request"
9327
9453
  | "client.locus.media.response"
9328
9454
  | "client.media-engine.crash"
9455
+ | "client.media-engine.launched"
9329
9456
  | "client.media-engine.lost"
9330
9457
  | "client.media-engine.local-sdp-generated"
9331
9458
  | "client.media-engine.ready"
9332
9459
  | "client.media-engine.remote-sdp-received"
9460
+ | "client.media-engine.start-launch"
9333
9461
  | "client.media-status"
9334
9462
  | "client.media.capabilities"
9335
9463
  | "client.media.reachability"
@@ -9398,6 +9526,8 @@ export interface ClientEvent {
9398
9526
  | "client.muted"
9399
9527
  | "client.network.changed"
9400
9528
  | "client.notification.received"
9529
+ | "client.onboarding-window.start"
9530
+ | "client.onboarding-window.end"
9401
9531
  | "client.permission.closed"
9402
9532
  | "client.permission.prompted"
9403
9533
  | "client.pin.collected"
@@ -11387,6 +11517,14 @@ export interface ClientEvent {
11387
11517
  * iOS specific. The audio session is activated.
11388
11518
  */
11389
11519
  iosAudioSessionActiveTime?: number;
11520
+ /**
11521
+ * If the call was started in background then when the user unlocks the screen the time is recorded. At this time the camera will be opened. Meaningful only on iOS.
11522
+ */
11523
+ switchedToForegroundTime?: number;
11524
+ /**
11525
+ * The time between call join and call close.
11526
+ */
11527
+ callDuration?: number;
11390
11528
  additionalProperties?: false;
11391
11529
  };
11392
11530
  /**
@@ -11395,10 +11533,13 @@ export interface ClientEvent {
11395
11533
  wxcCallMetadata?: {
11396
11534
  bwcCallType?: "Sip" | "Xsi" | "Other";
11397
11535
  callAcceptInBackground?: boolean;
11536
+ callNegotiatedAsVideo?: boolean;
11398
11537
  callOrigin?: string;
11399
11538
  callType?: string;
11400
11539
  endReason?: string;
11540
+ iceEnabled?: boolean;
11401
11541
  iosAcceptCallImmediately?: boolean;
11542
+ ipv6Negotiated?: boolean;
11402
11543
  mediaCreateOnCallCreate?: boolean;
11403
11544
  mediaStartOnCallCreate?: boolean;
11404
11545
  wxcCallId?: string;
@@ -11421,6 +11562,14 @@ export interface FeatureEvent {
11421
11562
  canProceed: boolean;
11422
11563
  state?: string;
11423
11564
  mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
11565
+ /**
11566
+ * Details associated with a share floor type
11567
+ */
11568
+ floorType?: {
11569
+ name: "DEFAULT" | "EMBEDDED_APP" | "OTHER";
11570
+ priority?: {};
11571
+ additionalProperties?: false;
11572
+ };
11424
11573
  csi?: number;
11425
11574
  /**
11426
11575
  * media capability for both transmit and receive
@@ -11453,7 +11602,7 @@ export interface FeatureEvent {
11453
11602
  additionalProperties?: false;
11454
11603
  };
11455
11604
  mediaLines?: {
11456
- mediaType: "audio" | "embedded_app" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
11605
+ mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
11457
11606
  remoteIP?: string;
11458
11607
  localIP?: string;
11459
11608
  localNetworkPrefix?: string;
@@ -12028,6 +12177,18 @@ export interface FeatureEvent {
12028
12177
  seq?: number;
12029
12178
  additionalProperties?: false;
12030
12179
  };
12180
+ /**
12181
+ * Pstn Carrier Infos
12182
+ */
12183
+ pstnCarrierInfo?: {
12184
+ cic?: string;
12185
+ carrierName?: string;
12186
+ ucreDnsSrvs?: string[];
12187
+ additionalProperties?: false;
12188
+ };
12189
+ pstnAudioCallType?: "PSTN" | "CCA_E" | "CCA_SP" | "EDGE_AUDIO";
12190
+ l2sipCallbackUrl?: string;
12191
+ ivrDialingStatusOriginator?: "L2SIP" | "CLOUD_PROXY" | "CARRIER" | "UNIDENTIFIED";
12031
12192
  name:
12032
12193
  | "client.feature.audio.noise.removal"
12033
12194
  | "client.feature.embedded-object-info"
@@ -12959,6 +13120,14 @@ export interface MediaQualityEvent {
12959
13120
  canProceed: boolean;
12960
13121
  state?: string;
12961
13122
  mediaType?: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
13123
+ /**
13124
+ * Details associated with a share floor type
13125
+ */
13126
+ floorType?: {
13127
+ name: "DEFAULT" | "EMBEDDED_APP" | "OTHER";
13128
+ priority?: {};
13129
+ additionalProperties?: false;
13130
+ };
12962
13131
  csi?: number;
12963
13132
  /**
12964
13133
  * media capability for both transmit and receive
@@ -12991,7 +13160,7 @@ export interface MediaQualityEvent {
12991
13160
  additionalProperties?: false;
12992
13161
  };
12993
13162
  mediaLines?: {
12994
- mediaType: "audio" | "embedded_app" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
13163
+ mediaType: "audio" | "video" | "share" | "share_audio" | "whiteboard" | "gamestate";
12995
13164
  remoteIP?: string;
12996
13165
  localIP?: string;
12997
13166
  localNetworkPrefix?: string;
@@ -13566,6 +13735,18 @@ export interface MediaQualityEvent {
13566
13735
  seq?: number;
13567
13736
  additionalProperties?: false;
13568
13737
  };
13738
+ /**
13739
+ * Pstn Carrier Infos
13740
+ */
13741
+ pstnCarrierInfo?: {
13742
+ cic?: string;
13743
+ carrierName?: string;
13744
+ ucreDnsSrvs?: string[];
13745
+ additionalProperties?: false;
13746
+ };
13747
+ pstnAudioCallType?: "PSTN" | "CCA_E" | "CCA_SP" | "EDGE_AUDIO";
13748
+ l2sipCallbackUrl?: string;
13749
+ ivrDialingStatusOriginator?: "L2SIP" | "CLOUD_PROXY" | "CARRIER" | "UNIDENTIFIED";
13569
13750
  trigger?: "dummyTrigger1" | "dummyTrigger2" | "media-quality";
13570
13751
  name: "server.mediaquality.event" | "client.mediaquality.event";
13571
13752
  /**
@@ -13870,6 +14051,7 @@ export interface MediaQualityEvent {
13870
14051
  };
13871
14052
  fecPackets: number;
13872
14053
  fecBitrate: number;
14054
+ dscpValue?: number;
13873
14055
  rtxPackets?: number;
13874
14056
  rtxBitrate?: number;
13875
14057
  rtpPackets: number;
@@ -14230,6 +14412,7 @@ export interface MediaQualityEvent {
14230
14412
  };
14231
14413
  fecPackets: number;
14232
14414
  fecBitrate: number;
14415
+ dscpValue?: number;
14233
14416
  rtxPackets?: number;
14234
14417
  rtxBitrate?: number;
14235
14418
  rtpPackets: number;
@@ -14432,6 +14615,7 @@ export interface MediaQualityEvent {
14432
14615
  };
14433
14616
  fecPackets: number;
14434
14617
  fecBitrate: number;
14618
+ dscpValue?: number;
14435
14619
  rtxPackets?: number;
14436
14620
  rtxBitrate?: number;
14437
14621
  meanRtxDelay?: number;
@@ -14837,6 +15021,7 @@ export interface MediaQualityEvent {
14837
15021
  };
14838
15022
  fecPackets: number;
14839
15023
  fecBitrate: number;
15024
+ dscpValue?: number;
14840
15025
  rtxPackets?: number;
14841
15026
  rtxBitrate?: number;
14842
15027
  meanRtxDelay?: number;
@@ -15133,6 +15318,7 @@ export interface MediaQualityEvent {
15133
15318
  };
15134
15319
  fecPackets: number;
15135
15320
  fecBitrate: number;
15321
+ dscpValue?: number;
15136
15322
  rtxPackets?: number;
15137
15323
  rtxBitrate?: number;
15138
15324
  rtpPackets: number;
@@ -15250,6 +15436,7 @@ export interface MediaQualityEvent {
15250
15436
  };
15251
15437
  fecPackets: number;
15252
15438
  fecBitrate: number;
15439
+ dscpValue?: number;
15253
15440
  rtxPackets?: number;
15254
15441
  rtxBitrate?: number;
15255
15442
  meanRtxDelay?: number;
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "scripts": {
13
13
  "build": "npm run build:typescript && npm run build:version",
14
14
  "build:typescript": "node ./src/main.js --from raml --to ts --input ../../diagnostic-events.raml --output ./generated/typescript/index.d.ts --types Event,ClientEvent,FeatureEvent,MediaQualityEvent",
15
- "build:version": "node ./scripts/version-bump.js",
15
+ "build:version": "node ./scripts/version-bump.js --version $BUILD_NUMBER",
16
16
  "publish:npm": "npm run publish:npm:setup && npm run publish:npm:tar",
17
17
  "publish:npm:setup": "echo \"//registry.npmjs.org/:_authToken=${NPM_TOKEN}\" > ./.npmrc",
18
18
  "publish:npm:tar": "npm publish --access public"
@@ -29,5 +29,5 @@
29
29
  "access": "public",
30
30
  "registry": "https://registry.npmjs.org"
31
31
  },
32
- "version": "0.0.3"
32
+ "version": "0.0.1236"
33
33
  }