@webex/event-dictionary-ts 1.0.2105 → 1.0.2107
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.
|
@@ -3004,7 +3004,7 @@
|
|
|
3004
3004
|
"wxc",
|
|
3005
3005
|
"service-api-error",
|
|
3006
3006
|
"network-error",
|
|
3007
|
-
"
|
|
3007
|
+
"Error_Success",
|
|
3008
3008
|
"other"
|
|
3009
3009
|
],
|
|
3010
3010
|
"type": "string"
|
|
@@ -4128,6 +4128,9 @@
|
|
|
4128
4128
|
"isWebReturnUser": {
|
|
4129
4129
|
"type": "boolean"
|
|
4130
4130
|
},
|
|
4131
|
+
"webOnlyDayCrossLaunch": {
|
|
4132
|
+
"type": "boolean"
|
|
4133
|
+
},
|
|
4131
4134
|
"responseCode": {
|
|
4132
4135
|
"type": "integer"
|
|
4133
4136
|
},
|
|
@@ -3564,7 +3564,7 @@
|
|
|
3564
3564
|
"wxc",
|
|
3565
3565
|
"service-api-error",
|
|
3566
3566
|
"network-error",
|
|
3567
|
-
"
|
|
3567
|
+
"Error_Success",
|
|
3568
3568
|
"other"
|
|
3569
3569
|
],
|
|
3570
3570
|
"type": "string"
|
|
@@ -4688,6 +4688,9 @@
|
|
|
4688
4688
|
"isWebReturnUser": {
|
|
4689
4689
|
"type": "boolean"
|
|
4690
4690
|
},
|
|
4691
|
+
"webOnlyDayCrossLaunch": {
|
|
4692
|
+
"type": "boolean"
|
|
4693
|
+
},
|
|
4691
4694
|
"responseCode": {
|
|
4692
4695
|
"type": "integer"
|
|
4693
4696
|
},
|
|
@@ -28295,7 +28298,7 @@
|
|
|
28295
28298
|
"wxc",
|
|
28296
28299
|
"service-api-error",
|
|
28297
28300
|
"network-error",
|
|
28298
|
-
"
|
|
28301
|
+
"Error_Success",
|
|
28299
28302
|
"other"
|
|
28300
28303
|
],
|
|
28301
28304
|
"type": "string"
|
|
@@ -1554,7 +1554,7 @@ export interface Event {
|
|
|
1554
1554
|
| "wxc"
|
|
1555
1555
|
| "service-api-error"
|
|
1556
1556
|
| "network-error"
|
|
1557
|
-
| "
|
|
1557
|
+
| "Error_Success"
|
|
1558
1558
|
| "other";
|
|
1559
1559
|
component?: string;
|
|
1560
1560
|
additionalProperties?: false;
|
|
@@ -2097,6 +2097,7 @@ export interface Event {
|
|
|
2097
2097
|
isRoapCallEnabled?: boolean;
|
|
2098
2098
|
isFirstTimeUser?: boolean;
|
|
2099
2099
|
isWebReturnUser?: boolean;
|
|
2100
|
+
webOnlyDayCrossLaunch?: boolean;
|
|
2100
2101
|
responseCode?: number;
|
|
2101
2102
|
/**
|
|
2102
2103
|
* Join Meeting Time
|
|
@@ -12182,7 +12183,7 @@ export interface Event {
|
|
|
12182
12183
|
| "wxc"
|
|
12183
12184
|
| "service-api-error"
|
|
12184
12185
|
| "network-error"
|
|
12185
|
-
| "
|
|
12186
|
+
| "Error_Success"
|
|
12186
12187
|
| "other";
|
|
12187
12188
|
component?: string;
|
|
12188
12189
|
additionalProperties?: false;
|
|
@@ -17333,7 +17334,7 @@ export interface ClientEvent {
|
|
|
17333
17334
|
| "wxc"
|
|
17334
17335
|
| "service-api-error"
|
|
17335
17336
|
| "network-error"
|
|
17336
|
-
| "
|
|
17337
|
+
| "Error_Success"
|
|
17337
17338
|
| "other";
|
|
17338
17339
|
component?: string;
|
|
17339
17340
|
additionalProperties?: false;
|
|
@@ -17876,6 +17877,7 @@ export interface ClientEvent {
|
|
|
17876
17877
|
isRoapCallEnabled?: boolean;
|
|
17877
17878
|
isFirstTimeUser?: boolean;
|
|
17878
17879
|
isWebReturnUser?: boolean;
|
|
17880
|
+
webOnlyDayCrossLaunch?: boolean;
|
|
17879
17881
|
responseCode?: number;
|
|
17880
17882
|
/**
|
|
17881
17883
|
* Join Meeting Time
|
|
@@ -20903,7 +20905,7 @@ export interface FeatureEvent {
|
|
|
20903
20905
|
| "wxc"
|
|
20904
20906
|
| "service-api-error"
|
|
20905
20907
|
| "network-error"
|
|
20906
|
-
| "
|
|
20908
|
+
| "Error_Success"
|
|
20907
20909
|
| "other";
|
|
20908
20910
|
component?: string;
|
|
20909
20911
|
additionalProperties?: false;
|
package/package.json
CHANGED