@webex/event-dictionary-ts 1.0.2244 → 1.0.2246

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.
@@ -2410,6 +2410,7 @@
2410
2410
  },
2411
2411
  "name": {
2412
2412
  "enum": [
2413
+ "client.system.about-to-sleep",
2413
2414
  "client.abort.join",
2414
2415
  "client.alert.displayed",
2415
2416
  "client.alert.removed",
@@ -2612,6 +2613,7 @@
2612
2613
  "client.pstnaudio.attempt.start",
2613
2614
  "client.roap-message.received",
2614
2615
  "client.roap-message.sent",
2616
+ "client.system.resumed-from-sleep",
2615
2617
  "client.scheduling.initiate",
2616
2618
  "client.scheduling.notification",
2617
2619
  "client.share.floor-accept.notification",
@@ -3076,6 +3076,7 @@
3076
3076
  },
3077
3077
  "name": {
3078
3078
  "enum": [
3079
+ "client.system.about-to-sleep",
3079
3080
  "client.abort.join",
3080
3081
  "client.alert.displayed",
3081
3082
  "client.alert.removed",
@@ -3278,6 +3279,7 @@
3278
3279
  "client.pstnaudio.attempt.start",
3279
3280
  "client.roap-message.received",
3280
3281
  "client.roap-message.sent",
3282
+ "client.system.resumed-from-sleep",
3281
3283
  "client.scheduling.initiate",
3282
3284
  "client.scheduling.notification",
3283
3285
  "client.share.floor-accept.notification",
@@ -20871,6 +20873,12 @@
20871
20873
  "type": "number",
20872
20874
  "minimum": -9223372036854776000.0,
20873
20875
  "maximum": 9223372036854776000.0
20876
+ },
20877
+ "minAntiStrobeGlobalRatio": {
20878
+ "type": "number"
20879
+ },
20880
+ "minAntiStrobeBlockRatio": {
20881
+ "type": "number"
20874
20882
  }
20875
20883
  }
20876
20884
  },
@@ -6380,6 +6380,12 @@
6380
6380
  "type": "number",
6381
6381
  "minimum": -9223372036854776000.0,
6382
6382
  "maximum": 9223372036854776000.0
6383
+ },
6384
+ "minAntiStrobeGlobalRatio": {
6385
+ "type": "number"
6386
+ },
6387
+ "minAntiStrobeBlockRatio": {
6388
+ "type": "number"
6383
6389
  }
6384
6390
  }
6385
6391
  },
@@ -1244,6 +1244,7 @@ export interface Event {
1244
1244
  additionalProperties?: never;
1245
1245
  };
1246
1246
  name:
1247
+ | "client.system.about-to-sleep"
1247
1248
  | "client.abort.join"
1248
1249
  | "client.alert.displayed"
1249
1250
  | "client.alert.removed"
@@ -1446,6 +1447,7 @@ export interface Event {
1446
1447
  | "client.pstnaudio.attempt.start"
1447
1448
  | "client.roap-message.received"
1448
1449
  | "client.roap-message.sent"
1450
+ | "client.system.resumed-from-sleep"
1449
1451
  | "client.scheduling.initiate"
1450
1452
  | "client.scheduling.notification"
1451
1453
  | "client.share.floor-accept.notification"
@@ -9291,6 +9293,8 @@ export interface Event {
9291
9293
  | "VIDEO_STROBE_PATTERN_BAND"
9292
9294
  | "VIDEO_STROBE_PATTERN_MIXED";
9293
9295
  maxAntiStrobeProcessMillis?: number;
9296
+ minAntiStrobeGlobalRatio?: number;
9297
+ minAntiStrobeBlockRatio?: number;
9294
9298
  additionalProperties?: never;
9295
9299
  };
9296
9300
  /**
@@ -18068,6 +18072,7 @@ export interface ClientEvent {
18068
18072
  additionalProperties?: never;
18069
18073
  };
18070
18074
  name:
18075
+ | "client.system.about-to-sleep"
18071
18076
  | "client.abort.join"
18072
18077
  | "client.alert.displayed"
18073
18078
  | "client.alert.removed"
@@ -18270,6 +18275,7 @@ export interface ClientEvent {
18270
18275
  | "client.pstnaudio.attempt.start"
18271
18276
  | "client.roap-message.received"
18272
18277
  | "client.roap-message.sent"
18278
+ | "client.system.resumed-from-sleep"
18273
18279
  | "client.scheduling.initiate"
18274
18280
  | "client.scheduling.notification"
18275
18281
  | "client.share.floor-accept.notification"
@@ -25767,6 +25773,8 @@ export interface MediaQualityEvent {
25767
25773
  | "VIDEO_STROBE_PATTERN_BAND"
25768
25774
  | "VIDEO_STROBE_PATTERN_MIXED";
25769
25775
  maxAntiStrobeProcessMillis?: number;
25776
+ minAntiStrobeGlobalRatio?: number;
25777
+ minAntiStrobeBlockRatio?: number;
25770
25778
  additionalProperties?: never;
25771
25779
  };
25772
25780
  /**
package/package.json CHANGED
@@ -32,5 +32,5 @@
32
32
  "access": "public",
33
33
  "registry": "https://registry.npmjs.org"
34
34
  },
35
- "version": "1.0.2244"
35
+ "version": "1.0.2246"
36
36
  }