@webex/event-dictionary-ts 1.0.1583 → 1.0.1585
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.
|
@@ -467,6 +467,9 @@
|
|
|
467
467
|
"originData": {
|
|
468
468
|
"type": "object",
|
|
469
469
|
"additionalProperties": true
|
|
470
|
+
},
|
|
471
|
+
"serviceVersion": {
|
|
472
|
+
"type": "string"
|
|
470
473
|
}
|
|
471
474
|
}
|
|
472
475
|
},
|
|
@@ -4127,6 +4130,9 @@
|
|
|
4127
4130
|
"originData": {
|
|
4128
4131
|
"type": "object",
|
|
4129
4132
|
"additionalProperties": true
|
|
4133
|
+
},
|
|
4134
|
+
"serviceVersion": {
|
|
4135
|
+
"type": "string"
|
|
4130
4136
|
}
|
|
4131
4137
|
}
|
|
4132
4138
|
},
|
|
@@ -263,6 +263,7 @@ export interface Event {
|
|
|
263
263
|
emmVendorId?: string;
|
|
264
264
|
isHybridMedia?: boolean;
|
|
265
265
|
originData?: {};
|
|
266
|
+
serviceVersion?: string;
|
|
266
267
|
additionalProperties?: false;
|
|
267
268
|
};
|
|
268
269
|
originTime: {
|
|
@@ -1755,6 +1756,7 @@ export interface Event {
|
|
|
1755
1756
|
emmVendorId?: string;
|
|
1756
1757
|
isHybridMedia?: boolean;
|
|
1757
1758
|
originData?: {};
|
|
1759
|
+
serviceVersion?: string;
|
|
1758
1760
|
additionalProperties?: false;
|
|
1759
1761
|
};
|
|
1760
1762
|
reachabilityStatus?: "none" | "all-false" | "partial-success" | "all-success";
|
|
@@ -13782,6 +13784,7 @@ export interface ClientEvent {
|
|
|
13782
13784
|
emmVendorId?: string;
|
|
13783
13785
|
isHybridMedia?: boolean;
|
|
13784
13786
|
originData?: {};
|
|
13787
|
+
serviceVersion?: string;
|
|
13785
13788
|
additionalProperties?: false;
|
|
13786
13789
|
};
|
|
13787
13790
|
reachabilityStatus?: "none" | "all-false" | "partial-success" | "all-success";
|
package/package.json
CHANGED