@webex/event-dictionary-ts 1.0.1720 → 1.0.1721

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.
@@ -6440,6 +6440,9 @@
6440
6440
  "type": "number",
6441
6441
  "minimum": 1.0,
6442
6442
  "maximum": 9223372036854776000.0
6443
+ },
6444
+ "gpuVersion": {
6445
+ "type": "string"
6443
6446
  }
6444
6447
  }
6445
6448
  },
@@ -6461,6 +6464,9 @@
6461
6464
  "type": "number",
6462
6465
  "minimum": 1.0,
6463
6466
  "maximum": 9223372036854776000.0
6467
+ },
6468
+ "gpuVersion": {
6469
+ "type": "string"
6464
6470
  }
6465
6471
  }
6466
6472
  }
@@ -6949,6 +6949,9 @@
6949
6949
  "type": "number",
6950
6950
  "minimum": 1.0,
6951
6951
  "maximum": 9223372036854776000.0
6952
+ },
6953
+ "gpuVersion": {
6954
+ "type": "string"
6952
6955
  }
6953
6956
  }
6954
6957
  },
@@ -6970,6 +6973,9 @@
6970
6973
  "type": "number",
6971
6974
  "minimum": 1.0,
6972
6975
  "maximum": 9223372036854776000.0
6976
+ },
6977
+ "gpuVersion": {
6978
+ "type": "string"
6973
6979
  }
6974
6980
  }
6975
6981
  }
@@ -15823,6 +15829,9 @@
15823
15829
  "type": "number",
15824
15830
  "minimum": 1.0,
15825
15831
  "maximum": 9223372036854776000.0
15832
+ },
15833
+ "gpuVersion": {
15834
+ "type": "string"
15826
15835
  }
15827
15836
  }
15828
15837
  },
@@ -15844,6 +15853,9 @@
15844
15853
  "type": "number",
15845
15854
  "minimum": 1.0,
15846
15855
  "maximum": 9223372036854776000.0
15856
+ },
15857
+ "gpuVersion": {
15858
+ "type": "string"
15847
15859
  }
15848
15860
  }
15849
15861
  }
@@ -29201,6 +29213,9 @@
29201
29213
  "type": "number",
29202
29214
  "minimum": 1.0,
29203
29215
  "maximum": 9223372036854776000.0
29216
+ },
29217
+ "gpuVersion": {
29218
+ "type": "string"
29204
29219
  }
29205
29220
  }
29206
29221
  },
@@ -29222,6 +29237,9 @@
29222
29237
  "type": "number",
29223
29238
  "minimum": 1.0,
29224
29239
  "maximum": 9223372036854776000.0
29240
+ },
29241
+ "gpuVersion": {
29242
+ "type": "string"
29225
29243
  }
29226
29244
  }
29227
29245
  }
@@ -3305,6 +3305,9 @@
3305
3305
  "type": "number",
3306
3306
  "minimum": 1.0,
3307
3307
  "maximum": 9223372036854776000.0
3308
+ },
3309
+ "gpuVersion": {
3310
+ "type": "string"
3308
3311
  }
3309
3312
  }
3310
3313
  },
@@ -3326,6 +3329,9 @@
3326
3329
  "type": "number",
3327
3330
  "minimum": 1.0,
3328
3331
  "maximum": 9223372036854776000.0
3332
+ },
3333
+ "gpuVersion": {
3334
+ "type": "string"
3329
3335
  }
3330
3336
  }
3331
3337
  }
@@ -3235,11 +3235,13 @@ export interface Event {
3235
3235
  defaultGpuInfo?: {
3236
3236
  description: string;
3237
3237
  memoryMegaBytes: number;
3238
+ gpuVersion?: string;
3238
3239
  additionalProperties?: false;
3239
3240
  };
3240
3241
  otherGpuInfo?: {
3241
3242
  description: string;
3242
3243
  memoryMegaBytes: number;
3244
+ gpuVersion?: string;
3243
3245
  additionalProperties?: false;
3244
3246
  }[];
3245
3247
  /**
@@ -6875,11 +6877,13 @@ export interface Event {
6875
6877
  defaultGpuInfo?: {
6876
6878
  description: string;
6877
6879
  memoryMegaBytes: number;
6880
+ gpuVersion?: string;
6878
6881
  additionalProperties?: false;
6879
6882
  };
6880
6883
  otherGpuInfo?: {
6881
6884
  description: string;
6882
6885
  memoryMegaBytes: number;
6886
+ gpuVersion?: string;
6883
6887
  additionalProperties?: false;
6884
6888
  }[];
6885
6889
  /**
@@ -12245,11 +12249,13 @@ export interface Event {
12245
12249
  defaultGpuInfo?: {
12246
12250
  description: string;
12247
12251
  memoryMegaBytes: number;
12252
+ gpuVersion?: string;
12248
12253
  additionalProperties?: false;
12249
12254
  };
12250
12255
  otherGpuInfo?: {
12251
12256
  description: string;
12252
12257
  memoryMegaBytes: number;
12258
+ gpuVersion?: string;
12253
12259
  additionalProperties?: false;
12254
12260
  }[];
12255
12261
  /**
@@ -16783,11 +16789,13 @@ export interface ClientEvent {
16783
16789
  defaultGpuInfo?: {
16784
16790
  description: string;
16785
16791
  memoryMegaBytes: number;
16792
+ gpuVersion?: string;
16786
16793
  additionalProperties?: false;
16787
16794
  };
16788
16795
  otherGpuInfo?: {
16789
16796
  description: string;
16790
16797
  memoryMegaBytes: number;
16798
+ gpuVersion?: string;
16791
16799
  additionalProperties?: false;
16792
16800
  }[];
16793
16801
  /**
@@ -20160,11 +20168,13 @@ export interface MediaQualityEvent {
20160
20168
  defaultGpuInfo?: {
20161
20169
  description: string;
20162
20170
  memoryMegaBytes: number;
20171
+ gpuVersion?: string;
20163
20172
  additionalProperties?: false;
20164
20173
  };
20165
20174
  otherGpuInfo?: {
20166
20175
  description: string;
20167
20176
  memoryMegaBytes: number;
20177
+ gpuVersion?: string;
20168
20178
  additionalProperties?: false;
20169
20179
  }[];
20170
20180
  /**
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.1720"
31
+ "version": "1.0.1721"
32
32
  }