@webex/event-dictionary-ts 1.0.1383 → 1.0.1385

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.
@@ -11214,9 +11214,9 @@
11214
11214
  "clientPublicNetworkPrefix": {
11215
11215
  "type": "string"
11216
11216
  },
11217
- "timeShot": {
11218
- "type": "string",
11219
- "format": "date-time"
11217
+ "timeShotAgeSeconds": {
11218
+ "type": "number",
11219
+ "multipleOf": 0.1
11220
11220
  }
11221
11221
  }
11222
11222
  },
@@ -18235,7 +18235,8 @@
18235
18235
  "DownSample_None",
18236
18236
  "DownSample_Bilinear",
18237
18237
  "DownSample_Lanczos",
18238
- "DownSample_Unknown"
18238
+ "DownSample_Unknown",
18239
+ "DownSample_Nvidia"
18239
18240
  ]
18240
18241
  },
18241
18242
  "floorType": {
@@ -6915,7 +6915,8 @@
6915
6915
  "DownSample_None",
6916
6916
  "DownSample_Bilinear",
6917
6917
  "DownSample_Lanczos",
6918
- "DownSample_Unknown"
6918
+ "DownSample_Unknown",
6919
+ "DownSample_Nvidia"
6919
6920
  ]
6920
6921
  },
6921
6922
  "floorType": {
@@ -4879,7 +4879,7 @@ export interface Event {
4879
4879
  discoveryInfo?: {
4880
4880
  anycastEntryPoint?: string;
4881
4881
  clientPublicNetworkPrefix?: string;
4882
- timeShot?: string;
4882
+ timeShotAgeSeconds?: number;
4883
4883
  additionalProperties?: false;
4884
4884
  };
4885
4885
  isMeetingStartedByCCPUser?: boolean;
@@ -7445,7 +7445,8 @@ export interface Event {
7445
7445
  | "DownSample_None"
7446
7446
  | "DownSample_Bilinear"
7447
7447
  | "DownSample_Lanczos"
7448
- | "DownSample_Unknown";
7448
+ | "DownSample_Unknown"
7449
+ | "DownSample_Nvidia";
7449
7450
  /**
7450
7451
  * Details associated with a share floor type
7451
7452
  */
@@ -16578,7 +16579,12 @@ export interface MediaQualityEvent {
16578
16579
  | "na"
16579
16580
  | "uwp-arm64"
16580
16581
  | "windows";
16581
- remoteDownSampleType?: "DownSample_None" | "DownSample_Bilinear" | "DownSample_Lanczos" | "DownSample_Unknown";
16582
+ remoteDownSampleType?:
16583
+ | "DownSample_None"
16584
+ | "DownSample_Bilinear"
16585
+ | "DownSample_Lanczos"
16586
+ | "DownSample_Unknown"
16587
+ | "DownSample_Nvidia";
16582
16588
  /**
16583
16589
  * Details associated with a share floor type
16584
16590
  */
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.1383"
31
+ "version": "1.0.1385"
32
32
  }