devtools-protocol 0.0.1603894 → 0.0.1608973

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.
@@ -6924,6 +6924,51 @@
6924
6924
  }
6925
6925
  ]
6926
6926
  },
6927
+ {
6928
+ "domain": "CrashReportContext",
6929
+ "description": "This domain exposes the current state of the CrashReportContext API.",
6930
+ "experimental": true,
6931
+ "dependencies": [
6932
+ "Page"
6933
+ ],
6934
+ "types": [
6935
+ {
6936
+ "id": "CrashReportContextEntry",
6937
+ "description": "Key-value pair in CrashReportContext.",
6938
+ "type": "object",
6939
+ "properties": [
6940
+ {
6941
+ "name": "key",
6942
+ "type": "string"
6943
+ },
6944
+ {
6945
+ "name": "value",
6946
+ "type": "string"
6947
+ },
6948
+ {
6949
+ "name": "frameId",
6950
+ "description": "The ID of the frame where the key-value pair was set.",
6951
+ "$ref": "Page.FrameId"
6952
+ }
6953
+ ]
6954
+ }
6955
+ ],
6956
+ "commands": [
6957
+ {
6958
+ "name": "getEntries",
6959
+ "description": "Returns all entries in the CrashReportContext across all frames in the page.",
6960
+ "returns": [
6961
+ {
6962
+ "name": "entries",
6963
+ "type": "array",
6964
+ "items": {
6965
+ "$ref": "CrashReportContextEntry"
6966
+ }
6967
+ }
6968
+ ]
6969
+ }
6970
+ ]
6971
+ },
6927
6972
  {
6928
6973
  "domain": "DOM",
6929
6974
  "description": "This domain exposes DOM read/write operations. Each DOM Node is represented with its mirror object\nthat has an `id`. This `id` can be used to get additional information on the Node, resolve it into\nthe JavaScript object wrapper, etc. It is important that client receives DOM events only for the\nnodes that are known to the client. Backend keeps track of the nodes that were sent to the client\nand never sends the same node twice. It is client's responsibility to collect information about\nthe nodes that were sent to the client. Note that `iframe` owner elements will return\ncorresponding document elements as their child nodes.",
@@ -25315,6 +25360,11 @@
25315
25360
  "name": "url",
25316
25361
  "type": "string"
25317
25362
  },
25363
+ {
25364
+ "name": "formSubmission",
25365
+ "optional": true,
25366
+ "type": "boolean"
25367
+ },
25318
25368
  {
25319
25369
  "name": "targetHint",
25320
25370
  "optional": true,
@@ -25430,7 +25480,8 @@
25430
25480
  "V8OptimizerDisabled",
25431
25481
  "PrerenderFailedDuringPrefetch",
25432
25482
  "BrowsingDataRemoved",
25433
- "PrerenderHostReused"
25483
+ "PrerenderHostReused",
25484
+ "FormSubmitWhenPrerendering"
25434
25485
  ]
25435
25486
  },
25436
25487
  {
@@ -27427,803 +27478,180 @@
27427
27478
  ]
27428
27479
  },
27429
27480
  {
27430
- "id": "AttributionReportingSourceType",
27431
- "experimental": true,
27432
- "type": "string",
27433
- "enum": [
27434
- "navigation",
27435
- "event"
27436
- ]
27437
- },
27438
- {
27439
- "id": "UnsignedInt64AsBase10",
27440
- "experimental": true,
27441
- "type": "string"
27442
- },
27443
- {
27444
- "id": "UnsignedInt128AsBase16",
27445
- "experimental": true,
27446
- "type": "string"
27447
- },
27448
- {
27449
- "id": "SignedInt64AsBase10",
27450
- "experimental": true,
27451
- "type": "string"
27452
- },
27453
- {
27454
- "id": "AttributionReportingFilterDataEntry",
27481
+ "id": "RelatedWebsiteSet",
27482
+ "description": "A single Related Website Set object.",
27455
27483
  "experimental": true,
27456
27484
  "type": "object",
27457
27485
  "properties": [
27458
27486
  {
27459
- "name": "key",
27460
- "type": "string"
27461
- },
27462
- {
27463
- "name": "values",
27487
+ "name": "primarySites",
27488
+ "description": "The primary site of this set, along with the ccTLDs if there is any.",
27464
27489
  "type": "array",
27465
27490
  "items": {
27466
27491
  "type": "string"
27467
27492
  }
27468
- }
27469
- ]
27470
- },
27471
- {
27472
- "id": "AttributionReportingFilterConfig",
27473
- "experimental": true,
27474
- "type": "object",
27475
- "properties": [
27476
- {
27477
- "name": "filterValues",
27478
- "type": "array",
27479
- "items": {
27480
- "$ref": "AttributionReportingFilterDataEntry"
27481
- }
27482
27493
  },
27483
27494
  {
27484
- "name": "lookbackWindow",
27485
- "description": "duration in seconds",
27486
- "optional": true,
27487
- "type": "integer"
27488
- }
27489
- ]
27490
- },
27491
- {
27492
- "id": "AttributionReportingFilterPair",
27493
- "experimental": true,
27494
- "type": "object",
27495
- "properties": [
27496
- {
27497
- "name": "filters",
27495
+ "name": "associatedSites",
27496
+ "description": "The associated sites of this set, along with the ccTLDs if there is any.",
27498
27497
  "type": "array",
27499
27498
  "items": {
27500
- "$ref": "AttributionReportingFilterConfig"
27499
+ "type": "string"
27501
27500
  }
27502
27501
  },
27503
27502
  {
27504
- "name": "notFilters",
27503
+ "name": "serviceSites",
27504
+ "description": "The service sites of this set, along with the ccTLDs if there is any.",
27505
27505
  "type": "array",
27506
27506
  "items": {
27507
- "$ref": "AttributionReportingFilterConfig"
27507
+ "type": "string"
27508
27508
  }
27509
27509
  }
27510
27510
  ]
27511
- },
27511
+ }
27512
+ ],
27513
+ "commands": [
27512
27514
  {
27513
- "id": "AttributionReportingAggregationKeysEntry",
27514
- "experimental": true,
27515
- "type": "object",
27516
- "properties": [
27515
+ "name": "getStorageKeyForFrame",
27516
+ "description": "Returns a storage key given a frame id.\nDeprecated. Please use Storage.getStorageKey instead.",
27517
+ "deprecated": true,
27518
+ "parameters": [
27517
27519
  {
27518
- "name": "key",
27519
- "type": "string"
27520
- },
27520
+ "name": "frameId",
27521
+ "$ref": "Page.FrameId"
27522
+ }
27523
+ ],
27524
+ "returns": [
27521
27525
  {
27522
- "name": "value",
27523
- "$ref": "UnsignedInt128AsBase16"
27526
+ "name": "storageKey",
27527
+ "$ref": "SerializedStorageKey"
27524
27528
  }
27525
27529
  ]
27526
27530
  },
27527
27531
  {
27528
- "id": "AttributionReportingEventReportWindows",
27532
+ "name": "getStorageKey",
27533
+ "description": "Returns storage key for the given frame. If no frame ID is provided,\nthe storage key of the target executing this command is returned.",
27529
27534
  "experimental": true,
27530
- "type": "object",
27531
- "properties": [
27535
+ "parameters": [
27532
27536
  {
27533
- "name": "start",
27534
- "description": "duration in seconds",
27535
- "type": "integer"
27536
- },
27537
+ "name": "frameId",
27538
+ "optional": true,
27539
+ "$ref": "Page.FrameId"
27540
+ }
27541
+ ],
27542
+ "returns": [
27537
27543
  {
27538
- "name": "ends",
27539
- "description": "duration in seconds",
27540
- "type": "array",
27541
- "items": {
27542
- "type": "integer"
27543
- }
27544
+ "name": "storageKey",
27545
+ "$ref": "SerializedStorageKey"
27544
27546
  }
27545
27547
  ]
27546
27548
  },
27547
27549
  {
27548
- "id": "AttributionReportingTriggerDataMatching",
27549
- "experimental": true,
27550
- "type": "string",
27551
- "enum": [
27552
- "exact",
27553
- "modulus"
27550
+ "name": "clearDataForOrigin",
27551
+ "description": "Clears storage for origin.",
27552
+ "parameters": [
27553
+ {
27554
+ "name": "origin",
27555
+ "description": "Security origin.",
27556
+ "type": "string"
27557
+ },
27558
+ {
27559
+ "name": "storageTypes",
27560
+ "description": "Comma separated list of StorageType to clear.",
27561
+ "type": "string"
27562
+ }
27554
27563
  ]
27555
27564
  },
27556
27565
  {
27557
- "id": "AttributionReportingAggregatableDebugReportingData",
27558
- "experimental": true,
27559
- "type": "object",
27560
- "properties": [
27561
- {
27562
- "name": "keyPiece",
27563
- "$ref": "UnsignedInt128AsBase16"
27564
- },
27566
+ "name": "clearDataForStorageKey",
27567
+ "description": "Clears storage for storage key.",
27568
+ "parameters": [
27565
27569
  {
27566
- "name": "value",
27567
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27568
- "type": "number"
27570
+ "name": "storageKey",
27571
+ "description": "Storage key.",
27572
+ "type": "string"
27569
27573
  },
27570
27574
  {
27571
- "name": "types",
27572
- "type": "array",
27573
- "items": {
27574
- "type": "string"
27575
- }
27575
+ "name": "storageTypes",
27576
+ "description": "Comma separated list of StorageType to clear.",
27577
+ "type": "string"
27576
27578
  }
27577
27579
  ]
27578
27580
  },
27579
27581
  {
27580
- "id": "AttributionReportingAggregatableDebugReportingConfig",
27581
- "experimental": true,
27582
- "type": "object",
27583
- "properties": [
27582
+ "name": "getCookies",
27583
+ "description": "Returns all browser cookies.",
27584
+ "parameters": [
27584
27585
  {
27585
- "name": "budget",
27586
- "description": "number instead of integer because not all uint32 can be represented by\nint, only present for source registrations",
27586
+ "name": "browserContextId",
27587
+ "description": "Browser context to use when called on the browser endpoint.",
27587
27588
  "optional": true,
27588
- "type": "number"
27589
- },
27590
- {
27591
- "name": "keyPiece",
27592
- "$ref": "UnsignedInt128AsBase16"
27593
- },
27589
+ "$ref": "Browser.BrowserContextID"
27590
+ }
27591
+ ],
27592
+ "returns": [
27594
27593
  {
27595
- "name": "debugData",
27594
+ "name": "cookies",
27595
+ "description": "Array of cookie objects.",
27596
27596
  "type": "array",
27597
27597
  "items": {
27598
- "$ref": "AttributionReportingAggregatableDebugReportingData"
27598
+ "$ref": "Network.Cookie"
27599
27599
  }
27600
- },
27601
- {
27602
- "name": "aggregationCoordinatorOrigin",
27603
- "optional": true,
27604
- "type": "string"
27605
27600
  }
27606
27601
  ]
27607
27602
  },
27608
27603
  {
27609
- "id": "AttributionScopesData",
27610
- "experimental": true,
27611
- "type": "object",
27612
- "properties": [
27604
+ "name": "setCookies",
27605
+ "description": "Sets given cookies.",
27606
+ "parameters": [
27613
27607
  {
27614
- "name": "values",
27608
+ "name": "cookies",
27609
+ "description": "Cookies to be set.",
27615
27610
  "type": "array",
27616
27611
  "items": {
27617
- "type": "string"
27612
+ "$ref": "Network.CookieParam"
27618
27613
  }
27619
27614
  },
27620
27615
  {
27621
- "name": "limit",
27622
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27623
- "type": "number"
27624
- },
27625
- {
27626
- "name": "maxEventStates",
27627
- "type": "number"
27616
+ "name": "browserContextId",
27617
+ "description": "Browser context to use when called on the browser endpoint.",
27618
+ "optional": true,
27619
+ "$ref": "Browser.BrowserContextID"
27628
27620
  }
27629
27621
  ]
27630
27622
  },
27631
27623
  {
27632
- "id": "AttributionReportingNamedBudgetDef",
27633
- "experimental": true,
27634
- "type": "object",
27635
- "properties": [
27636
- {
27637
- "name": "name",
27638
- "type": "string"
27639
- },
27624
+ "name": "clearCookies",
27625
+ "description": "Clears cookies.",
27626
+ "parameters": [
27640
27627
  {
27641
- "name": "budget",
27642
- "type": "integer"
27628
+ "name": "browserContextId",
27629
+ "description": "Browser context to use when called on the browser endpoint.",
27630
+ "optional": true,
27631
+ "$ref": "Browser.BrowserContextID"
27643
27632
  }
27644
27633
  ]
27645
27634
  },
27646
27635
  {
27647
- "id": "AttributionReportingSourceRegistration",
27648
- "experimental": true,
27649
- "type": "object",
27650
- "properties": [
27636
+ "name": "getUsageAndQuota",
27637
+ "description": "Returns usage and quota in bytes.",
27638
+ "parameters": [
27651
27639
  {
27652
- "name": "time",
27653
- "$ref": "Network.TimeSinceEpoch"
27640
+ "name": "origin",
27641
+ "description": "Security origin.",
27642
+ "type": "string"
27643
+ }
27644
+ ],
27645
+ "returns": [
27646
+ {
27647
+ "name": "usage",
27648
+ "description": "Storage usage (bytes).",
27649
+ "type": "number"
27654
27650
  },
27655
27651
  {
27656
- "name": "expiry",
27657
- "description": "duration in seconds",
27658
- "type": "integer"
27659
- },
27660
- {
27661
- "name": "triggerData",
27662
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27663
- "type": "array",
27664
- "items": {
27665
- "type": "number"
27666
- }
27667
- },
27668
- {
27669
- "name": "eventReportWindows",
27670
- "$ref": "AttributionReportingEventReportWindows"
27671
- },
27672
- {
27673
- "name": "aggregatableReportWindow",
27674
- "description": "duration in seconds",
27675
- "type": "integer"
27676
- },
27677
- {
27678
- "name": "type",
27679
- "$ref": "AttributionReportingSourceType"
27680
- },
27681
- {
27682
- "name": "sourceOrigin",
27683
- "type": "string"
27684
- },
27685
- {
27686
- "name": "reportingOrigin",
27687
- "type": "string"
27688
- },
27689
- {
27690
- "name": "destinationSites",
27691
- "type": "array",
27692
- "items": {
27693
- "type": "string"
27694
- }
27695
- },
27696
- {
27697
- "name": "eventId",
27698
- "$ref": "UnsignedInt64AsBase10"
27699
- },
27700
- {
27701
- "name": "priority",
27702
- "$ref": "SignedInt64AsBase10"
27703
- },
27704
- {
27705
- "name": "filterData",
27706
- "type": "array",
27707
- "items": {
27708
- "$ref": "AttributionReportingFilterDataEntry"
27709
- }
27710
- },
27711
- {
27712
- "name": "aggregationKeys",
27713
- "type": "array",
27714
- "items": {
27715
- "$ref": "AttributionReportingAggregationKeysEntry"
27716
- }
27717
- },
27718
- {
27719
- "name": "debugKey",
27720
- "optional": true,
27721
- "$ref": "UnsignedInt64AsBase10"
27722
- },
27723
- {
27724
- "name": "triggerDataMatching",
27725
- "$ref": "AttributionReportingTriggerDataMatching"
27726
- },
27727
- {
27728
- "name": "destinationLimitPriority",
27729
- "$ref": "SignedInt64AsBase10"
27730
- },
27731
- {
27732
- "name": "aggregatableDebugReportingConfig",
27733
- "$ref": "AttributionReportingAggregatableDebugReportingConfig"
27734
- },
27735
- {
27736
- "name": "scopesData",
27737
- "optional": true,
27738
- "$ref": "AttributionScopesData"
27739
- },
27740
- {
27741
- "name": "maxEventLevelReports",
27742
- "type": "integer"
27743
- },
27744
- {
27745
- "name": "namedBudgets",
27746
- "type": "array",
27747
- "items": {
27748
- "$ref": "AttributionReportingNamedBudgetDef"
27749
- }
27750
- },
27751
- {
27752
- "name": "debugReporting",
27753
- "type": "boolean"
27754
- },
27755
- {
27756
- "name": "eventLevelEpsilon",
27757
- "type": "number"
27758
- }
27759
- ]
27760
- },
27761
- {
27762
- "id": "AttributionReportingSourceRegistrationResult",
27763
- "experimental": true,
27764
- "type": "string",
27765
- "enum": [
27766
- "success",
27767
- "internalError",
27768
- "insufficientSourceCapacity",
27769
- "insufficientUniqueDestinationCapacity",
27770
- "excessiveReportingOrigins",
27771
- "prohibitedByBrowserPolicy",
27772
- "successNoised",
27773
- "destinationReportingLimitReached",
27774
- "destinationGlobalLimitReached",
27775
- "destinationBothLimitsReached",
27776
- "reportingOriginsPerSiteLimitReached",
27777
- "exceedsMaxChannelCapacity",
27778
- "exceedsMaxScopesChannelCapacity",
27779
- "exceedsMaxTriggerStateCardinality",
27780
- "exceedsMaxEventStatesLimit",
27781
- "destinationPerDayReportingLimitReached"
27782
- ]
27783
- },
27784
- {
27785
- "id": "AttributionReportingSourceRegistrationTimeConfig",
27786
- "experimental": true,
27787
- "type": "string",
27788
- "enum": [
27789
- "include",
27790
- "exclude"
27791
- ]
27792
- },
27793
- {
27794
- "id": "AttributionReportingAggregatableValueDictEntry",
27795
- "experimental": true,
27796
- "type": "object",
27797
- "properties": [
27798
- {
27799
- "name": "key",
27800
- "type": "string"
27801
- },
27802
- {
27803
- "name": "value",
27804
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27805
- "type": "number"
27806
- },
27807
- {
27808
- "name": "filteringId",
27809
- "$ref": "UnsignedInt64AsBase10"
27810
- }
27811
- ]
27812
- },
27813
- {
27814
- "id": "AttributionReportingAggregatableValueEntry",
27815
- "experimental": true,
27816
- "type": "object",
27817
- "properties": [
27818
- {
27819
- "name": "values",
27820
- "type": "array",
27821
- "items": {
27822
- "$ref": "AttributionReportingAggregatableValueDictEntry"
27823
- }
27824
- },
27825
- {
27826
- "name": "filters",
27827
- "$ref": "AttributionReportingFilterPair"
27828
- }
27829
- ]
27830
- },
27831
- {
27832
- "id": "AttributionReportingEventTriggerData",
27833
- "experimental": true,
27834
- "type": "object",
27835
- "properties": [
27836
- {
27837
- "name": "data",
27838
- "$ref": "UnsignedInt64AsBase10"
27839
- },
27840
- {
27841
- "name": "priority",
27842
- "$ref": "SignedInt64AsBase10"
27843
- },
27844
- {
27845
- "name": "dedupKey",
27846
- "optional": true,
27847
- "$ref": "UnsignedInt64AsBase10"
27848
- },
27849
- {
27850
- "name": "filters",
27851
- "$ref": "AttributionReportingFilterPair"
27852
- }
27853
- ]
27854
- },
27855
- {
27856
- "id": "AttributionReportingAggregatableTriggerData",
27857
- "experimental": true,
27858
- "type": "object",
27859
- "properties": [
27860
- {
27861
- "name": "keyPiece",
27862
- "$ref": "UnsignedInt128AsBase16"
27863
- },
27864
- {
27865
- "name": "sourceKeys",
27866
- "type": "array",
27867
- "items": {
27868
- "type": "string"
27869
- }
27870
- },
27871
- {
27872
- "name": "filters",
27873
- "$ref": "AttributionReportingFilterPair"
27874
- }
27875
- ]
27876
- },
27877
- {
27878
- "id": "AttributionReportingAggregatableDedupKey",
27879
- "experimental": true,
27880
- "type": "object",
27881
- "properties": [
27882
- {
27883
- "name": "dedupKey",
27884
- "optional": true,
27885
- "$ref": "UnsignedInt64AsBase10"
27886
- },
27887
- {
27888
- "name": "filters",
27889
- "$ref": "AttributionReportingFilterPair"
27890
- }
27891
- ]
27892
- },
27893
- {
27894
- "id": "AttributionReportingNamedBudgetCandidate",
27895
- "experimental": true,
27896
- "type": "object",
27897
- "properties": [
27898
- {
27899
- "name": "name",
27900
- "optional": true,
27901
- "type": "string"
27902
- },
27903
- {
27904
- "name": "filters",
27905
- "$ref": "AttributionReportingFilterPair"
27906
- }
27907
- ]
27908
- },
27909
- {
27910
- "id": "AttributionReportingTriggerRegistration",
27911
- "experimental": true,
27912
- "type": "object",
27913
- "properties": [
27914
- {
27915
- "name": "filters",
27916
- "$ref": "AttributionReportingFilterPair"
27917
- },
27918
- {
27919
- "name": "debugKey",
27920
- "optional": true,
27921
- "$ref": "UnsignedInt64AsBase10"
27922
- },
27923
- {
27924
- "name": "aggregatableDedupKeys",
27925
- "type": "array",
27926
- "items": {
27927
- "$ref": "AttributionReportingAggregatableDedupKey"
27928
- }
27929
- },
27930
- {
27931
- "name": "eventTriggerData",
27932
- "type": "array",
27933
- "items": {
27934
- "$ref": "AttributionReportingEventTriggerData"
27935
- }
27936
- },
27937
- {
27938
- "name": "aggregatableTriggerData",
27939
- "type": "array",
27940
- "items": {
27941
- "$ref": "AttributionReportingAggregatableTriggerData"
27942
- }
27943
- },
27944
- {
27945
- "name": "aggregatableValues",
27946
- "type": "array",
27947
- "items": {
27948
- "$ref": "AttributionReportingAggregatableValueEntry"
27949
- }
27950
- },
27951
- {
27952
- "name": "aggregatableFilteringIdMaxBytes",
27953
- "type": "integer"
27954
- },
27955
- {
27956
- "name": "debugReporting",
27957
- "type": "boolean"
27958
- },
27959
- {
27960
- "name": "aggregationCoordinatorOrigin",
27961
- "optional": true,
27962
- "type": "string"
27963
- },
27964
- {
27965
- "name": "sourceRegistrationTimeConfig",
27966
- "$ref": "AttributionReportingSourceRegistrationTimeConfig"
27967
- },
27968
- {
27969
- "name": "triggerContextId",
27970
- "optional": true,
27971
- "type": "string"
27972
- },
27973
- {
27974
- "name": "aggregatableDebugReportingConfig",
27975
- "$ref": "AttributionReportingAggregatableDebugReportingConfig"
27976
- },
27977
- {
27978
- "name": "scopes",
27979
- "type": "array",
27980
- "items": {
27981
- "type": "string"
27982
- }
27983
- },
27984
- {
27985
- "name": "namedBudgets",
27986
- "type": "array",
27987
- "items": {
27988
- "$ref": "AttributionReportingNamedBudgetCandidate"
27989
- }
27990
- }
27991
- ]
27992
- },
27993
- {
27994
- "id": "AttributionReportingEventLevelResult",
27995
- "experimental": true,
27996
- "type": "string",
27997
- "enum": [
27998
- "success",
27999
- "successDroppedLowerPriority",
28000
- "internalError",
28001
- "noCapacityForAttributionDestination",
28002
- "noMatchingSources",
28003
- "deduplicated",
28004
- "excessiveAttributions",
28005
- "priorityTooLow",
28006
- "neverAttributedSource",
28007
- "excessiveReportingOrigins",
28008
- "noMatchingSourceFilterData",
28009
- "prohibitedByBrowserPolicy",
28010
- "noMatchingConfigurations",
28011
- "excessiveReports",
28012
- "falselyAttributedSource",
28013
- "reportWindowPassed",
28014
- "notRegistered",
28015
- "reportWindowNotStarted",
28016
- "noMatchingTriggerData"
28017
- ]
28018
- },
28019
- {
28020
- "id": "AttributionReportingAggregatableResult",
28021
- "experimental": true,
28022
- "type": "string",
28023
- "enum": [
28024
- "success",
28025
- "internalError",
28026
- "noCapacityForAttributionDestination",
28027
- "noMatchingSources",
28028
- "excessiveAttributions",
28029
- "excessiveReportingOrigins",
28030
- "noHistograms",
28031
- "insufficientBudget",
28032
- "insufficientNamedBudget",
28033
- "noMatchingSourceFilterData",
28034
- "notRegistered",
28035
- "prohibitedByBrowserPolicy",
28036
- "deduplicated",
28037
- "reportWindowPassed",
28038
- "excessiveReports"
28039
- ]
28040
- },
28041
- {
28042
- "id": "AttributionReportingReportResult",
28043
- "experimental": true,
28044
- "type": "string",
28045
- "enum": [
28046
- "sent",
28047
- "prohibited",
28048
- "failedToAssemble",
28049
- "expired"
28050
- ]
28051
- },
28052
- {
28053
- "id": "RelatedWebsiteSet",
28054
- "description": "A single Related Website Set object.",
28055
- "experimental": true,
28056
- "type": "object",
28057
- "properties": [
28058
- {
28059
- "name": "primarySites",
28060
- "description": "The primary site of this set, along with the ccTLDs if there is any.",
28061
- "type": "array",
28062
- "items": {
28063
- "type": "string"
28064
- }
28065
- },
28066
- {
28067
- "name": "associatedSites",
28068
- "description": "The associated sites of this set, along with the ccTLDs if there is any.",
28069
- "type": "array",
28070
- "items": {
28071
- "type": "string"
28072
- }
28073
- },
28074
- {
28075
- "name": "serviceSites",
28076
- "description": "The service sites of this set, along with the ccTLDs if there is any.",
28077
- "type": "array",
28078
- "items": {
28079
- "type": "string"
28080
- }
28081
- }
28082
- ]
28083
- }
28084
- ],
28085
- "commands": [
28086
- {
28087
- "name": "getStorageKeyForFrame",
28088
- "description": "Returns a storage key given a frame id.\nDeprecated. Please use Storage.getStorageKey instead.",
28089
- "deprecated": true,
28090
- "parameters": [
28091
- {
28092
- "name": "frameId",
28093
- "$ref": "Page.FrameId"
28094
- }
28095
- ],
28096
- "returns": [
28097
- {
28098
- "name": "storageKey",
28099
- "$ref": "SerializedStorageKey"
28100
- }
28101
- ]
28102
- },
28103
- {
28104
- "name": "getStorageKey",
28105
- "description": "Returns storage key for the given frame. If no frame ID is provided,\nthe storage key of the target executing this command is returned.",
28106
- "experimental": true,
28107
- "parameters": [
28108
- {
28109
- "name": "frameId",
28110
- "optional": true,
28111
- "$ref": "Page.FrameId"
28112
- }
28113
- ],
28114
- "returns": [
28115
- {
28116
- "name": "storageKey",
28117
- "$ref": "SerializedStorageKey"
28118
- }
28119
- ]
28120
- },
28121
- {
28122
- "name": "clearDataForOrigin",
28123
- "description": "Clears storage for origin.",
28124
- "parameters": [
28125
- {
28126
- "name": "origin",
28127
- "description": "Security origin.",
28128
- "type": "string"
28129
- },
28130
- {
28131
- "name": "storageTypes",
28132
- "description": "Comma separated list of StorageType to clear.",
28133
- "type": "string"
28134
- }
28135
- ]
28136
- },
28137
- {
28138
- "name": "clearDataForStorageKey",
28139
- "description": "Clears storage for storage key.",
28140
- "parameters": [
28141
- {
28142
- "name": "storageKey",
28143
- "description": "Storage key.",
28144
- "type": "string"
28145
- },
28146
- {
28147
- "name": "storageTypes",
28148
- "description": "Comma separated list of StorageType to clear.",
28149
- "type": "string"
28150
- }
28151
- ]
28152
- },
28153
- {
28154
- "name": "getCookies",
28155
- "description": "Returns all browser cookies.",
28156
- "parameters": [
28157
- {
28158
- "name": "browserContextId",
28159
- "description": "Browser context to use when called on the browser endpoint.",
28160
- "optional": true,
28161
- "$ref": "Browser.BrowserContextID"
28162
- }
28163
- ],
28164
- "returns": [
28165
- {
28166
- "name": "cookies",
28167
- "description": "Array of cookie objects.",
28168
- "type": "array",
28169
- "items": {
28170
- "$ref": "Network.Cookie"
28171
- }
28172
- }
28173
- ]
28174
- },
28175
- {
28176
- "name": "setCookies",
28177
- "description": "Sets given cookies.",
28178
- "parameters": [
28179
- {
28180
- "name": "cookies",
28181
- "description": "Cookies to be set.",
28182
- "type": "array",
28183
- "items": {
28184
- "$ref": "Network.CookieParam"
28185
- }
28186
- },
28187
- {
28188
- "name": "browserContextId",
28189
- "description": "Browser context to use when called on the browser endpoint.",
28190
- "optional": true,
28191
- "$ref": "Browser.BrowserContextID"
28192
- }
28193
- ]
28194
- },
28195
- {
28196
- "name": "clearCookies",
28197
- "description": "Clears cookies.",
28198
- "parameters": [
28199
- {
28200
- "name": "browserContextId",
28201
- "description": "Browser context to use when called on the browser endpoint.",
28202
- "optional": true,
28203
- "$ref": "Browser.BrowserContextID"
28204
- }
28205
- ]
28206
- },
28207
- {
28208
- "name": "getUsageAndQuota",
28209
- "description": "Returns usage and quota in bytes.",
28210
- "parameters": [
28211
- {
28212
- "name": "origin",
28213
- "description": "Security origin.",
28214
- "type": "string"
28215
- }
28216
- ],
28217
- "returns": [
28218
- {
28219
- "name": "usage",
28220
- "description": "Storage usage (bytes).",
28221
- "type": "number"
28222
- },
28223
- {
28224
- "name": "quota",
28225
- "description": "Storage quota (bytes).",
28226
- "type": "number"
27652
+ "name": "quota",
27653
+ "description": "Storage quota (bytes).",
27654
+ "type": "number"
28227
27655
  },
28228
27656
  {
28229
27657
  "name": "overrideActive",
@@ -28572,41 +28000,6 @@
28572
28000
  }
28573
28001
  ]
28574
28002
  },
28575
- {
28576
- "name": "setAttributionReportingLocalTestingMode",
28577
- "description": "https://wicg.github.io/attribution-reporting-api/",
28578
- "experimental": true,
28579
- "parameters": [
28580
- {
28581
- "name": "enabled",
28582
- "description": "If enabled, noise is suppressed and reports are sent immediately.",
28583
- "type": "boolean"
28584
- }
28585
- ]
28586
- },
28587
- {
28588
- "name": "setAttributionReportingTracking",
28589
- "description": "Enables/disables issuing of Attribution Reporting events.",
28590
- "experimental": true,
28591
- "parameters": [
28592
- {
28593
- "name": "enable",
28594
- "type": "boolean"
28595
- }
28596
- ]
28597
- },
28598
- {
28599
- "name": "sendPendingAttributionReports",
28600
- "description": "Sends all pending Attribution Reports immediately, regardless of their\nscheduled report time.",
28601
- "experimental": true,
28602
- "returns": [
28603
- {
28604
- "name": "numSent",
28605
- "description": "The number of reports that were sent.",
28606
- "type": "integer"
28607
- }
28608
- ]
28609
- },
28610
28003
  {
28611
28004
  "name": "getRelatedWebsiteSets",
28612
28005
  "description": "Returns the effective Related Website Sets in use by this profile for the browser\nsession. The effective Related Website Sets will not change during a browser session.",
@@ -28968,105 +28361,6 @@
28968
28361
  "type": "string"
28969
28362
  }
28970
28363
  ]
28971
- },
28972
- {
28973
- "name": "attributionReportingSourceRegistered",
28974
- "experimental": true,
28975
- "parameters": [
28976
- {
28977
- "name": "registration",
28978
- "$ref": "AttributionReportingSourceRegistration"
28979
- },
28980
- {
28981
- "name": "result",
28982
- "$ref": "AttributionReportingSourceRegistrationResult"
28983
- }
28984
- ]
28985
- },
28986
- {
28987
- "name": "attributionReportingTriggerRegistered",
28988
- "experimental": true,
28989
- "parameters": [
28990
- {
28991
- "name": "registration",
28992
- "$ref": "AttributionReportingTriggerRegistration"
28993
- },
28994
- {
28995
- "name": "eventLevel",
28996
- "$ref": "AttributionReportingEventLevelResult"
28997
- },
28998
- {
28999
- "name": "aggregatable",
29000
- "$ref": "AttributionReportingAggregatableResult"
29001
- }
29002
- ]
29003
- },
29004
- {
29005
- "name": "attributionReportingReportSent",
29006
- "experimental": true,
29007
- "parameters": [
29008
- {
29009
- "name": "url",
29010
- "type": "string"
29011
- },
29012
- {
29013
- "name": "body",
29014
- "type": "object"
29015
- },
29016
- {
29017
- "name": "result",
29018
- "$ref": "AttributionReportingReportResult"
29019
- },
29020
- {
29021
- "name": "netError",
29022
- "description": "If result is `sent`, populated with net/HTTP status.",
29023
- "optional": true,
29024
- "type": "integer"
29025
- },
29026
- {
29027
- "name": "netErrorName",
29028
- "optional": true,
29029
- "type": "string"
29030
- },
29031
- {
29032
- "name": "httpStatusCode",
29033
- "optional": true,
29034
- "type": "integer"
29035
- }
29036
- ]
29037
- },
29038
- {
29039
- "name": "attributionReportingVerboseDebugReportSent",
29040
- "experimental": true,
29041
- "parameters": [
29042
- {
29043
- "name": "url",
29044
- "type": "string"
29045
- },
29046
- {
29047
- "name": "body",
29048
- "optional": true,
29049
- "type": "array",
29050
- "items": {
29051
- "type": "object"
29052
- }
29053
- },
29054
- {
29055
- "name": "netError",
29056
- "optional": true,
29057
- "type": "integer"
29058
- },
29059
- {
29060
- "name": "netErrorName",
29061
- "optional": true,
29062
- "type": "string"
29063
- },
29064
- {
29065
- "name": "httpStatusCode",
29066
- "optional": true,
29067
- "type": "integer"
29068
- }
29069
- ]
29070
28364
  }
29071
28365
  ]
29072
28366
  },
@@ -31479,6 +30773,10 @@
31479
30773
  {
31480
30774
  "name": "enable",
31481
30775
  "description": "Enables the WebMCP domain, allowing events to be sent. Enabling the domain will trigger a toolsAdded event for\nall currently registered tools."
30776
+ },
30777
+ {
30778
+ "name": "disable",
30779
+ "description": "Disables the WebMCP domain."
31482
30780
  }
31483
30781
  ],
31484
30782
  "events": [
@@ -31554,7 +30852,7 @@
31554
30852
  "name": "output",
31555
30853
  "description": "Output or error delivered as delivered to the agent. Missing if `status` is anything other than Success.",
31556
30854
  "optional": true,
31557
- "type": "object"
30855
+ "type": "any"
31558
30856
  },
31559
30857
  {
31560
30858
  "name": "errorText",