devtools-protocol 0.0.1284894 → 0.0.1285609

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.
@@ -965,6 +965,17 @@
965
965
  "$ref": "Animation"
966
966
  }
967
967
  ]
968
+ },
969
+ {
970
+ "name": "animationUpdated",
971
+ "description": "Event for animation that has been updated.",
972
+ "parameters": [
973
+ {
974
+ "name": "animation",
975
+ "description": "Animation that was updated.",
976
+ "$ref": "Animation"
977
+ }
978
+ ]
968
979
  }
969
980
  ]
970
981
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devtools-protocol",
3
- "version": "0.0.1284894",
3
+ "version": "0.0.1285609",
4
4
  "description": "The Chrome DevTools Protocol JSON",
5
5
  "repository": "https://github.com/ChromeDevTools/devtools-protocol",
6
6
  "author": "The Chromium Authors",
@@ -475,6 +475,12 @@ experimental domain Animation
475
475
  # Animation that was started.
476
476
  Animation animation
477
477
 
478
+ # Event for animation that has been updated.
479
+ event animationUpdated
480
+ parameters
481
+ # Animation that was updated.
482
+ Animation animation
483
+
478
484
  # Audits domain allows investigation of page violations and possible improvements.
479
485
  experimental domain Audits
480
486
  depends on Network
@@ -113,6 +113,10 @@ export namespace ProtocolMapping {
113
113
  * Event for animation that has been started.
114
114
  */
115
115
  'Animation.animationStarted': [Protocol.Animation.AnimationStartedEvent];
116
+ /**
117
+ * Event for animation that has been updated.
118
+ */
119
+ 'Animation.animationUpdated': [Protocol.Animation.AnimationUpdatedEvent];
116
120
  'Audits.issueAdded': [Protocol.Audits.IssueAddedEvent];
117
121
  /**
118
122
  * Emitted when an address form is filled.
@@ -764,6 +764,11 @@ export namespace ProtocolProxyApi {
764
764
  */
765
765
  on(event: 'animationStarted', listener: (params: Protocol.Animation.AnimationStartedEvent) => void): void;
766
766
 
767
+ /**
768
+ * Event for animation that has been updated.
769
+ */
770
+ on(event: 'animationUpdated', listener: (params: Protocol.Animation.AnimationUpdatedEvent) => void): void;
771
+
767
772
  }
768
773
 
769
774
  export interface AuditsApi {
@@ -818,6 +818,13 @@ export namespace ProtocolTestsProxyApi {
818
818
  offAnimationStarted(listener: (event: { params: Protocol.Animation.AnimationStartedEvent }) => void): void;
819
819
  onceAnimationStarted(eventMatcher?: (event: { params: Protocol.Animation.AnimationStartedEvent }) => boolean): Promise<{ params: Protocol.Animation.AnimationStartedEvent }>;
820
820
 
821
+ /**
822
+ * Event for animation that has been updated.
823
+ */
824
+ onAnimationUpdated(listener: (event: { params: Protocol.Animation.AnimationUpdatedEvent }) => void): void;
825
+ offAnimationUpdated(listener: (event: { params: Protocol.Animation.AnimationUpdatedEvent }) => void): void;
826
+ onceAnimationUpdated(eventMatcher?: (event: { params: Protocol.Animation.AnimationUpdatedEvent }) => boolean): Promise<{ params: Protocol.Animation.AnimationUpdatedEvent }>;
827
+
821
828
  }
822
829
 
823
830
  export interface AuditsApi {
@@ -3260,6 +3260,16 @@ export namespace Protocol {
3260
3260
  */
3261
3261
  animation: Animation;
3262
3262
  }
3263
+
3264
+ /**
3265
+ * Event for animation that has been updated.
3266
+ */
3267
+ export interface AnimationUpdatedEvent {
3268
+ /**
3269
+ * Animation that was updated.
3270
+ */
3271
+ animation: Animation;
3272
+ }
3263
3273
  }
3264
3274
 
3265
3275
  /**