@webex/event-dictionary-ts 1.0.2212 → 1.0.2214

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.
@@ -4024,6 +4024,12 @@
4024
4024
  "packageSuffix": {
4025
4025
  "type": "string"
4026
4026
  },
4027
+ "packageArch": {
4028
+ "type": "string"
4029
+ },
4030
+ "launchId": {
4031
+ "type": "string"
4032
+ },
4027
4033
  "packageCount": {
4028
4034
  "type": "integer"
4029
4035
  },
@@ -8484,11 +8490,12 @@
8484
8490
  },
8485
8491
  "privacyAndSecurityPermission": {
8486
8492
  "type": "object",
8487
- "description": "Map of device types to their permission status and reason when permission is not granted",
8493
+ "description": "Resource types and their permission status and reason when permission is not granted",
8488
8494
  "additionalProperties": true,
8489
8495
  "properties": {
8490
8496
  "camera": {
8491
8497
  "type": "object",
8498
+ "description": "Permission status and reason for a resource",
8492
8499
  "additionalProperties": true,
8493
8500
  "properties": {
8494
8501
  "status": {
@@ -8517,6 +8524,7 @@
8517
8524
  },
8518
8525
  "microphone": {
8519
8526
  "type": "object",
8527
+ "description": "Permission status and reason for a resource",
8520
8528
  "additionalProperties": true,
8521
8529
  "properties": {
8522
8530
  "status": {
@@ -8545,6 +8553,7 @@
8545
8553
  },
8546
8554
  "contentShare": {
8547
8555
  "type": "object",
8556
+ "description": "Permission status and reason for a resource",
8548
8557
  "additionalProperties": true,
8549
8558
  "properties": {
8550
8559
  "status": {
@@ -578,6 +578,12 @@
578
578
  "packageSuffix": {
579
579
  "type": "string"
580
580
  },
581
+ "packageArch": {
582
+ "type": "string"
583
+ },
584
+ "launchId": {
585
+ "type": "string"
586
+ },
581
587
  "packageCount": {
582
588
  "type": "integer"
583
589
  },
@@ -4658,6 +4664,12 @@
4658
4664
  "packageSuffix": {
4659
4665
  "type": "string"
4660
4666
  },
4667
+ "packageArch": {
4668
+ "type": "string"
4669
+ },
4670
+ "launchId": {
4671
+ "type": "string"
4672
+ },
4661
4673
  "packageCount": {
4662
4674
  "type": "integer"
4663
4675
  },
@@ -9118,11 +9130,12 @@
9118
9130
  },
9119
9131
  "privacyAndSecurityPermission": {
9120
9132
  "type": "object",
9121
- "description": "Map of device types to their permission status and reason when permission is not granted",
9133
+ "description": "Resource types and their permission status and reason when permission is not granted",
9122
9134
  "additionalProperties": true,
9123
9135
  "properties": {
9124
9136
  "camera": {
9125
9137
  "type": "object",
9138
+ "description": "Permission status and reason for a resource",
9126
9139
  "additionalProperties": true,
9127
9140
  "properties": {
9128
9141
  "status": {
@@ -9151,6 +9164,7 @@
9151
9164
  },
9152
9165
  "microphone": {
9153
9166
  "type": "object",
9167
+ "description": "Permission status and reason for a resource",
9154
9168
  "additionalProperties": true,
9155
9169
  "properties": {
9156
9170
  "status": {
@@ -9179,6 +9193,7 @@
9179
9193
  },
9180
9194
  "contentShare": {
9181
9195
  "type": "object",
9196
+ "description": "Permission status and reason for a resource",
9182
9197
  "additionalProperties": true,
9183
9198
  "properties": {
9184
9199
  "status": {
@@ -341,6 +341,8 @@ export interface Event {
341
341
  */
342
342
  installerInfo?: {
343
343
  packageSuffix?: string;
344
+ packageArch?: string;
345
+ launchId?: string;
344
346
  packageCount?: number;
345
347
  totalSize?: number;
346
348
  additionalProperties?: never;
@@ -2154,6 +2156,8 @@ export interface Event {
2154
2156
  */
2155
2157
  installerInfo?: {
2156
2158
  packageSuffix?: string;
2159
+ packageArch?: string;
2160
+ launchId?: string;
2157
2161
  packageCount?: number;
2158
2162
  totalSize?: number;
2159
2163
  additionalProperties?: never;
@@ -4408,9 +4412,12 @@ export interface Event {
4408
4412
  additionalProperties?: never;
4409
4413
  };
4410
4414
  /**
4411
- * Map of device types to their permission status and reason when permission is not granted
4415
+ * Resource types and their permission status and reason when permission is not granted
4412
4416
  */
4413
4417
  privacyAndSecurityPermission?: {
4418
+ /**
4419
+ * Permission status and reason for a resource
4420
+ */
4414
4421
  camera?: {
4415
4422
  /**
4416
4423
  * status of device permission given to client application
@@ -4422,6 +4429,9 @@ export interface Event {
4422
4429
  reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
4423
4430
  additionalProperties?: never;
4424
4431
  };
4432
+ /**
4433
+ * Permission status and reason for a resource
4434
+ */
4425
4435
  microphone?: {
4426
4436
  /**
4427
4437
  * status of device permission given to client application
@@ -4433,6 +4443,9 @@ export interface Event {
4433
4443
  reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
4434
4444
  additionalProperties?: never;
4435
4445
  };
4446
+ /**
4447
+ * Permission status and reason for a resource
4448
+ */
4436
4449
  contentShare?: {
4437
4450
  /**
4438
4451
  * status of device permission given to client application
@@ -18788,6 +18801,8 @@ export interface ClientEvent {
18788
18801
  */
18789
18802
  installerInfo?: {
18790
18803
  packageSuffix?: string;
18804
+ packageArch?: string;
18805
+ launchId?: string;
18791
18806
  packageCount?: number;
18792
18807
  totalSize?: number;
18793
18808
  additionalProperties?: never;
@@ -21042,9 +21057,12 @@ export interface ClientEvent {
21042
21057
  additionalProperties?: never;
21043
21058
  };
21044
21059
  /**
21045
- * Map of device types to their permission status and reason when permission is not granted
21060
+ * Resource types and their permission status and reason when permission is not granted
21046
21061
  */
21047
21062
  privacyAndSecurityPermission?: {
21063
+ /**
21064
+ * Permission status and reason for a resource
21065
+ */
21048
21066
  camera?: {
21049
21067
  /**
21050
21068
  * status of device permission given to client application
@@ -21056,6 +21074,9 @@ export interface ClientEvent {
21056
21074
  reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
21057
21075
  additionalProperties?: never;
21058
21076
  };
21077
+ /**
21078
+ * Permission status and reason for a resource
21079
+ */
21059
21080
  microphone?: {
21060
21081
  /**
21061
21082
  * status of device permission given to client application
@@ -21067,6 +21088,9 @@ export interface ClientEvent {
21067
21088
  reason?: "ALREADY_IN_USE" | "DENIED_BY_USER" | "DENIED_BY_SYSTEM" | "NO_DEVICE_FOUND" | "UNKNOWN";
21068
21089
  additionalProperties?: never;
21069
21090
  };
21091
+ /**
21092
+ * Permission status and reason for a resource
21093
+ */
21070
21094
  contentShare?: {
21071
21095
  /**
21072
21096
  * status of device permission given to client application
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.2212"
35
+ "version": "1.0.2214"
36
36
  }