devtools-protocol 0.0.1249869 → 0.0.1262051

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.
@@ -309,6 +309,9 @@ experimental domain Animation
309
309
  # `Animation`'s playback rate.
310
310
  number playbackRate
311
311
  # `Animation`'s start time.
312
+ # Milliseconds for time based animations and
313
+ # percentage [0 - 100] for scroll driven animations
314
+ # (i.e. when viewOrScrollTimeline exists).
312
315
  number startTime
313
316
  # `Animation`'s current time.
314
317
  number currentTime
@@ -322,6 +325,26 @@ experimental domain Animation
322
325
  # A unique ID for `Animation` representing the sources that triggered this CSS
323
326
  # animation/transition.
324
327
  optional string cssId
328
+ # View or scroll timeline
329
+ optional ViewOrScrollTimeline viewOrScrollTimeline
330
+
331
+ # Timeline instance
332
+ type ViewOrScrollTimeline extends object
333
+ properties
334
+ # Scroll container node
335
+ optional DOM.BackendNodeId sourceNodeId
336
+ # Represents the starting scroll position of the timeline
337
+ # as a length offset in pixels from scroll origin.
338
+ optional number startOffset
339
+ # Represents the ending scroll position of the timeline
340
+ # as a length offset in pixels from scroll origin.
341
+ optional number endOffset
342
+ # The element whose principal box's visibility in the
343
+ # scrollport defined the progress of the timeline.
344
+ # Does not exist for animations with ScrollTimeline
345
+ optional DOM.BackendNodeId subjectNodeId
346
+ # Orientation of the scroll
347
+ DOM.ScrollOrientation axis
325
348
 
326
349
  # AnimationEffect instance
327
350
  type AnimationEffect extends object
@@ -335,6 +358,9 @@ experimental domain Animation
335
358
  # `AnimationEffect`'s iterations.
336
359
  number iterations
337
360
  # `AnimationEffect`'s iteration duration.
361
+ # Milliseconds for time based animations and
362
+ # percentage [0 - 100] for scroll driven animations
363
+ # (i.e. when viewOrScrollTimeline exists).
338
364
  number duration
339
365
  # `AnimationEffect`'s playback direction.
340
366
  string direction
@@ -1084,6 +1110,8 @@ experimental domain Autofill
1084
1110
  string autofillType
1085
1111
  # The filling strategy
1086
1112
  FillingStrategy fillingStrategy
1113
+ # The frame the field belongs to
1114
+ Page.FrameId frameId
1087
1115
  # The form field's DOM node
1088
1116
  DOM.BackendNodeId fieldId
1089
1117
 
@@ -1242,6 +1270,7 @@ domain Browser
1242
1270
  protectedMediaIdentifier
1243
1271
  sensors
1244
1272
  storageAccess
1273
+ speakerSelection
1245
1274
  topLevelStorageAccess
1246
1275
  videoCapture
1247
1276
  videoCapturePanTiltZoom
@@ -2559,6 +2588,12 @@ domain DOM
2559
2588
  Block
2560
2589
  Both
2561
2590
 
2591
+ # Physical scroll orientation
2592
+ type ScrollOrientation extends string
2593
+ enum
2594
+ horizontal
2595
+ vertical
2596
+
2562
2597
  # DOM interaction is implemented in terms of mirror objects that represent the actual DOM nodes.
2563
2598
  # DOMNode is a base node mirror type.
2564
2599
  type Node extends object
@@ -5702,9 +5737,18 @@ domain Network
5702
5737
  # This value is used when the reason is unknown.
5703
5738
  unspecifiedReason
5704
5739
 
5740
+ # Source of service worker router.
5741
+ type ServiceWorkerRouterSource extends string
5742
+ enum
5743
+ network
5744
+ cache
5745
+ fetch-event
5746
+ race-network-and-fetch-handler
5747
+
5705
5748
  experimental type ServiceWorkerRouterInfo extends object
5706
5749
  properties
5707
5750
  integer ruleIdMatched
5751
+ ServiceWorkerRouterSource matchedSourceType
5708
5752
 
5709
5753
  # HTTP response data.
5710
5754
  type Response extends object
@@ -5991,6 +6035,28 @@ domain Network
5991
6035
  # RFC6265bis.
5992
6036
  NameValuePairExceedsMaxSize
5993
6037
 
6038
+ # Types of reasons why a cookie should have been blocked by 3PCD but is exempted for the request.
6039
+ experimental type CookieExemptionReason extends string
6040
+ enum
6041
+ # The default value. Cookie with this reason could either be blocked or included.
6042
+ None
6043
+ # The cookie should have been blocked by 3PCD but is exempted by explicit user setting.
6044
+ UserSetting
6045
+ # The cookie should have been blocked by 3PCD but is exempted by metadata mitigation.
6046
+ TPCDMetadata
6047
+ # The cookie should have been blocked by 3PCD but is exempted by Deprecation Trial mitigation.
6048
+ TPCDDeprecationTrial
6049
+ # The cookie should have been blocked by 3PCD but is exempted by heuristics mitigation.
6050
+ TPCDHeuristics
6051
+ # The cookie should have been blocked by 3PCD but is exempted by Enterprise Policy.
6052
+ EnterprisePolicy
6053
+ # The cookie should have been blocked by 3PCD but is exempted by Storage Access API.
6054
+ StorageAccess
6055
+ # The cookie should have been blocked by 3PCD but is exempted by Top-level Storage Access API.
6056
+ TopLevelStorageAccess
6057
+ # The cookie should have been blocked by 3PCD but is exempted by CORS opt-in.
6058
+ CorsOptIn
6059
+
5994
6060
  # A cookie which was not stored from a response with the corresponding reason.
5995
6061
  experimental type BlockedSetCookieWithReason extends object
5996
6062
  properties
@@ -6004,13 +6070,26 @@ domain Network
6004
6070
  # errors.
6005
6071
  optional Cookie cookie
6006
6072
 
6007
- # A cookie with was not sent with a request with the corresponding reason.
6008
- experimental type BlockedCookieWithReason extends object
6073
+ # A cookie should have been blocked by 3PCD but is exempted and stored from a response with the
6074
+ # corresponding reason. A cookie could only have at most one exemption reason.
6075
+ experimental type ExemptedSetCookieWithReason extends object
6076
+ properties
6077
+ # The reason the cookie was exempted.
6078
+ CookieExemptionReason exemptionReason
6079
+ # The cookie object representing the cookie.
6080
+ Cookie cookie
6081
+
6082
+ # A cookie associated with the request which may or may not be sent with it.
6083
+ # Includes the cookies itself and reasons for blocking or exemption.
6084
+ experimental type AssociatedCookie extends object
6009
6085
  properties
6010
- # The reason(s) the cookie was blocked.
6011
- array of CookieBlockedReason blockedReasons
6012
6086
  # The cookie object representing the cookie which was not sent.
6013
6087
  Cookie cookie
6088
+ # The reason(s) the cookie was blocked. If empty means the cookie is included.
6089
+ array of CookieBlockedReason blockedReasons
6090
+ # The reason the cookie should have been blocked by 3PCD but is exempted. A cookie could
6091
+ # only have at most one exemption reason.
6092
+ optional CookieExemptionReason exemptionReason
6014
6093
 
6015
6094
  # Cookie parameter object
6016
6095
  type CookieParam extends object
@@ -6238,7 +6317,7 @@ domain Network
6238
6317
  # Response to a requestIntercepted with an authChallenge. Must not be set otherwise.
6239
6318
  optional AuthChallengeResponse authChallengeResponse
6240
6319
 
6241
- # Deletes browser cookies with matching name and url or domain/path pair.
6320
+ # Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
6242
6321
  command deleteCookies
6243
6322
  parameters
6244
6323
  # Name of the cookies to remove.
@@ -6250,6 +6329,9 @@ domain Network
6250
6329
  optional string domain
6251
6330
  # If specified, deletes only cookies with the exact path.
6252
6331
  optional string path
6332
+ # If specified, deletes only cookies with the the given name and partitionKey where domain
6333
+ # matches provided URL.
6334
+ optional string partitionKey
6253
6335
 
6254
6336
  # Disables network tracking, prevents network events from being sent to the client.
6255
6337
  command disable
@@ -6779,8 +6861,8 @@ domain Network
6779
6861
  # Request identifier. Used to match this information to an existing requestWillBeSent event.
6780
6862
  RequestId requestId
6781
6863
  # A list of cookies potentially associated to the requested URL. This includes both cookies sent with
6782
- # the request and the ones not sent; the latter are distinguished by having blockedReason field set.
6783
- array of BlockedCookieWithReason associatedCookies
6864
+ # the request and the ones not sent; the latter are distinguished by having blockedReasons field set.
6865
+ array of AssociatedCookie associatedCookies
6784
6866
  # Raw request headers as they will be sent over the wire.
6785
6867
  Headers headers
6786
6868
  # Connection timing information for the request.
@@ -6818,6 +6900,9 @@ domain Network
6818
6900
  optional string cookiePartitionKey
6819
6901
  # True if partitioned cookies are enabled, but the partition key is not serializeable to string.
6820
6902
  optional boolean cookiePartitionKeyOpaque
6903
+ # A list of cookies which should have been blocked by 3PCD but are exempted and stored from
6904
+ # the response with the corresponding reason.
6905
+ optional array of ExemptedSetCookieWithReason exemptedCookies
6821
6906
 
6822
6907
  # Fired exactly once for each Trust Token operation. Depending on
6823
6908
  # the type of the operation and whether the operation succeeded or
@@ -7686,6 +7771,7 @@ domain Page
7686
7771
  shared-storage
7687
7772
  shared-storage-select-url
7688
7773
  smart-card
7774
+ speaker-selection
7689
7775
  storage-access
7690
7776
  sub-apps
7691
7777
  sync-xhr
@@ -9606,9 +9692,15 @@ experimental domain Storage
9606
9692
  # Details for an origin's shared storage.
9607
9693
  type SharedStorageMetadata extends object
9608
9694
  properties
9695
+ # Time when the origin's shared storage was last created.
9609
9696
  Network.TimeSinceEpoch creationTime
9697
+ # Number of key-value pairs stored in origin's shared storage.
9610
9698
  integer length
9699
+ # Current amount of bits of entropy remaining in the navigation budget.
9611
9700
  number remainingBudget
9701
+ # Total number of bytes stored as key-value pairs in origin's shared
9702
+ # storage.
9703
+ integer bytesUsed
9612
9704
 
9613
9705
  # Pair of reporting metadata details for a candidate URL for `selectURL()`.
9614
9706
  type SharedStorageReportingMetadata extends object
@@ -10117,13 +10209,18 @@ experimental domain Storage
10117
10209
  include
10118
10210
  exclude
10119
10211
 
10120
- experimental type AttributionReportingAggregatableValueEntry extends object
10212
+ experimental type AttributionReportingAggregatableValueDictEntry extends object
10121
10213
  properties
10122
10214
  string key
10123
10215
  # number instead of integer because not all uint32 can be represented by
10124
10216
  # int
10125
10217
  number value
10126
10218
 
10219
+ experimental type AttributionReportingAggregatableValueEntry extends object
10220
+ properties
10221
+ array of AttributionReportingAggregatableValueDictEntry values
10222
+ AttributionReportingFilterPair filters
10223
+
10127
10224
  experimental type AttributionReportingEventTriggerData extends object
10128
10225
  properties
10129
10226
  UnsignedInt64AsBase10 data
@@ -10649,47 +10746,47 @@ experimental domain Tethering
10649
10746
  # Connection id to be used.
10650
10747
  string connectionId
10651
10748
 
10652
- experimental domain Tracing
10749
+ domain Tracing
10653
10750
  depends on IO
10654
10751
 
10655
10752
  # Configuration for memory dump. Used only when "memory-infra" category is enabled.
10656
- type MemoryDumpConfig extends object
10753
+ experimental type MemoryDumpConfig extends object
10657
10754
 
10658
10755
  type TraceConfig extends object
10659
10756
  properties
10660
10757
  # Controls how the trace buffer stores data.
10661
- optional enum recordMode
10758
+ experimental optional enum recordMode
10662
10759
  recordUntilFull
10663
10760
  recordContinuously
10664
10761
  recordAsMuchAsPossible
10665
10762
  echoToConsole
10666
10763
  # Size of the trace buffer in kilobytes. If not specified or zero is passed, a default value
10667
10764
  # of 200 MB would be used.
10668
- optional number traceBufferSizeInKb
10765
+ experimental optional number traceBufferSizeInKb
10669
10766
  # Turns on JavaScript stack sampling.
10670
- optional boolean enableSampling
10767
+ experimental optional boolean enableSampling
10671
10768
  # Turns on system tracing.
10672
- optional boolean enableSystrace
10769
+ experimental optional boolean enableSystrace
10673
10770
  # Turns on argument filter.
10674
- optional boolean enableArgumentFilter
10771
+ experimental optional boolean enableArgumentFilter
10675
10772
  # Included category filters.
10676
10773
  optional array of string includedCategories
10677
10774
  # Excluded category filters.
10678
10775
  optional array of string excludedCategories
10679
10776
  # Configuration to synthesize the delays in tracing.
10680
- optional array of string syntheticDelays
10777
+ experimental optional array of string syntheticDelays
10681
10778
  # Configuration for memory dump triggers. Used only when "memory-infra" category is enabled.
10682
- optional MemoryDumpConfig memoryDumpConfig
10779
+ experimental optional MemoryDumpConfig memoryDumpConfig
10683
10780
 
10684
10781
  # Data format of a trace. Can be either the legacy JSON format or the
10685
10782
  # protocol buffer format. Note that the JSON format will be deprecated soon.
10686
- type StreamFormat extends string
10783
+ experimental type StreamFormat extends string
10687
10784
  enum
10688
10785
  json
10689
10786
  proto
10690
10787
 
10691
10788
  # Compression type to use for traces returned via streams.
10692
- type StreamCompression extends string
10789
+ experimental type StreamCompression extends string
10693
10790
  enum
10694
10791
  none
10695
10792
  gzip
@@ -10697,7 +10794,7 @@ experimental domain Tracing
10697
10794
  # Details exposed when memory request explicitly declared.
10698
10795
  # Keep consistent with memory_dump_request_args.h and
10699
10796
  # memory_instrumentation.mojom
10700
- type MemoryDumpLevelOfDetail extends string
10797
+ experimental type MemoryDumpLevelOfDetail extends string
10701
10798
  enum
10702
10799
  background
10703
10800
  light
@@ -10708,7 +10805,7 @@ experimental domain Tracing
10708
10805
  # supported on Chrome OS and uses the Perfetto system tracing service.
10709
10806
  # `auto` chooses `system` when the perfettoConfig provided to Tracing.start
10710
10807
  # specifies at least one non-Chrome data source; otherwise uses `chrome`.
10711
- type TracingBackend extends string
10808
+ experimental type TracingBackend extends string
10712
10809
  enum
10713
10810
  auto
10714
10811
  chrome
@@ -10718,19 +10815,19 @@ experimental domain Tracing
10718
10815
  command end
10719
10816
 
10720
10817
  # Gets supported tracing categories.
10721
- command getCategories
10818
+ experimental command getCategories
10722
10819
  returns
10723
10820
  # A list of supported tracing categories.
10724
10821
  array of string categories
10725
10822
 
10726
10823
  # Record a clock sync marker in the trace.
10727
- command recordClockSyncMarker
10824
+ experimental command recordClockSyncMarker
10728
10825
  parameters
10729
10826
  # The ID of this clock sync marker
10730
10827
  string syncId
10731
10828
 
10732
10829
  # Request a global memory dump.
10733
- command requestMemoryDump
10830
+ experimental command requestMemoryDump
10734
10831
  parameters
10735
10832
  # Enables more deterministic results by forcing garbage collection
10736
10833
  optional boolean deterministic
@@ -10746,11 +10843,11 @@ experimental domain Tracing
10746
10843
  command start
10747
10844
  parameters
10748
10845
  # Category/tag filter
10749
- deprecated optional string categories
10846
+ experimental deprecated optional string categories
10750
10847
  # Tracing options
10751
- deprecated optional string options
10848
+ experimental deprecated optional string options
10752
10849
  # If set, the agent will issue bufferUsage events at this interval, specified in milliseconds
10753
- optional number bufferUsageReportingInterval
10850
+ experimental optional number bufferUsageReportingInterval
10754
10851
  # Whether to report trace events as series of dataCollected events or to save trace to a
10755
10852
  # stream (defaults to `ReportEvents`).
10756
10853
  optional enum transferMode
@@ -10761,16 +10858,16 @@ experimental domain Tracing
10761
10858
  optional StreamFormat streamFormat
10762
10859
  # Compression format to use. This only applies when using `ReturnAsStream`
10763
10860
  # transfer mode (defaults to `none`)
10764
- optional StreamCompression streamCompression
10861
+ experimental optional StreamCompression streamCompression
10765
10862
  optional TraceConfig traceConfig
10766
10863
  # Base64-encoded serialized perfetto.protos.TraceConfig protobuf message
10767
10864
  # When specified, the parameters `categories`, `options`, `traceConfig`
10768
10865
  # are ignored.
10769
- optional binary perfettoConfig
10866
+ experimental optional binary perfettoConfig
10770
10867
  # Backend type (defaults to `auto`)
10771
- optional TracingBackend tracingBackend
10868
+ experimental optional TracingBackend tracingBackend
10772
10869
 
10773
- event bufferUsage
10870
+ experimental event bufferUsage
10774
10871
  parameters
10775
10872
  # A number in range [0..1] that indicates the used size of event buffer as a fraction of its
10776
10873
  # total size.
@@ -10783,7 +10880,7 @@ experimental domain Tracing
10783
10880
 
10784
10881
  # Contains a bucket of collected trace events. When tracing is stopped collected events will be
10785
10882
  # sent as a sequence of dataCollected events followed by tracingComplete event.
10786
- event dataCollected
10883
+ experimental event dataCollected
10787
10884
  parameters
10788
10885
  array of object value
10789
10886
 
@@ -11331,6 +11428,14 @@ experimental domain WebAuthn
11331
11428
  # The large blob associated with the credential.
11332
11429
  # See https://w3c.github.io/webauthn/#sctn-large-blob-extension
11333
11430
  optional binary largeBlob
11431
+ # Assertions returned by this credential will have the backup eligibility
11432
+ # (BE) flag set to this value. Defaults to the authenticator's
11433
+ # defaultBackupEligibility value.
11434
+ optional boolean backupEligibility
11435
+ # Assertions returned by this credential will have the backup state (BS)
11436
+ # flag set to this value. Defaults to the authenticator's
11437
+ # defaultBackupState value.
11438
+ optional boolean backupState
11334
11439
 
11335
11440
  # Enable the WebAuthn domain and start intercepting credential storage and
11336
11441
  # retrieval with a virtual authenticator.
@@ -11419,6 +11524,15 @@ experimental domain WebAuthn
11419
11524
  AuthenticatorId authenticatorId
11420
11525
  boolean enabled
11421
11526
 
11527
+ # Allows setting credential properties.
11528
+ # https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
11529
+ command setCredentialProperties
11530
+ parameters
11531
+ AuthenticatorId authenticatorId
11532
+ binary credentialId
11533
+ optional boolean backupEligibility
11534
+ optional boolean backupState
11535
+
11422
11536
  # Triggered when a credential is added to an authenticator.
11423
11537
  event credentialAdded
11424
11538
  parameters
@@ -11855,6 +11969,12 @@ experimental domain FedCm
11855
11969
  ErrorGotIt
11856
11970
  ErrorMoreDetails
11857
11971
 
11972
+ # The URLs that each account has
11973
+ type AccountUrlType extends string
11974
+ enum
11975
+ TermsOfService
11976
+ PrivacyPolicy
11977
+
11858
11978
  # Corresponds to IdentityRequestAccount
11859
11979
  type Account extends object
11860
11980
  properties
@@ -11905,6 +12025,12 @@ experimental domain FedCm
11905
12025
  string dialogId
11906
12026
  DialogButton dialogButton
11907
12027
 
12028
+ command openUrl
12029
+ parameters
12030
+ string dialogId
12031
+ integer accountIndex
12032
+ AccountUrlType accountUrlType
12033
+
11908
12034
  command dismissDialog
11909
12035
  parameters
11910
12036
  string dialogId
@@ -3200,7 +3200,7 @@ export namespace ProtocolMapping {
3200
3200
  returnType: void;
3201
3201
  };
3202
3202
  /**
3203
- * Deletes browser cookies with matching name and url or domain/path pair.
3203
+ * Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
3204
3204
  */
3205
3205
  'Network.deleteCookies': {
3206
3206
  paramsType: [Protocol.Network.DeleteCookiesRequest];
@@ -4786,6 +4786,14 @@ export namespace ProtocolMapping {
4786
4786
  paramsType: [Protocol.WebAuthn.SetAutomaticPresenceSimulationRequest];
4787
4787
  returnType: void;
4788
4788
  };
4789
+ /**
4790
+ * Allows setting credential properties.
4791
+ * https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
4792
+ */
4793
+ 'WebAuthn.setCredentialProperties': {
4794
+ paramsType: [Protocol.WebAuthn.SetCredentialPropertiesRequest];
4795
+ returnType: void;
4796
+ };
4789
4797
  /**
4790
4798
  * Enables the Media domain
4791
4799
  */
@@ -4852,6 +4860,10 @@ export namespace ProtocolMapping {
4852
4860
  paramsType: [Protocol.FedCm.ClickDialogButtonRequest];
4853
4861
  returnType: void;
4854
4862
  };
4863
+ 'FedCm.openUrl': {
4864
+ paramsType: [Protocol.FedCm.OpenUrlRequest];
4865
+ returnType: void;
4866
+ };
4855
4867
  'FedCm.dismissDialog': {
4856
4868
  paramsType: [Protocol.FedCm.DismissDialogRequest];
4857
4869
  returnType: void;
@@ -2281,7 +2281,7 @@ export namespace ProtocolProxyApi {
2281
2281
  continueInterceptedRequest(params: Protocol.Network.ContinueInterceptedRequestRequest): Promise<void>;
2282
2282
 
2283
2283
  /**
2284
- * Deletes browser cookies with matching name and url or domain/path pair.
2284
+ * Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
2285
2285
  */
2286
2286
  deleteCookies(params: Protocol.Network.DeleteCookiesRequest): Promise<void>;
2287
2287
 
@@ -4005,6 +4005,12 @@ export namespace ProtocolProxyApi {
4005
4005
  */
4006
4006
  setAutomaticPresenceSimulation(params: Protocol.WebAuthn.SetAutomaticPresenceSimulationRequest): Promise<void>;
4007
4007
 
4008
+ /**
4009
+ * Allows setting credential properties.
4010
+ * https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
4011
+ */
4012
+ setCredentialProperties(params: Protocol.WebAuthn.SetCredentialPropertiesRequest): Promise<void>;
4013
+
4008
4014
  /**
4009
4015
  * Triggered when a credential is added to an authenticator.
4010
4016
  */
@@ -4131,6 +4137,8 @@ export namespace ProtocolProxyApi {
4131
4137
 
4132
4138
  clickDialogButton(params: Protocol.FedCm.ClickDialogButtonRequest): Promise<void>;
4133
4139
 
4140
+ openUrl(params: Protocol.FedCm.OpenUrlRequest): Promise<void>;
4141
+
4134
4142
  dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
4135
4143
 
4136
4144
  /**
@@ -2417,7 +2417,7 @@ export namespace ProtocolTestsProxyApi {
2417
2417
  continueInterceptedRequest(params: Protocol.Network.ContinueInterceptedRequestRequest): Promise<void>;
2418
2418
 
2419
2419
  /**
2420
- * Deletes browser cookies with matching name and url or domain/path pair.
2420
+ * Deletes browser cookies with matching name and url or domain/path/partitionKey pair.
2421
2421
  */
2422
2422
  deleteCookies(params: Protocol.Network.DeleteCookiesRequest): Promise<void>;
2423
2423
 
@@ -4353,6 +4353,12 @@ export namespace ProtocolTestsProxyApi {
4353
4353
  */
4354
4354
  setAutomaticPresenceSimulation(params: Protocol.WebAuthn.SetAutomaticPresenceSimulationRequest): Promise<void>;
4355
4355
 
4356
+ /**
4357
+ * Allows setting credential properties.
4358
+ * https://w3c.github.io/webauthn/#sctn-automation-set-credential-properties
4359
+ */
4360
+ setCredentialProperties(params: Protocol.WebAuthn.SetCredentialPropertiesRequest): Promise<void>;
4361
+
4356
4362
  /**
4357
4363
  * Triggered when a credential is added to an authenticator.
4358
4364
  */
@@ -4507,6 +4513,8 @@ export namespace ProtocolTestsProxyApi {
4507
4513
 
4508
4514
  clickDialogButton(params: Protocol.FedCm.ClickDialogButtonRequest): Promise<void>;
4509
4515
 
4516
+ openUrl(params: Protocol.FedCm.OpenUrlRequest): Promise<void>;
4517
+
4510
4518
  dismissDialog(params: Protocol.FedCm.DismissDialogRequest): Promise<void>;
4511
4519
 
4512
4520
  /**