@webex/event-dictionary-ts 1.0.2235 → 1.0.2237
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.
|
@@ -2639,6 +2639,7 @@
|
|
|
2639
2639
|
"client.startup.start",
|
|
2640
2640
|
"client.startup.end",
|
|
2641
2641
|
"client.switch.environment",
|
|
2642
|
+
"client.system.error",
|
|
2642
2643
|
"client.u2c.limited-catalog.request",
|
|
2643
2644
|
"client.u2c.limited-catalog.response",
|
|
2644
2645
|
"client.u2c.signin-catalog.request",
|
|
@@ -4029,7 +4030,8 @@
|
|
|
4029
4030
|
},
|
|
4030
4031
|
"preInstalledVersion": {
|
|
4031
4032
|
"type": "string"
|
|
4032
|
-
}
|
|
4033
|
+
},
|
|
4034
|
+
"proxyInfo": {}
|
|
4033
4035
|
}
|
|
4034
4036
|
},
|
|
4035
4037
|
"installerInfo": {
|
|
@@ -582,7 +582,8 @@
|
|
|
582
582
|
},
|
|
583
583
|
"preInstalledVersion": {
|
|
584
584
|
"type": "string"
|
|
585
|
-
}
|
|
585
|
+
},
|
|
586
|
+
"proxyInfo": {}
|
|
586
587
|
}
|
|
587
588
|
},
|
|
588
589
|
"installerInfo": {
|
|
@@ -3304,6 +3305,7 @@
|
|
|
3304
3305
|
"client.startup.start",
|
|
3305
3306
|
"client.startup.end",
|
|
3306
3307
|
"client.switch.environment",
|
|
3308
|
+
"client.system.error",
|
|
3307
3309
|
"client.u2c.limited-catalog.request",
|
|
3308
3310
|
"client.u2c.limited-catalog.response",
|
|
3309
3311
|
"client.u2c.signin-catalog.request",
|
|
@@ -4694,7 +4696,8 @@
|
|
|
4694
4696
|
},
|
|
4695
4697
|
"preInstalledVersion": {
|
|
4696
4698
|
"type": "string"
|
|
4697
|
-
}
|
|
4699
|
+
},
|
|
4700
|
+
"proxyInfo": {}
|
|
4698
4701
|
}
|
|
4699
4702
|
},
|
|
4700
4703
|
"installerInfo": {
|
|
@@ -339,6 +339,7 @@ export interface Event {
|
|
|
339
339
|
preInstalledTime?: string;
|
|
340
340
|
preInstalledType?: "app" | "installer" | "launcher";
|
|
341
341
|
preInstalledVersion?: string;
|
|
342
|
+
proxyInfo?: {};
|
|
342
343
|
additionalProperties?: never;
|
|
343
344
|
};
|
|
344
345
|
/**
|
|
@@ -1472,6 +1473,7 @@ export interface Event {
|
|
|
1472
1473
|
| "client.startup.start"
|
|
1473
1474
|
| "client.startup.end"
|
|
1474
1475
|
| "client.switch.environment"
|
|
1476
|
+
| "client.system.error"
|
|
1475
1477
|
| "client.u2c.limited-catalog.request"
|
|
1476
1478
|
| "client.u2c.limited-catalog.response"
|
|
1477
1479
|
| "client.u2c.signin-catalog.request"
|
|
@@ -2164,6 +2166,7 @@ export interface Event {
|
|
|
2164
2166
|
preInstalledTime?: string;
|
|
2165
2167
|
preInstalledType?: "app" | "installer" | "launcher";
|
|
2166
2168
|
preInstalledVersion?: string;
|
|
2169
|
+
proxyInfo?: {};
|
|
2167
2170
|
additionalProperties?: never;
|
|
2168
2171
|
};
|
|
2169
2172
|
/**
|
|
@@ -18182,6 +18185,7 @@ export interface ClientEvent {
|
|
|
18182
18185
|
| "client.startup.start"
|
|
18183
18186
|
| "client.startup.end"
|
|
18184
18187
|
| "client.switch.environment"
|
|
18188
|
+
| "client.system.error"
|
|
18185
18189
|
| "client.u2c.limited-catalog.request"
|
|
18186
18190
|
| "client.u2c.limited-catalog.response"
|
|
18187
18191
|
| "client.u2c.signin-catalog.request"
|
|
@@ -18874,6 +18878,7 @@ export interface ClientEvent {
|
|
|
18874
18878
|
preInstalledTime?: string;
|
|
18875
18879
|
preInstalledType?: "app" | "installer" | "launcher";
|
|
18876
18880
|
preInstalledVersion?: string;
|
|
18881
|
+
proxyInfo?: {};
|
|
18877
18882
|
additionalProperties?: never;
|
|
18878
18883
|
};
|
|
18879
18884
|
/**
|
package/package.json
CHANGED