@webex/event-dictionary-ts 1.0.2212 → 1.0.2213
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.
|
@@ -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
|
},
|
|
@@ -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;
|
|
@@ -18788,6 +18792,8 @@ export interface ClientEvent {
|
|
|
18788
18792
|
*/
|
|
18789
18793
|
installerInfo?: {
|
|
18790
18794
|
packageSuffix?: string;
|
|
18795
|
+
packageArch?: string;
|
|
18796
|
+
launchId?: string;
|
|
18791
18797
|
packageCount?: number;
|
|
18792
18798
|
totalSize?: number;
|
|
18793
18799
|
additionalProperties?: never;
|
package/package.json
CHANGED