@webex/event-dictionary-ts 1.0.1636 → 1.0.1637

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.
@@ -6379,6 +6379,24 @@
6379
6379
  }
6380
6380
  }
6381
6381
  },
6382
+ "npuInfo": {
6383
+ "type": "object",
6384
+ "description": "This object defines the fields related to the NPU being used by the emitter of the event",
6385
+ "additionalProperties": true,
6386
+ "properties": {
6387
+ "description": {
6388
+ "type": "string"
6389
+ },
6390
+ "npuVersion": {
6391
+ "type": "string"
6392
+ },
6393
+ "memoryMegaBytes": {
6394
+ "type": "number",
6395
+ "minimum": 1.0,
6396
+ "maximum": 9223372036854776000.0
6397
+ }
6398
+ }
6399
+ },
6382
6400
  "dpcRecord": {
6383
6401
  "type": "array",
6384
6402
  "items": {
@@ -6883,6 +6883,24 @@
6883
6883
  }
6884
6884
  }
6885
6885
  },
6886
+ "npuInfo": {
6887
+ "type": "object",
6888
+ "description": "This object defines the fields related to the NPU being used by the emitter of the event",
6889
+ "additionalProperties": true,
6890
+ "properties": {
6891
+ "description": {
6892
+ "type": "string"
6893
+ },
6894
+ "npuVersion": {
6895
+ "type": "string"
6896
+ },
6897
+ "memoryMegaBytes": {
6898
+ "type": "number",
6899
+ "minimum": 1.0,
6900
+ "maximum": 9223372036854776000.0
6901
+ }
6902
+ }
6903
+ },
6886
6904
  "dpcRecord": {
6887
6905
  "type": "array",
6888
6906
  "items": {
@@ -15495,6 +15513,24 @@
15495
15513
  }
15496
15514
  }
15497
15515
  },
15516
+ "npuInfo": {
15517
+ "type": "object",
15518
+ "description": "This object defines the fields related to the NPU being used by the emitter of the event",
15519
+ "additionalProperties": true,
15520
+ "properties": {
15521
+ "description": {
15522
+ "type": "string"
15523
+ },
15524
+ "npuVersion": {
15525
+ "type": "string"
15526
+ },
15527
+ "memoryMegaBytes": {
15528
+ "type": "number",
15529
+ "minimum": 1.0,
15530
+ "maximum": 9223372036854776000.0
15531
+ }
15532
+ }
15533
+ },
15498
15534
  "dpcRecord": {
15499
15535
  "type": "array",
15500
15536
  "items": {
@@ -28608,6 +28644,24 @@
28608
28644
  }
28609
28645
  }
28610
28646
  },
28647
+ "npuInfo": {
28648
+ "type": "object",
28649
+ "description": "This object defines the fields related to the NPU being used by the emitter of the event",
28650
+ "additionalProperties": true,
28651
+ "properties": {
28652
+ "description": {
28653
+ "type": "string"
28654
+ },
28655
+ "npuVersion": {
28656
+ "type": "string"
28657
+ },
28658
+ "memoryMegaBytes": {
28659
+ "type": "number",
28660
+ "minimum": 1.0,
28661
+ "maximum": 9223372036854776000.0
28662
+ }
28663
+ }
28664
+ },
28611
28665
  "dpcRecord": {
28612
28666
  "type": "array",
28613
28667
  "items": {
@@ -3283,6 +3283,24 @@
3283
3283
  }
3284
3284
  }
3285
3285
  },
3286
+ "npuInfo": {
3287
+ "type": "object",
3288
+ "description": "This object defines the fields related to the NPU being used by the emitter of the event",
3289
+ "additionalProperties": true,
3290
+ "properties": {
3291
+ "description": {
3292
+ "type": "string"
3293
+ },
3294
+ "npuVersion": {
3295
+ "type": "string"
3296
+ },
3297
+ "memoryMegaBytes": {
3298
+ "type": "number",
3299
+ "minimum": 1.0,
3300
+ "maximum": 9223372036854776000.0
3301
+ }
3302
+ }
3303
+ },
3286
3304
  "dpcRecord": {
3287
3305
  "type": "array",
3288
3306
  "items": {
@@ -3205,6 +3205,15 @@ export interface Event {
3205
3205
  memoryMegaBytes: number;
3206
3206
  additionalProperties?: false;
3207
3207
  }[];
3208
+ /**
3209
+ * This object defines the fields related to the NPU being used by the emitter of the event
3210
+ */
3211
+ npuInfo?: {
3212
+ description?: string;
3213
+ npuVersion?: string;
3214
+ memoryMegaBytes?: number;
3215
+ additionalProperties?: false;
3216
+ };
3208
3217
  dpcRecord?: string[];
3209
3218
  mediaLabels?: string[];
3210
3219
  screenResolution?: number;
@@ -6744,6 +6753,15 @@ export interface Event {
6744
6753
  memoryMegaBytes: number;
6745
6754
  additionalProperties?: false;
6746
6755
  }[];
6756
+ /**
6757
+ * This object defines the fields related to the NPU being used by the emitter of the event
6758
+ */
6759
+ npuInfo?: {
6760
+ description?: string;
6761
+ npuVersion?: string;
6762
+ memoryMegaBytes?: number;
6763
+ additionalProperties?: false;
6764
+ };
6747
6765
  dpcRecord?: string[];
6748
6766
  mediaLabels?: string[];
6749
6767
  screenResolution?: number;
@@ -11995,6 +12013,15 @@ export interface Event {
11995
12013
  memoryMegaBytes: number;
11996
12014
  additionalProperties?: false;
11997
12015
  }[];
12016
+ /**
12017
+ * This object defines the fields related to the NPU being used by the emitter of the event
12018
+ */
12019
+ npuInfo?: {
12020
+ description?: string;
12021
+ npuVersion?: string;
12022
+ memoryMegaBytes?: number;
12023
+ additionalProperties?: false;
12024
+ };
11998
12025
  dpcRecord?: string[];
11999
12026
  mediaLabels?: string[];
12000
12027
  screenResolution?: number;
@@ -16392,6 +16419,15 @@ export interface ClientEvent {
16392
16419
  memoryMegaBytes: number;
16393
16420
  additionalProperties?: false;
16394
16421
  }[];
16422
+ /**
16423
+ * This object defines the fields related to the NPU being used by the emitter of the event
16424
+ */
16425
+ npuInfo?: {
16426
+ description?: string;
16427
+ npuVersion?: string;
16428
+ memoryMegaBytes?: number;
16429
+ additionalProperties?: false;
16430
+ };
16395
16431
  dpcRecord?: string[];
16396
16432
  mediaLabels?: string[];
16397
16433
  screenResolution?: number;
@@ -19705,6 +19741,15 @@ export interface MediaQualityEvent {
19705
19741
  memoryMegaBytes: number;
19706
19742
  additionalProperties?: false;
19707
19743
  }[];
19744
+ /**
19745
+ * This object defines the fields related to the NPU being used by the emitter of the event
19746
+ */
19747
+ npuInfo?: {
19748
+ description?: string;
19749
+ npuVersion?: string;
19750
+ memoryMegaBytes?: number;
19751
+ additionalProperties?: false;
19752
+ };
19708
19753
  dpcRecord?: string[];
19709
19754
  mediaLabels?: string[];
19710
19755
  screenResolution?: number;
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.1636"
31
+ "version": "1.0.1637"
32
32
  }