@webex/event-dictionary-ts 1.0.1327 → 1.0.1329
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.
|
@@ -3031,6 +3031,9 @@
|
|
|
3031
3031
|
"type": "object",
|
|
3032
3032
|
"additionalProperties": true
|
|
3033
3033
|
},
|
|
3034
|
+
"rawErrorMessage": {
|
|
3035
|
+
"type": "string"
|
|
3036
|
+
},
|
|
3034
3037
|
"shownToUser": {
|
|
3035
3038
|
"type": "boolean"
|
|
3036
3039
|
},
|
|
@@ -9430,6 +9433,9 @@
|
|
|
9430
9433
|
"type": "object",
|
|
9431
9434
|
"additionalProperties": true
|
|
9432
9435
|
},
|
|
9436
|
+
"rawErrorMessage": {
|
|
9437
|
+
"type": "string"
|
|
9438
|
+
},
|
|
9433
9439
|
"name": {
|
|
9434
9440
|
"enum": [
|
|
9435
9441
|
"timeout",
|
|
@@ -21812,6 +21818,9 @@
|
|
|
21812
21818
|
"type": "object",
|
|
21813
21819
|
"additionalProperties": true
|
|
21814
21820
|
},
|
|
21821
|
+
"rawErrorMessage": {
|
|
21822
|
+
"type": "string"
|
|
21823
|
+
},
|
|
21815
21824
|
"shownToUser": {
|
|
21816
21825
|
"type": "boolean"
|
|
21817
21826
|
},
|
|
@@ -1156,6 +1156,7 @@ export interface Event {
|
|
|
1156
1156
|
httpCode?: number;
|
|
1157
1157
|
errorCodeExt1?: number;
|
|
1158
1158
|
errorData?: {};
|
|
1159
|
+
rawErrorMessage?: string;
|
|
1159
1160
|
shownToUser: boolean;
|
|
1160
1161
|
serviceErrorCode?: number;
|
|
1161
1162
|
name:
|
|
@@ -4013,6 +4014,7 @@ export interface Event {
|
|
|
4013
4014
|
httpCode?: number;
|
|
4014
4015
|
errorCodeExt1?: number;
|
|
4015
4016
|
errorData?: {};
|
|
4017
|
+
rawErrorMessage?: string;
|
|
4016
4018
|
name: "timeout" | "unauthorized" | "downstream-failure" | "upstream-failure" | "other";
|
|
4017
4019
|
component?: string;
|
|
4018
4020
|
additionalProperties?: false;
|
|
@@ -8564,6 +8566,7 @@ export interface Event {
|
|
|
8564
8566
|
httpCode?: number;
|
|
8565
8567
|
errorCodeExt1?: number;
|
|
8566
8568
|
errorData?: {};
|
|
8569
|
+
rawErrorMessage?: string;
|
|
8567
8570
|
shownToUser: boolean;
|
|
8568
8571
|
serviceErrorCode?: number;
|
|
8569
8572
|
name:
|
|
@@ -10339,6 +10342,7 @@ export interface ClientEvent {
|
|
|
10339
10342
|
httpCode?: number;
|
|
10340
10343
|
errorCodeExt1?: number;
|
|
10341
10344
|
errorData?: {};
|
|
10345
|
+
rawErrorMessage?: string;
|
|
10342
10346
|
shownToUser: boolean;
|
|
10343
10347
|
serviceErrorCode?: number;
|
|
10344
10348
|
name:
|
|
@@ -13045,6 +13049,7 @@ export interface FeatureEvent {
|
|
|
13045
13049
|
httpCode?: number;
|
|
13046
13050
|
errorCodeExt1?: number;
|
|
13047
13051
|
errorData?: {};
|
|
13052
|
+
rawErrorMessage?: string;
|
|
13048
13053
|
shownToUser: boolean;
|
|
13049
13054
|
serviceErrorCode?: number;
|
|
13050
13055
|
name:
|
package/package.json
CHANGED