@webex/event-dictionary-ts 1.0.1308 → 1.0.1310

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.
@@ -17697,6 +17697,54 @@
17697
17697
  "UpSample_DNN_4"
17698
17698
  ]
17699
17699
  },
17700
+ "remoteClientType": {
17701
+ "type": "string",
17702
+ "description": "this defines the major client types",
17703
+ "enum": [
17704
+ "MEETING_CENTER",
17705
+ "EVENT_CENTER",
17706
+ "TRAINING_CENTER",
17707
+ "TEAMS_CLIENT",
17708
+ "TEAMS_DEVICE",
17709
+ "TEAMS_SHARE",
17710
+ "SIP",
17711
+ "RECORDING",
17712
+ "CLOUD_AWARE_SIP",
17713
+ "TEAMS_WXC_CLIENT",
17714
+ "WXC_CLIENT",
17715
+ "WXC_DEVICE",
17716
+ "WEBEX_JS_SDK",
17717
+ "VOICEA_CLIENT",
17718
+ "CISCO_SIP_GW",
17719
+ "WEBEX_SDK",
17720
+ "CPAAS_THIRD_PARTY_SDK",
17721
+ "WXC_THIRD_PARTY",
17722
+ "WXCC"
17723
+ ]
17724
+ },
17725
+ "remoteOsType": {
17726
+ "type": "string",
17727
+ "enum": [
17728
+ "android",
17729
+ "android-x64",
17730
+ "chrome",
17731
+ "ios",
17732
+ "linux",
17733
+ "mac",
17734
+ "na",
17735
+ "uwp-arm64",
17736
+ "windows"
17737
+ ]
17738
+ },
17739
+ "remoteDownSampleType": {
17740
+ "type": "string",
17741
+ "enum": [
17742
+ "DownSample_None",
17743
+ "DownSample_Bilinear",
17744
+ "DownSample_Lanczos",
17745
+ "DownSample_Unknown"
17746
+ ]
17747
+ },
17700
17748
  "floorType": {
17701
17749
  "type": "object",
17702
17750
  "description": "Details associated with a share floor type",
@@ -6667,6 +6667,54 @@
6667
6667
  "UpSample_DNN_4"
6668
6668
  ]
6669
6669
  },
6670
+ "remoteClientType": {
6671
+ "type": "string",
6672
+ "description": "this defines the major client types",
6673
+ "enum": [
6674
+ "MEETING_CENTER",
6675
+ "EVENT_CENTER",
6676
+ "TRAINING_CENTER",
6677
+ "TEAMS_CLIENT",
6678
+ "TEAMS_DEVICE",
6679
+ "TEAMS_SHARE",
6680
+ "SIP",
6681
+ "RECORDING",
6682
+ "CLOUD_AWARE_SIP",
6683
+ "TEAMS_WXC_CLIENT",
6684
+ "WXC_CLIENT",
6685
+ "WXC_DEVICE",
6686
+ "WEBEX_JS_SDK",
6687
+ "VOICEA_CLIENT",
6688
+ "CISCO_SIP_GW",
6689
+ "WEBEX_SDK",
6690
+ "CPAAS_THIRD_PARTY_SDK",
6691
+ "WXC_THIRD_PARTY",
6692
+ "WXCC"
6693
+ ]
6694
+ },
6695
+ "remoteOsType": {
6696
+ "type": "string",
6697
+ "enum": [
6698
+ "android",
6699
+ "android-x64",
6700
+ "chrome",
6701
+ "ios",
6702
+ "linux",
6703
+ "mac",
6704
+ "na",
6705
+ "uwp-arm64",
6706
+ "windows"
6707
+ ]
6708
+ },
6709
+ "remoteDownSampleType": {
6710
+ "type": "string",
6711
+ "enum": [
6712
+ "DownSample_None",
6713
+ "DownSample_Bilinear",
6714
+ "DownSample_Lanczos",
6715
+ "DownSample_Unknown"
6716
+ ]
6717
+ },
6670
6718
  "floorType": {
6671
6719
  "type": "object",
6672
6720
  "description": "Details associated with a share floor type",
@@ -7199,6 +7199,44 @@ export interface Event {
7199
7199
  | "UpSample_VP_2"
7200
7200
  | "UpSample_DNN_2"
7201
7201
  | "UpSample_DNN_4";
7202
+ /**
7203
+ * this defines the major client types
7204
+ */
7205
+ remoteClientType?:
7206
+ | "MEETING_CENTER"
7207
+ | "EVENT_CENTER"
7208
+ | "TRAINING_CENTER"
7209
+ | "TEAMS_CLIENT"
7210
+ | "TEAMS_DEVICE"
7211
+ | "TEAMS_SHARE"
7212
+ | "SIP"
7213
+ | "RECORDING"
7214
+ | "CLOUD_AWARE_SIP"
7215
+ | "TEAMS_WXC_CLIENT"
7216
+ | "WXC_CLIENT"
7217
+ | "WXC_DEVICE"
7218
+ | "WEBEX_JS_SDK"
7219
+ | "VOICEA_CLIENT"
7220
+ | "CISCO_SIP_GW"
7221
+ | "WEBEX_SDK"
7222
+ | "CPAAS_THIRD_PARTY_SDK"
7223
+ | "WXC_THIRD_PARTY"
7224
+ | "WXCC";
7225
+ remoteOsType?:
7226
+ | "android"
7227
+ | "android-x64"
7228
+ | "chrome"
7229
+ | "ios"
7230
+ | "linux"
7231
+ | "mac"
7232
+ | "na"
7233
+ | "uwp-arm64"
7234
+ | "windows";
7235
+ remoteDownSampleType?:
7236
+ | "DownSample_None"
7237
+ | "DownSample_Bilinear"
7238
+ | "DownSample_Lanczos"
7239
+ | "DownSample_Unknown";
7202
7240
  /**
7203
7241
  * Details associated with a share floor type
7204
7242
  */
@@ -16095,6 +16133,31 @@ export interface MediaQualityEvent {
16095
16133
  renderWindowResolution?: number;
16096
16134
  scaledResolution?: number;
16097
16135
  upSampleType?: "UpSample_None" | "UpSample_Render" | "UpSample_VP_2" | "UpSample_DNN_2" | "UpSample_DNN_4";
16136
+ /**
16137
+ * this defines the major client types
16138
+ */
16139
+ remoteClientType?:
16140
+ | "MEETING_CENTER"
16141
+ | "EVENT_CENTER"
16142
+ | "TRAINING_CENTER"
16143
+ | "TEAMS_CLIENT"
16144
+ | "TEAMS_DEVICE"
16145
+ | "TEAMS_SHARE"
16146
+ | "SIP"
16147
+ | "RECORDING"
16148
+ | "CLOUD_AWARE_SIP"
16149
+ | "TEAMS_WXC_CLIENT"
16150
+ | "WXC_CLIENT"
16151
+ | "WXC_DEVICE"
16152
+ | "WEBEX_JS_SDK"
16153
+ | "VOICEA_CLIENT"
16154
+ | "CISCO_SIP_GW"
16155
+ | "WEBEX_SDK"
16156
+ | "CPAAS_THIRD_PARTY_SDK"
16157
+ | "WXC_THIRD_PARTY"
16158
+ | "WXCC";
16159
+ remoteOsType?: "android" | "android-x64" | "chrome" | "ios" | "linux" | "mac" | "na" | "uwp-arm64" | "windows";
16160
+ remoteDownSampleType?: "DownSample_None" | "DownSample_Bilinear" | "DownSample_Lanczos" | "DownSample_Unknown";
16098
16161
  /**
16099
16162
  * Details associated with a share floor type
16100
16163
  */
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.1308"
31
+ "version": "1.0.1310"
32
32
  }