@webex/event-dictionary-ts 1.0.2204 → 1.0.2206

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.
@@ -4013,6 +4013,24 @@
4013
4013
  }
4014
4014
  }
4015
4015
  },
4016
+ "installerInfo": {
4017
+ "type": "object",
4018
+ "description": "Details of the Web Installer package download, reported under origin.installerInfo",
4019
+ "additionalProperties": true,
4020
+ "properties": {
4021
+ "packageSuffix": {
4022
+ "type": "string"
4023
+ },
4024
+ "packageCount": {
4025
+ "type": "integer"
4026
+ },
4027
+ "totalSize": {
4028
+ "type": "number",
4029
+ "minimum": -9223372036854776000.0,
4030
+ "maximum": 9223372036854776000.0
4031
+ }
4032
+ }
4033
+ },
4016
4034
  "emmVendorId": {
4017
4035
  "type": "string"
4018
4036
  },
@@ -4575,6 +4593,10 @@
4575
4593
  "mmpPreConnected": {
4576
4594
  "type": "boolean"
4577
4595
  },
4596
+ "moveVerifiedFilesTime": {
4597
+ "type": "integer",
4598
+ "minimum": 0
4599
+ },
4578
4600
  "networkLatency": {
4579
4601
  "type": "integer",
4580
4602
  "minimum": 0
@@ -4718,6 +4740,10 @@
4718
4740
  "type": "integer",
4719
4741
  "minimum": 0
4720
4742
  },
4743
+ "verifySignatureTime": {
4744
+ "type": "integer",
4745
+ "minimum": 0
4746
+ },
4721
4747
  "videoCBJMT": {
4722
4748
  "type": "integer",
4723
4749
  "minimum": 0
@@ -8426,7 +8452,8 @@
8426
8452
  "description": "Type of dialog window displayed to user",
8427
8453
  "enum": [
8428
8454
  "PREFER_WEB_JOIN_PROMPT",
8429
- "EULA"
8455
+ "EULA",
8456
+ "INSTALLER_SLOW_CONNECTION_PROMPT"
8430
8457
  ]
8431
8458
  },
8432
8459
  "isAutomatedUser": {
@@ -8438,6 +8465,97 @@
8438
8465
  "automatic",
8439
8466
  "manual"
8440
8467
  ]
8468
+ },
8469
+ "privacyAndSecurityPermission": {
8470
+ "type": "object",
8471
+ "description": "Map of device types to their permission status and reason when permission is not granted",
8472
+ "additionalProperties": true,
8473
+ "properties": {
8474
+ "camera": {
8475
+ "type": "object",
8476
+ "additionalProperties": true,
8477
+ "properties": {
8478
+ "status": {
8479
+ "type": "string",
8480
+ "description": "status of device permission given to client application",
8481
+ "enum": [
8482
+ "DENIED",
8483
+ "FAILED",
8484
+ "GRANTED",
8485
+ "REQUESTING",
8486
+ "UNKNOWN"
8487
+ ]
8488
+ },
8489
+ "reason": {
8490
+ "type": "string",
8491
+ "description": "reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library",
8492
+ "enum": [
8493
+ "ALREADY_IN_USE",
8494
+ "DENIED_BY_USER",
8495
+ "DENIED_BY_SYSTEM",
8496
+ "NO_DEVICE_FOUND",
8497
+ "UNKNOWN"
8498
+ ]
8499
+ }
8500
+ }
8501
+ },
8502
+ "microphone": {
8503
+ "type": "object",
8504
+ "additionalProperties": true,
8505
+ "properties": {
8506
+ "status": {
8507
+ "type": "string",
8508
+ "description": "status of device permission given to client application",
8509
+ "enum": [
8510
+ "DENIED",
8511
+ "FAILED",
8512
+ "GRANTED",
8513
+ "REQUESTING",
8514
+ "UNKNOWN"
8515
+ ]
8516
+ },
8517
+ "reason": {
8518
+ "type": "string",
8519
+ "description": "reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library",
8520
+ "enum": [
8521
+ "ALREADY_IN_USE",
8522
+ "DENIED_BY_USER",
8523
+ "DENIED_BY_SYSTEM",
8524
+ "NO_DEVICE_FOUND",
8525
+ "UNKNOWN"
8526
+ ]
8527
+ }
8528
+ }
8529
+ },
8530
+ "contentShare": {
8531
+ "type": "object",
8532
+ "additionalProperties": true,
8533
+ "properties": {
8534
+ "status": {
8535
+ "type": "string",
8536
+ "description": "status of device permission given to client application",
8537
+ "enum": [
8538
+ "DENIED",
8539
+ "FAILED",
8540
+ "GRANTED",
8541
+ "REQUESTING",
8542
+ "UNKNOWN"
8543
+ ]
8544
+ },
8545
+ "reason": {
8546
+ "type": "string",
8547
+ "description": "reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library",
8548
+ "enum": [
8549
+ "ALREADY_IN_USE",
8550
+ "DENIED_BY_USER",
8551
+ "DENIED_BY_SYSTEM",
8552
+ "NO_DEVICE_FOUND",
8553
+ "UNKNOWN"
8554
+ ]
8555
+ }
8556
+ }
8557
+ }
8558
+ }
8441
8559
  }
8442
8560
  }
8443
8561
  }
@@ -570,6 +570,24 @@
570
570
  }
571
571
  }
572
572
  },
573
+ "installerInfo": {
574
+ "type": "object",
575
+ "description": "Details of the Web Installer package download, reported under origin.installerInfo",
576
+ "additionalProperties": true,
577
+ "properties": {
578
+ "packageSuffix": {
579
+ "type": "string"
580
+ },
581
+ "packageCount": {
582
+ "type": "integer"
583
+ },
584
+ "totalSize": {
585
+ "type": "number",
586
+ "minimum": -9223372036854776000.0,
587
+ "maximum": 9223372036854776000.0
588
+ }
589
+ }
590
+ },
573
591
  "emmVendorId": {
574
592
  "type": "string"
575
593
  },
@@ -4629,6 +4647,24 @@
4629
4647
  }
4630
4648
  }
4631
4649
  },
4650
+ "installerInfo": {
4651
+ "type": "object",
4652
+ "description": "Details of the Web Installer package download, reported under origin.installerInfo",
4653
+ "additionalProperties": true,
4654
+ "properties": {
4655
+ "packageSuffix": {
4656
+ "type": "string"
4657
+ },
4658
+ "packageCount": {
4659
+ "type": "integer"
4660
+ },
4661
+ "totalSize": {
4662
+ "type": "number",
4663
+ "minimum": -9223372036854776000.0,
4664
+ "maximum": 9223372036854776000.0
4665
+ }
4666
+ }
4667
+ },
4632
4668
  "emmVendorId": {
4633
4669
  "type": "string"
4634
4670
  },
@@ -5191,6 +5227,10 @@
5191
5227
  "mmpPreConnected": {
5192
5228
  "type": "boolean"
5193
5229
  },
5230
+ "moveVerifiedFilesTime": {
5231
+ "type": "integer",
5232
+ "minimum": 0
5233
+ },
5194
5234
  "networkLatency": {
5195
5235
  "type": "integer",
5196
5236
  "minimum": 0
@@ -5334,6 +5374,10 @@
5334
5374
  "type": "integer",
5335
5375
  "minimum": 0
5336
5376
  },
5377
+ "verifySignatureTime": {
5378
+ "type": "integer",
5379
+ "minimum": 0
5380
+ },
5337
5381
  "videoCBJMT": {
5338
5382
  "type": "integer",
5339
5383
  "minimum": 0
@@ -9042,7 +9086,8 @@
9042
9086
  "description": "Type of dialog window displayed to user",
9043
9087
  "enum": [
9044
9088
  "PREFER_WEB_JOIN_PROMPT",
9045
- "EULA"
9089
+ "EULA",
9090
+ "INSTALLER_SLOW_CONNECTION_PROMPT"
9046
9091
  ]
9047
9092
  },
9048
9093
  "isAutomatedUser": {
@@ -9054,6 +9099,97 @@
9054
9099
  "automatic",
9055
9100
  "manual"
9056
9101
  ]
9102
+ },
9103
+ "privacyAndSecurityPermission": {
9104
+ "type": "object",
9105
+ "description": "Map of device types to their permission status and reason when permission is not granted",
9106
+ "additionalProperties": true,
9107
+ "properties": {
9108
+ "camera": {
9109
+ "type": "object",
9110
+ "additionalProperties": true,
9111
+ "properties": {
9112
+ "status": {
9113
+ "type": "string",
9114
+ "description": "status of device permission given to client application",
9115
+ "enum": [
9116
+ "DENIED",
9117
+ "FAILED",
9118
+ "GRANTED",
9119
+ "REQUESTING",
9120
+ "UNKNOWN"
9121
+ ]
9122
+ },
9123
+ "reason": {
9124
+ "type": "string",
9125
+ "description": "reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library",
9126
+ "enum": [
9127
+ "ALREADY_IN_USE",
9128
+ "DENIED_BY_USER",
9129
+ "DENIED_BY_SYSTEM",
9130
+ "NO_DEVICE_FOUND",
9131
+ "UNKNOWN"
9132
+ ]
9133
+ }
9134
+ }
9135
+ },
9136
+ "microphone": {
9137
+ "type": "object",
9138
+ "additionalProperties": true,
9139
+ "properties": {
9140
+ "status": {
9141
+ "type": "string",
9142
+ "description": "status of device permission given to client application",
9143
+ "enum": [
9144
+ "DENIED",
9145
+ "FAILED",
9146
+ "GRANTED",
9147
+ "REQUESTING",
9148
+ "UNKNOWN"
9149
+ ]
9150
+ },
9151
+ "reason": {
9152
+ "type": "string",
9153
+ "description": "reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library",
9154
+ "enum": [
9155
+ "ALREADY_IN_USE",
9156
+ "DENIED_BY_USER",
9157
+ "DENIED_BY_SYSTEM",
9158
+ "NO_DEVICE_FOUND",
9159
+ "UNKNOWN"
9160
+ ]
9161
+ }
9162
+ }
9163
+ },
9164
+ "contentShare": {
9165
+ "type": "object",
9166
+ "additionalProperties": true,
9167
+ "properties": {
9168
+ "status": {
9169
+ "type": "string",
9170
+ "description": "status of device permission given to client application",
9171
+ "enum": [
9172
+ "DENIED",
9173
+ "FAILED",
9174
+ "GRANTED",
9175
+ "REQUESTING",
9176
+ "UNKNOWN"
9177
+ ]
9178
+ },
9179
+ "reason": {
9180
+ "type": "string",
9181
+ "description": "reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library",
9182
+ "enum": [
9183
+ "ALREADY_IN_USE",
9184
+ "DENIED_BY_USER",
9185
+ "DENIED_BY_SYSTEM",
9186
+ "NO_DEVICE_FOUND",
9187
+ "UNKNOWN"
9188
+ ]
9189
+ }
9190
+ }
9191
+ }
9192
+ }
9057
9193
  }
9058
9194
  }
9059
9195
  },
@@ -8,7 +8,7 @@
8
8
  /**
9
9
  * Type of dialog window displayed to user
10
10
  */
11
- export type DialogType = "PREFER_WEB_JOIN_PROMPT" | "EULA";
11
+ export type DialogType = "PREFER_WEB_JOIN_PROMPT" | "EULA" | "INSTALLER_SLOW_CONNECTION_PROMPT";
12
12
 
13
13
  export interface Event {
14
14
  eventId?: string;
@@ -336,6 +336,15 @@ export interface Event {
336
336
  preInstalledVersion?: string;
337
337
  additionalProperties?: never;
338
338
  };
339
+ /**
340
+ * Details of the Web Installer package download, reported under origin.installerInfo
341
+ */
342
+ installerInfo?: {
343
+ packageSuffix?: string;
344
+ packageCount?: number;
345
+ totalSize?: number;
346
+ additionalProperties?: never;
347
+ };
339
348
  emmVendorId?: string;
340
349
  isHybridMedia?: boolean;
341
350
  originData?: {};
@@ -2139,6 +2148,15 @@ export interface Event {
2139
2148
  preInstalledVersion?: string;
2140
2149
  additionalProperties?: never;
2141
2150
  };
2151
+ /**
2152
+ * Details of the Web Installer package download, reported under origin.installerInfo
2153
+ */
2154
+ installerInfo?: {
2155
+ packageSuffix?: string;
2156
+ packageCount?: number;
2157
+ totalSize?: number;
2158
+ additionalProperties?: never;
2159
+ };
2142
2160
  emmVendorId?: string;
2143
2161
  isHybridMedia?: boolean;
2144
2162
  originData?: {};
@@ -2283,6 +2301,7 @@ export interface Event {
2283
2301
  meetingInfoFetchTime?: number;
2284
2302
  meetingInfoReqResp?: number;
2285
2303
  mmpPreConnected?: boolean;
2304
+ moveVerifiedFilesTime?: number;
2286
2305
  networkLatency?: number;
2287
2306
  otherAppApiReqResp?: number;
2288
2307
  pageJmt?: number;
@@ -2322,6 +2341,7 @@ export interface Event {
2322
2341
  totalMediaJMT?: number;
2323
2342
  totalMediaJMTWithUserDelay?: number;
2324
2343
  useKeyTime?: number;
2344
+ verifySignatureTime?: number;
2325
2345
  videoCBJMT?: number;
2326
2346
  videoICESetupTime?: number;
2327
2347
  videoJMT?: number;
@@ -4378,6 +4398,45 @@ export interface Event {
4378
4398
  dialogType?: DialogType;
4379
4399
  isAutomatedUser?: boolean;
4380
4400
  telemetryOptOut?: "automatic" | "manual";
4401
+ /**
4402
+ * Map of device types to their permission status and reason when permission is not granted
4403
+ */
4404
+ privacyAndSecurityPermission?: {
4405
+ camera?: {
4406
+ /**
4407
+ * status of device permission given to client application
4408
+ */
4409
+ status?: "DENIED" | "FAILED" | "GRANTED" | "REQUESTING" | "UNKNOWN";
4410
+ /**
4411
+ * reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library
4412
+ */
4413
+ reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
4414
+ additionalProperties?: never;
4415
+ };
4416
+ microphone?: {
4417
+ /**
4418
+ * status of device permission given to client application
4419
+ */
4420
+ status?: "DENIED" | "FAILED" | "GRANTED" | "REQUESTING" | "UNKNOWN";
4421
+ /**
4422
+ * reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library
4423
+ */
4424
+ reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
4425
+ additionalProperties?: never;
4426
+ };
4427
+ contentShare?: {
4428
+ /**
4429
+ * status of device permission given to client application
4430
+ */
4431
+ status?: "DENIED" | "FAILED" | "GRANTED" | "REQUESTING" | "UNKNOWN";
4432
+ /**
4433
+ * reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library
4434
+ */
4435
+ reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
4436
+ additionalProperties?: never;
4437
+ };
4438
+ additionalProperties?: never;
4439
+ };
4381
4440
  additionalProperties?: never;
4382
4441
  }
4383
4442
  | {
@@ -16910,7 +16969,7 @@ export interface Event {
16910
16969
  /**
16911
16970
  * Type of dialog window displayed to user
16912
16971
  */
16913
- export type DialogType = "PREFER_WEB_JOIN_PROMPT" | "EULA";
16972
+ export type DialogType = "PREFER_WEB_JOIN_PROMPT" | "EULA" | "INSTALLER_SLOW_CONNECTION_PROMPT";
16914
16973
 
16915
16974
  /**
16916
16975
  * Events from clients
@@ -18696,6 +18755,15 @@ export interface ClientEvent {
18696
18755
  preInstalledVersion?: string;
18697
18756
  additionalProperties?: never;
18698
18757
  };
18758
+ /**
18759
+ * Details of the Web Installer package download, reported under origin.installerInfo
18760
+ */
18761
+ installerInfo?: {
18762
+ packageSuffix?: string;
18763
+ packageCount?: number;
18764
+ totalSize?: number;
18765
+ additionalProperties?: never;
18766
+ };
18699
18767
  emmVendorId?: string;
18700
18768
  isHybridMedia?: boolean;
18701
18769
  originData?: {};
@@ -18840,6 +18908,7 @@ export interface ClientEvent {
18840
18908
  meetingInfoFetchTime?: number;
18841
18909
  meetingInfoReqResp?: number;
18842
18910
  mmpPreConnected?: boolean;
18911
+ moveVerifiedFilesTime?: number;
18843
18912
  networkLatency?: number;
18844
18913
  otherAppApiReqResp?: number;
18845
18914
  pageJmt?: number;
@@ -18879,6 +18948,7 @@ export interface ClientEvent {
18879
18948
  totalMediaJMT?: number;
18880
18949
  totalMediaJMTWithUserDelay?: number;
18881
18950
  useKeyTime?: number;
18951
+ verifySignatureTime?: number;
18882
18952
  videoCBJMT?: number;
18883
18953
  videoICESetupTime?: number;
18884
18954
  videoJMT?: number;
@@ -20935,6 +21005,45 @@ export interface ClientEvent {
20935
21005
  dialogType?: DialogType;
20936
21006
  isAutomatedUser?: boolean;
20937
21007
  telemetryOptOut?: "automatic" | "manual";
21008
+ /**
21009
+ * Map of device types to their permission status and reason when permission is not granted
21010
+ */
21011
+ privacyAndSecurityPermission?: {
21012
+ camera?: {
21013
+ /**
21014
+ * status of device permission given to client application
21015
+ */
21016
+ status?: "DENIED" | "FAILED" | "GRANTED" | "REQUESTING" | "UNKNOWN";
21017
+ /**
21018
+ * reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library
21019
+ */
21020
+ reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
21021
+ additionalProperties?: never;
21022
+ };
21023
+ microphone?: {
21024
+ /**
21025
+ * status of device permission given to client application
21026
+ */
21027
+ status?: "DENIED" | "FAILED" | "GRANTED" | "REQUESTING" | "UNKNOWN";
21028
+ /**
21029
+ * reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library
21030
+ */
21031
+ reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
21032
+ additionalProperties?: never;
21033
+ };
21034
+ contentShare?: {
21035
+ /**
21036
+ * status of device permission given to client application
21037
+ */
21038
+ status?: "DENIED" | "FAILED" | "GRANTED" | "REQUESTING" | "UNKNOWN";
21039
+ /**
21040
+ * reason for permission change in privacy and security permission object as given to client application. This is used in PrivacyAndSecurityPermission library
21041
+ */
21042
+ reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
21043
+ additionalProperties?: never;
21044
+ };
21045
+ additionalProperties?: never;
21046
+ };
20938
21047
  additionalProperties?: never;
20939
21048
  }
20940
21049
 
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  "access": "public",
33
33
  "registry": "https://registry.npmjs.org"
34
34
  },
35
- "version": "1.0.2204"
35
+ "version": "1.0.2206"
36
36
  }