@webex/event-dictionary-ts 1.0.1332 → 1.0.1334
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.
|
@@ -119,6 +119,7 @@
|
|
|
119
119
|
"enum": [
|
|
120
120
|
"android",
|
|
121
121
|
"android-x64",
|
|
122
|
+
"android-arm64",
|
|
122
123
|
"chrome",
|
|
123
124
|
"ios",
|
|
124
125
|
"linux",
|
|
@@ -3467,6 +3468,7 @@
|
|
|
3467
3468
|
"enum": [
|
|
3468
3469
|
"android",
|
|
3469
3470
|
"android-x64",
|
|
3471
|
+
"android-arm64",
|
|
3470
3472
|
"chrome",
|
|
3471
3473
|
"ios",
|
|
3472
3474
|
"linux",
|
|
@@ -17993,6 +17995,7 @@
|
|
|
17993
17995
|
"enum": [
|
|
17994
17996
|
"android",
|
|
17995
17997
|
"android-x64",
|
|
17998
|
+
"android-arm64",
|
|
17996
17999
|
"chrome",
|
|
17997
18000
|
"ios",
|
|
17998
18001
|
"linux",
|
|
@@ -65,7 +65,17 @@ export interface Event {
|
|
|
65
65
|
* Details of client environment
|
|
66
66
|
*/
|
|
67
67
|
clientInfo?: {
|
|
68
|
-
os?:
|
|
68
|
+
os?:
|
|
69
|
+
| "android"
|
|
70
|
+
| "android-x64"
|
|
71
|
+
| "android-arm64"
|
|
72
|
+
| "chrome"
|
|
73
|
+
| "ios"
|
|
74
|
+
| "linux"
|
|
75
|
+
| "mac"
|
|
76
|
+
| "other"
|
|
77
|
+
| "uwp-arm64"
|
|
78
|
+
| "windows";
|
|
69
79
|
osVersion?: string;
|
|
70
80
|
localIP?: string;
|
|
71
81
|
gatewayIP?: string;
|
|
@@ -1367,7 +1377,17 @@ export interface Event {
|
|
|
1367
1377
|
* Details of client environment
|
|
1368
1378
|
*/
|
|
1369
1379
|
clientInfo?: {
|
|
1370
|
-
os?:
|
|
1380
|
+
os?:
|
|
1381
|
+
| "android"
|
|
1382
|
+
| "android-x64"
|
|
1383
|
+
| "android-arm64"
|
|
1384
|
+
| "chrome"
|
|
1385
|
+
| "ios"
|
|
1386
|
+
| "linux"
|
|
1387
|
+
| "mac"
|
|
1388
|
+
| "other"
|
|
1389
|
+
| "uwp-arm64"
|
|
1390
|
+
| "windows";
|
|
1371
1391
|
osVersion?: string;
|
|
1372
1392
|
localIP?: string;
|
|
1373
1393
|
gatewayIP?: string;
|
|
@@ -7317,6 +7337,7 @@ export interface Event {
|
|
|
7317
7337
|
remoteOsType?:
|
|
7318
7338
|
| "android"
|
|
7319
7339
|
| "android-x64"
|
|
7340
|
+
| "android-arm64"
|
|
7320
7341
|
| "chrome"
|
|
7321
7342
|
| "ios"
|
|
7322
7343
|
| "linux"
|
|
@@ -10565,7 +10586,17 @@ export interface ClientEvent {
|
|
|
10565
10586
|
* Details of client environment
|
|
10566
10587
|
*/
|
|
10567
10588
|
clientInfo?: {
|
|
10568
|
-
os?:
|
|
10589
|
+
os?:
|
|
10590
|
+
| "android"
|
|
10591
|
+
| "android-x64"
|
|
10592
|
+
| "android-arm64"
|
|
10593
|
+
| "chrome"
|
|
10594
|
+
| "ios"
|
|
10595
|
+
| "linux"
|
|
10596
|
+
| "mac"
|
|
10597
|
+
| "other"
|
|
10598
|
+
| "uwp-arm64"
|
|
10599
|
+
| "windows";
|
|
10569
10600
|
osVersion?: string;
|
|
10570
10601
|
localIP?: string;
|
|
10571
10602
|
gatewayIP?: string;
|
|
@@ -16348,7 +16379,17 @@ export interface MediaQualityEvent {
|
|
|
16348
16379
|
| "CPAAS_THIRD_PARTY_SDK"
|
|
16349
16380
|
| "WXC_THIRD_PARTY"
|
|
16350
16381
|
| "WXCC";
|
|
16351
|
-
remoteOsType?:
|
|
16382
|
+
remoteOsType?:
|
|
16383
|
+
| "android"
|
|
16384
|
+
| "android-x64"
|
|
16385
|
+
| "android-arm64"
|
|
16386
|
+
| "chrome"
|
|
16387
|
+
| "ios"
|
|
16388
|
+
| "linux"
|
|
16389
|
+
| "mac"
|
|
16390
|
+
| "na"
|
|
16391
|
+
| "uwp-arm64"
|
|
16392
|
+
| "windows";
|
|
16352
16393
|
remoteDownSampleType?: "DownSample_None" | "DownSample_Bilinear" | "DownSample_Lanczos" | "DownSample_Unknown";
|
|
16353
16394
|
/**
|
|
16354
16395
|
* Details associated with a share floor type
|
package/package.json
CHANGED