devtools-protocol 0.0.1604597 → 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.
@@ -25360,6 +25360,11 @@
25360
25360
  "name": "url",
25361
25361
  "type": "string"
25362
25362
  },
25363
+ {
25364
+ "name": "formSubmission",
25365
+ "optional": true,
25366
+ "type": "boolean"
25367
+ },
25363
25368
  {
25364
25369
  "name": "targetHint",
25365
25370
  "optional": true,
@@ -25475,7 +25480,8 @@
25475
25480
  "V8OptimizerDisabled",
25476
25481
  "PrerenderFailedDuringPrefetch",
25477
25482
  "BrowsingDataRemoved",
25478
- "PrerenderHostReused"
25483
+ "PrerenderHostReused",
25484
+ "FormSubmitWhenPrerendering"
25479
25485
  ]
25480
25486
  },
25481
25487
  {
@@ -27320,778 +27326,155 @@
27320
27326
  "description": "String denoting \"context-origin\", \"script-origin\", or a custom\norigin to be used as the worklet's data origin.\nPresent only for SharedStorageAccessMethod: createWorklet.",
27321
27327
  "optional": true,
27322
27328
  "type": "string"
27323
- },
27324
- {
27325
- "name": "operationName",
27326
- "description": "Name of the registered operation to be run.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27327
- "optional": true,
27328
- "type": "string"
27329
- },
27330
- {
27331
- "name": "operationId",
27332
- "description": "ID of the operation call.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27333
- "optional": true,
27334
- "type": "string"
27335
- },
27336
- {
27337
- "name": "keepAlive",
27338
- "description": "Whether or not to keep the worket alive for future run or selectURL\ncalls.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27339
- "optional": true,
27340
- "type": "boolean"
27341
- },
27342
- {
27343
- "name": "privateAggregationConfig",
27344
- "description": "Configures the private aggregation options.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27345
- "optional": true,
27346
- "$ref": "SharedStoragePrivateAggregationConfig"
27347
- },
27348
- {
27349
- "name": "serializedData",
27350
- "description": "The operation's serialized data in bytes (converted to a string).\nPresent only for SharedStorageAccessMethods: run and selectURL.\nTODO(crbug.com/401011862): Consider updating this parameter to binary.",
27351
- "optional": true,
27352
- "type": "string"
27353
- },
27354
- {
27355
- "name": "urlsWithMetadata",
27356
- "description": "Array of candidate URLs' specs, along with any associated metadata.\nPresent only for SharedStorageAccessMethod: selectURL.",
27357
- "optional": true,
27358
- "type": "array",
27359
- "items": {
27360
- "$ref": "SharedStorageUrlWithMetadata"
27361
- }
27362
- },
27363
- {
27364
- "name": "urnUuid",
27365
- "description": "Spec of the URN:UUID generated for a selectURL call.\nPresent only for SharedStorageAccessMethod: selectURL.",
27366
- "optional": true,
27367
- "type": "string"
27368
- },
27369
- {
27370
- "name": "key",
27371
- "description": "Key for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessMethods: set, append, delete, and\nget.",
27372
- "optional": true,
27373
- "type": "string"
27374
- },
27375
- {
27376
- "name": "value",
27377
- "description": "Value for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessMethods: set and append.",
27378
- "optional": true,
27379
- "type": "string"
27380
- },
27381
- {
27382
- "name": "ignoreIfPresent",
27383
- "description": "Whether or not to set an entry for a key if that key is already present.\nPresent only for SharedStorageAccessMethod: set.",
27384
- "optional": true,
27385
- "type": "boolean"
27386
- },
27387
- {
27388
- "name": "workletOrdinal",
27389
- "description": "A number denoting the (0-based) order of the worklet's\ncreation relative to all other shared storage worklets created by\ndocuments using the current storage partition.\nPresent only for SharedStorageAccessMethods: addModule, createWorklet.",
27390
- "optional": true,
27391
- "type": "integer"
27392
- },
27393
- {
27394
- "name": "workletTargetId",
27395
- "description": "Hex representation of the DevTools token used as the TargetID for the\nassociated shared storage worklet.\nPresent only for SharedStorageAccessMethods: addModule, createWorklet,\nrun, selectURL, and any other SharedStorageAccessMethod when the\nSharedStorageAccessScope is sharedStorageWorklet.",
27396
- "optional": true,
27397
- "$ref": "Target.TargetID"
27398
- },
27399
- {
27400
- "name": "withLock",
27401
- "description": "Name of the lock to be acquired, if present.\nOptionally present only for SharedStorageAccessMethods: batchUpdate,\nset, append, delete, and clear.",
27402
- "optional": true,
27403
- "type": "string"
27404
- },
27405
- {
27406
- "name": "batchUpdateId",
27407
- "description": "If the method has been called as part of a batchUpdate, then this\nnumber identifies the batch to which it belongs.\nOptionally present only for SharedStorageAccessMethods:\nbatchUpdate (required), set, append, delete, and clear.",
27408
- "optional": true,
27409
- "type": "string"
27410
- },
27411
- {
27412
- "name": "batchSize",
27413
- "description": "Number of modifier methods sent in batch.\nPresent only for SharedStorageAccessMethod: batchUpdate.",
27414
- "optional": true,
27415
- "type": "integer"
27416
- }
27417
- ]
27418
- },
27419
- {
27420
- "id": "StorageBucketsDurability",
27421
- "type": "string",
27422
- "enum": [
27423
- "relaxed",
27424
- "strict"
27425
- ]
27426
- },
27427
- {
27428
- "id": "StorageBucket",
27429
- "type": "object",
27430
- "properties": [
27431
- {
27432
- "name": "storageKey",
27433
- "$ref": "SerializedStorageKey"
27434
- },
27435
- {
27436
- "name": "name",
27437
- "description": "If not specified, it is the default bucket of the storageKey.",
27438
- "optional": true,
27439
- "type": "string"
27440
- }
27441
- ]
27442
- },
27443
- {
27444
- "id": "StorageBucketInfo",
27445
- "type": "object",
27446
- "properties": [
27447
- {
27448
- "name": "bucket",
27449
- "$ref": "StorageBucket"
27450
- },
27451
- {
27452
- "name": "id",
27453
- "type": "string"
27454
- },
27455
- {
27456
- "name": "expiration",
27457
- "$ref": "Network.TimeSinceEpoch"
27458
- },
27459
- {
27460
- "name": "quota",
27461
- "description": "Storage quota (bytes).",
27462
- "type": "number"
27463
- },
27464
- {
27465
- "name": "persistent",
27466
- "type": "boolean"
27467
- },
27468
- {
27469
- "name": "durability",
27470
- "$ref": "StorageBucketsDurability"
27471
- }
27472
- ]
27473
- },
27474
- {
27475
- "id": "AttributionReportingSourceType",
27476
- "experimental": true,
27477
- "type": "string",
27478
- "enum": [
27479
- "navigation",
27480
- "event"
27481
- ]
27482
- },
27483
- {
27484
- "id": "UnsignedInt64AsBase10",
27485
- "experimental": true,
27486
- "type": "string"
27487
- },
27488
- {
27489
- "id": "UnsignedInt128AsBase16",
27490
- "experimental": true,
27491
- "type": "string"
27492
- },
27493
- {
27494
- "id": "SignedInt64AsBase10",
27495
- "experimental": true,
27496
- "type": "string"
27497
- },
27498
- {
27499
- "id": "AttributionReportingFilterDataEntry",
27500
- "experimental": true,
27501
- "type": "object",
27502
- "properties": [
27503
- {
27504
- "name": "key",
27505
- "type": "string"
27506
- },
27507
- {
27508
- "name": "values",
27509
- "type": "array",
27510
- "items": {
27511
- "type": "string"
27512
- }
27513
- }
27514
- ]
27515
- },
27516
- {
27517
- "id": "AttributionReportingFilterConfig",
27518
- "experimental": true,
27519
- "type": "object",
27520
- "properties": [
27521
- {
27522
- "name": "filterValues",
27523
- "type": "array",
27524
- "items": {
27525
- "$ref": "AttributionReportingFilterDataEntry"
27526
- }
27527
- },
27528
- {
27529
- "name": "lookbackWindow",
27530
- "description": "duration in seconds",
27531
- "optional": true,
27532
- "type": "integer"
27533
- }
27534
- ]
27535
- },
27536
- {
27537
- "id": "AttributionReportingFilterPair",
27538
- "experimental": true,
27539
- "type": "object",
27540
- "properties": [
27541
- {
27542
- "name": "filters",
27543
- "type": "array",
27544
- "items": {
27545
- "$ref": "AttributionReportingFilterConfig"
27546
- }
27547
- },
27548
- {
27549
- "name": "notFilters",
27550
- "type": "array",
27551
- "items": {
27552
- "$ref": "AttributionReportingFilterConfig"
27553
- }
27554
- }
27555
- ]
27556
- },
27557
- {
27558
- "id": "AttributionReportingAggregationKeysEntry",
27559
- "experimental": true,
27560
- "type": "object",
27561
- "properties": [
27562
- {
27563
- "name": "key",
27564
- "type": "string"
27565
- },
27566
- {
27567
- "name": "value",
27568
- "$ref": "UnsignedInt128AsBase16"
27569
- }
27570
- ]
27571
- },
27572
- {
27573
- "id": "AttributionReportingEventReportWindows",
27574
- "experimental": true,
27575
- "type": "object",
27576
- "properties": [
27577
- {
27578
- "name": "start",
27579
- "description": "duration in seconds",
27580
- "type": "integer"
27581
- },
27582
- {
27583
- "name": "ends",
27584
- "description": "duration in seconds",
27585
- "type": "array",
27586
- "items": {
27587
- "type": "integer"
27588
- }
27589
- }
27590
- ]
27591
- },
27592
- {
27593
- "id": "AttributionReportingTriggerDataMatching",
27594
- "experimental": true,
27595
- "type": "string",
27596
- "enum": [
27597
- "exact",
27598
- "modulus"
27599
- ]
27600
- },
27601
- {
27602
- "id": "AttributionReportingAggregatableDebugReportingData",
27603
- "experimental": true,
27604
- "type": "object",
27605
- "properties": [
27606
- {
27607
- "name": "keyPiece",
27608
- "$ref": "UnsignedInt128AsBase16"
27609
- },
27610
- {
27611
- "name": "value",
27612
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27613
- "type": "number"
27614
- },
27615
- {
27616
- "name": "types",
27617
- "type": "array",
27618
- "items": {
27619
- "type": "string"
27620
- }
27621
- }
27622
- ]
27623
- },
27624
- {
27625
- "id": "AttributionReportingAggregatableDebugReportingConfig",
27626
- "experimental": true,
27627
- "type": "object",
27628
- "properties": [
27629
- {
27630
- "name": "budget",
27631
- "description": "number instead of integer because not all uint32 can be represented by\nint, only present for source registrations",
27632
- "optional": true,
27633
- "type": "number"
27634
- },
27635
- {
27636
- "name": "keyPiece",
27637
- "$ref": "UnsignedInt128AsBase16"
27638
- },
27639
- {
27640
- "name": "debugData",
27641
- "type": "array",
27642
- "items": {
27643
- "$ref": "AttributionReportingAggregatableDebugReportingData"
27644
- }
27645
- },
27646
- {
27647
- "name": "aggregationCoordinatorOrigin",
27648
- "optional": true,
27649
- "type": "string"
27650
- }
27651
- ]
27652
- },
27653
- {
27654
- "id": "AttributionScopesData",
27655
- "experimental": true,
27656
- "type": "object",
27657
- "properties": [
27658
- {
27659
- "name": "values",
27660
- "type": "array",
27661
- "items": {
27662
- "type": "string"
27663
- }
27664
- },
27665
- {
27666
- "name": "limit",
27667
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27668
- "type": "number"
27669
- },
27670
- {
27671
- "name": "maxEventStates",
27672
- "type": "number"
27673
- }
27674
- ]
27675
- },
27676
- {
27677
- "id": "AttributionReportingNamedBudgetDef",
27678
- "experimental": true,
27679
- "type": "object",
27680
- "properties": [
27681
- {
27682
- "name": "name",
27683
- "type": "string"
27684
- },
27685
- {
27686
- "name": "budget",
27687
- "type": "integer"
27688
- }
27689
- ]
27690
- },
27691
- {
27692
- "id": "AttributionReportingSourceRegistration",
27693
- "experimental": true,
27694
- "type": "object",
27695
- "properties": [
27696
- {
27697
- "name": "time",
27698
- "$ref": "Network.TimeSinceEpoch"
27699
- },
27700
- {
27701
- "name": "expiry",
27702
- "description": "duration in seconds",
27703
- "type": "integer"
27704
- },
27705
- {
27706
- "name": "triggerData",
27707
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27708
- "type": "array",
27709
- "items": {
27710
- "type": "number"
27711
- }
27712
- },
27713
- {
27714
- "name": "eventReportWindows",
27715
- "$ref": "AttributionReportingEventReportWindows"
27716
- },
27717
- {
27718
- "name": "aggregatableReportWindow",
27719
- "description": "duration in seconds",
27720
- "type": "integer"
27721
- },
27722
- {
27723
- "name": "type",
27724
- "$ref": "AttributionReportingSourceType"
27725
- },
27726
- {
27727
- "name": "sourceOrigin",
27728
- "type": "string"
27729
- },
27730
- {
27731
- "name": "reportingOrigin",
27732
- "type": "string"
27733
- },
27734
- {
27735
- "name": "destinationSites",
27736
- "type": "array",
27737
- "items": {
27738
- "type": "string"
27739
- }
27740
- },
27741
- {
27742
- "name": "eventId",
27743
- "$ref": "UnsignedInt64AsBase10"
27744
- },
27745
- {
27746
- "name": "priority",
27747
- "$ref": "SignedInt64AsBase10"
27748
- },
27749
- {
27750
- "name": "filterData",
27751
- "type": "array",
27752
- "items": {
27753
- "$ref": "AttributionReportingFilterDataEntry"
27754
- }
27755
- },
27756
- {
27757
- "name": "aggregationKeys",
27758
- "type": "array",
27759
- "items": {
27760
- "$ref": "AttributionReportingAggregationKeysEntry"
27761
- }
27762
- },
27763
- {
27764
- "name": "debugKey",
27765
- "optional": true,
27766
- "$ref": "UnsignedInt64AsBase10"
27767
- },
27768
- {
27769
- "name": "triggerDataMatching",
27770
- "$ref": "AttributionReportingTriggerDataMatching"
27771
- },
27772
- {
27773
- "name": "destinationLimitPriority",
27774
- "$ref": "SignedInt64AsBase10"
27775
- },
27776
- {
27777
- "name": "aggregatableDebugReportingConfig",
27778
- "$ref": "AttributionReportingAggregatableDebugReportingConfig"
27779
- },
27780
- {
27781
- "name": "scopesData",
27782
- "optional": true,
27783
- "$ref": "AttributionScopesData"
27784
- },
27785
- {
27786
- "name": "maxEventLevelReports",
27787
- "type": "integer"
27788
- },
27789
- {
27790
- "name": "namedBudgets",
27791
- "type": "array",
27792
- "items": {
27793
- "$ref": "AttributionReportingNamedBudgetDef"
27794
- }
27795
- },
27796
- {
27797
- "name": "debugReporting",
27798
- "type": "boolean"
27799
- },
27800
- {
27801
- "name": "eventLevelEpsilon",
27802
- "type": "number"
27803
- }
27804
- ]
27805
- },
27806
- {
27807
- "id": "AttributionReportingSourceRegistrationResult",
27808
- "experimental": true,
27809
- "type": "string",
27810
- "enum": [
27811
- "success",
27812
- "internalError",
27813
- "insufficientSourceCapacity",
27814
- "insufficientUniqueDestinationCapacity",
27815
- "excessiveReportingOrigins",
27816
- "prohibitedByBrowserPolicy",
27817
- "successNoised",
27818
- "destinationReportingLimitReached",
27819
- "destinationGlobalLimitReached",
27820
- "destinationBothLimitsReached",
27821
- "reportingOriginsPerSiteLimitReached",
27822
- "exceedsMaxChannelCapacity",
27823
- "exceedsMaxScopesChannelCapacity",
27824
- "exceedsMaxTriggerStateCardinality",
27825
- "exceedsMaxEventStatesLimit",
27826
- "destinationPerDayReportingLimitReached"
27827
- ]
27828
- },
27829
- {
27830
- "id": "AttributionReportingSourceRegistrationTimeConfig",
27831
- "experimental": true,
27832
- "type": "string",
27833
- "enum": [
27834
- "include",
27835
- "exclude"
27836
- ]
27837
- },
27838
- {
27839
- "id": "AttributionReportingAggregatableValueDictEntry",
27840
- "experimental": true,
27841
- "type": "object",
27842
- "properties": [
27843
- {
27844
- "name": "key",
27845
- "type": "string"
27846
- },
27847
- {
27848
- "name": "value",
27849
- "description": "number instead of integer because not all uint32 can be represented by\nint",
27850
- "type": "number"
27851
- },
27852
- {
27853
- "name": "filteringId",
27854
- "$ref": "UnsignedInt64AsBase10"
27855
- }
27856
- ]
27857
- },
27858
- {
27859
- "id": "AttributionReportingAggregatableValueEntry",
27860
- "experimental": true,
27861
- "type": "object",
27862
- "properties": [
27863
- {
27864
- "name": "values",
27865
- "type": "array",
27866
- "items": {
27867
- "$ref": "AttributionReportingAggregatableValueDictEntry"
27868
- }
27869
- },
27870
- {
27871
- "name": "filters",
27872
- "$ref": "AttributionReportingFilterPair"
27873
- }
27874
- ]
27875
- },
27876
- {
27877
- "id": "AttributionReportingEventTriggerData",
27878
- "experimental": true,
27879
- "type": "object",
27880
- "properties": [
27881
- {
27882
- "name": "data",
27883
- "$ref": "UnsignedInt64AsBase10"
27884
- },
27885
- {
27886
- "name": "priority",
27887
- "$ref": "SignedInt64AsBase10"
27888
- },
27889
- {
27890
- "name": "dedupKey",
27891
- "optional": true,
27892
- "$ref": "UnsignedInt64AsBase10"
27893
- },
27894
- {
27895
- "name": "filters",
27896
- "$ref": "AttributionReportingFilterPair"
27897
- }
27898
- ]
27899
- },
27900
- {
27901
- "id": "AttributionReportingAggregatableTriggerData",
27902
- "experimental": true,
27903
- "type": "object",
27904
- "properties": [
27905
- {
27906
- "name": "keyPiece",
27907
- "$ref": "UnsignedInt128AsBase16"
27908
- },
27909
- {
27910
- "name": "sourceKeys",
27911
- "type": "array",
27912
- "items": {
27913
- "type": "string"
27914
- }
27915
- },
27916
- {
27917
- "name": "filters",
27918
- "$ref": "AttributionReportingFilterPair"
27919
- }
27920
- ]
27921
- },
27922
- {
27923
- "id": "AttributionReportingAggregatableDedupKey",
27924
- "experimental": true,
27925
- "type": "object",
27926
- "properties": [
27927
- {
27928
- "name": "dedupKey",
27929
- "optional": true,
27930
- "$ref": "UnsignedInt64AsBase10"
27931
- },
27932
- {
27933
- "name": "filters",
27934
- "$ref": "AttributionReportingFilterPair"
27935
- }
27936
- ]
27937
- },
27938
- {
27939
- "id": "AttributionReportingNamedBudgetCandidate",
27940
- "experimental": true,
27941
- "type": "object",
27942
- "properties": [
27329
+ },
27943
27330
  {
27944
- "name": "name",
27331
+ "name": "operationName",
27332
+ "description": "Name of the registered operation to be run.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27945
27333
  "optional": true,
27946
27334
  "type": "string"
27947
27335
  },
27948
27336
  {
27949
- "name": "filters",
27950
- "$ref": "AttributionReportingFilterPair"
27951
- }
27952
- ]
27953
- },
27954
- {
27955
- "id": "AttributionReportingTriggerRegistration",
27956
- "experimental": true,
27957
- "type": "object",
27958
- "properties": [
27337
+ "name": "operationId",
27338
+ "description": "ID of the operation call.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27339
+ "optional": true,
27340
+ "type": "string"
27341
+ },
27959
27342
  {
27960
- "name": "filters",
27961
- "$ref": "AttributionReportingFilterPair"
27343
+ "name": "keepAlive",
27344
+ "description": "Whether or not to keep the worket alive for future run or selectURL\ncalls.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27345
+ "optional": true,
27346
+ "type": "boolean"
27962
27347
  },
27963
27348
  {
27964
- "name": "debugKey",
27349
+ "name": "privateAggregationConfig",
27350
+ "description": "Configures the private aggregation options.\nPresent only for SharedStorageAccessMethods: run and selectURL.",
27965
27351
  "optional": true,
27966
- "$ref": "UnsignedInt64AsBase10"
27352
+ "$ref": "SharedStoragePrivateAggregationConfig"
27967
27353
  },
27968
27354
  {
27969
- "name": "aggregatableDedupKeys",
27970
- "type": "array",
27971
- "items": {
27972
- "$ref": "AttributionReportingAggregatableDedupKey"
27973
- }
27355
+ "name": "serializedData",
27356
+ "description": "The operation's serialized data in bytes (converted to a string).\nPresent only for SharedStorageAccessMethods: run and selectURL.\nTODO(crbug.com/401011862): Consider updating this parameter to binary.",
27357
+ "optional": true,
27358
+ "type": "string"
27974
27359
  },
27975
27360
  {
27976
- "name": "eventTriggerData",
27361
+ "name": "urlsWithMetadata",
27362
+ "description": "Array of candidate URLs' specs, along with any associated metadata.\nPresent only for SharedStorageAccessMethod: selectURL.",
27363
+ "optional": true,
27977
27364
  "type": "array",
27978
27365
  "items": {
27979
- "$ref": "AttributionReportingEventTriggerData"
27366
+ "$ref": "SharedStorageUrlWithMetadata"
27980
27367
  }
27981
27368
  },
27982
27369
  {
27983
- "name": "aggregatableTriggerData",
27984
- "type": "array",
27985
- "items": {
27986
- "$ref": "AttributionReportingAggregatableTriggerData"
27987
- }
27370
+ "name": "urnUuid",
27371
+ "description": "Spec of the URN:UUID generated for a selectURL call.\nPresent only for SharedStorageAccessMethod: selectURL.",
27372
+ "optional": true,
27373
+ "type": "string"
27988
27374
  },
27989
27375
  {
27990
- "name": "aggregatableValues",
27991
- "type": "array",
27992
- "items": {
27993
- "$ref": "AttributionReportingAggregatableValueEntry"
27994
- }
27376
+ "name": "key",
27377
+ "description": "Key for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessMethods: set, append, delete, and\nget.",
27378
+ "optional": true,
27379
+ "type": "string"
27995
27380
  },
27996
27381
  {
27997
- "name": "aggregatableFilteringIdMaxBytes",
27998
- "type": "integer"
27382
+ "name": "value",
27383
+ "description": "Value for a specific entry in an origin's shared storage.\nPresent only for SharedStorageAccessMethods: set and append.",
27384
+ "optional": true,
27385
+ "type": "string"
27999
27386
  },
28000
27387
  {
28001
- "name": "debugReporting",
27388
+ "name": "ignoreIfPresent",
27389
+ "description": "Whether or not to set an entry for a key if that key is already present.\nPresent only for SharedStorageAccessMethod: set.",
27390
+ "optional": true,
28002
27391
  "type": "boolean"
28003
27392
  },
28004
27393
  {
28005
- "name": "aggregationCoordinatorOrigin",
27394
+ "name": "workletOrdinal",
27395
+ "description": "A number denoting the (0-based) order of the worklet's\ncreation relative to all other shared storage worklets created by\ndocuments using the current storage partition.\nPresent only for SharedStorageAccessMethods: addModule, createWorklet.",
28006
27396
  "optional": true,
28007
- "type": "string"
27397
+ "type": "integer"
28008
27398
  },
28009
27399
  {
28010
- "name": "sourceRegistrationTimeConfig",
28011
- "$ref": "AttributionReportingSourceRegistrationTimeConfig"
27400
+ "name": "workletTargetId",
27401
+ "description": "Hex representation of the DevTools token used as the TargetID for the\nassociated shared storage worklet.\nPresent only for SharedStorageAccessMethods: addModule, createWorklet,\nrun, selectURL, and any other SharedStorageAccessMethod when the\nSharedStorageAccessScope is sharedStorageWorklet.",
27402
+ "optional": true,
27403
+ "$ref": "Target.TargetID"
28012
27404
  },
28013
27405
  {
28014
- "name": "triggerContextId",
27406
+ "name": "withLock",
27407
+ "description": "Name of the lock to be acquired, if present.\nOptionally present only for SharedStorageAccessMethods: batchUpdate,\nset, append, delete, and clear.",
28015
27408
  "optional": true,
28016
27409
  "type": "string"
28017
27410
  },
28018
27411
  {
28019
- "name": "aggregatableDebugReportingConfig",
28020
- "$ref": "AttributionReportingAggregatableDebugReportingConfig"
28021
- },
28022
- {
28023
- "name": "scopes",
28024
- "type": "array",
28025
- "items": {
28026
- "type": "string"
28027
- }
27412
+ "name": "batchUpdateId",
27413
+ "description": "If the method has been called as part of a batchUpdate, then this\nnumber identifies the batch to which it belongs.\nOptionally present only for SharedStorageAccessMethods:\nbatchUpdate (required), set, append, delete, and clear.",
27414
+ "optional": true,
27415
+ "type": "string"
28028
27416
  },
28029
27417
  {
28030
- "name": "namedBudgets",
28031
- "type": "array",
28032
- "items": {
28033
- "$ref": "AttributionReportingNamedBudgetCandidate"
28034
- }
27418
+ "name": "batchSize",
27419
+ "description": "Number of modifier methods sent in batch.\nPresent only for SharedStorageAccessMethod: batchUpdate.",
27420
+ "optional": true,
27421
+ "type": "integer"
28035
27422
  }
28036
27423
  ]
28037
27424
  },
28038
27425
  {
28039
- "id": "AttributionReportingEventLevelResult",
28040
- "experimental": true,
28041
- "type": "string",
28042
- "enum": [
28043
- "success",
28044
- "successDroppedLowerPriority",
28045
- "internalError",
28046
- "noCapacityForAttributionDestination",
28047
- "noMatchingSources",
28048
- "deduplicated",
28049
- "excessiveAttributions",
28050
- "priorityTooLow",
28051
- "neverAttributedSource",
28052
- "excessiveReportingOrigins",
28053
- "noMatchingSourceFilterData",
28054
- "prohibitedByBrowserPolicy",
28055
- "noMatchingConfigurations",
28056
- "excessiveReports",
28057
- "falselyAttributedSource",
28058
- "reportWindowPassed",
28059
- "notRegistered",
28060
- "reportWindowNotStarted",
28061
- "noMatchingTriggerData"
28062
- ]
28063
- },
28064
- {
28065
- "id": "AttributionReportingAggregatableResult",
28066
- "experimental": true,
27426
+ "id": "StorageBucketsDurability",
28067
27427
  "type": "string",
28068
27428
  "enum": [
28069
- "success",
28070
- "internalError",
28071
- "noCapacityForAttributionDestination",
28072
- "noMatchingSources",
28073
- "excessiveAttributions",
28074
- "excessiveReportingOrigins",
28075
- "noHistograms",
28076
- "insufficientBudget",
28077
- "insufficientNamedBudget",
28078
- "noMatchingSourceFilterData",
28079
- "notRegistered",
28080
- "prohibitedByBrowserPolicy",
28081
- "deduplicated",
28082
- "reportWindowPassed",
28083
- "excessiveReports"
27429
+ "relaxed",
27430
+ "strict"
28084
27431
  ]
28085
27432
  },
28086
27433
  {
28087
- "id": "AttributionReportingReportResult",
28088
- "experimental": true,
28089
- "type": "string",
28090
- "enum": [
28091
- "sent",
28092
- "prohibited",
28093
- "failedToAssemble",
28094
- "expired"
27434
+ "id": "StorageBucket",
27435
+ "type": "object",
27436
+ "properties": [
27437
+ {
27438
+ "name": "storageKey",
27439
+ "$ref": "SerializedStorageKey"
27440
+ },
27441
+ {
27442
+ "name": "name",
27443
+ "description": "If not specified, it is the default bucket of the storageKey.",
27444
+ "optional": true,
27445
+ "type": "string"
27446
+ }
27447
+ ]
27448
+ },
27449
+ {
27450
+ "id": "StorageBucketInfo",
27451
+ "type": "object",
27452
+ "properties": [
27453
+ {
27454
+ "name": "bucket",
27455
+ "$ref": "StorageBucket"
27456
+ },
27457
+ {
27458
+ "name": "id",
27459
+ "type": "string"
27460
+ },
27461
+ {
27462
+ "name": "expiration",
27463
+ "$ref": "Network.TimeSinceEpoch"
27464
+ },
27465
+ {
27466
+ "name": "quota",
27467
+ "description": "Storage quota (bytes).",
27468
+ "type": "number"
27469
+ },
27470
+ {
27471
+ "name": "persistent",
27472
+ "type": "boolean"
27473
+ },
27474
+ {
27475
+ "name": "durability",
27476
+ "$ref": "StorageBucketsDurability"
27477
+ }
28095
27478
  ]
28096
27479
  },
28097
27480
  {
@@ -28617,41 +28000,6 @@
28617
28000
  }
28618
28001
  ]
28619
28002
  },
28620
- {
28621
- "name": "setAttributionReportingLocalTestingMode",
28622
- "description": "https://wicg.github.io/attribution-reporting-api/",
28623
- "experimental": true,
28624
- "parameters": [
28625
- {
28626
- "name": "enabled",
28627
- "description": "If enabled, noise is suppressed and reports are sent immediately.",
28628
- "type": "boolean"
28629
- }
28630
- ]
28631
- },
28632
- {
28633
- "name": "setAttributionReportingTracking",
28634
- "description": "Enables/disables issuing of Attribution Reporting events.",
28635
- "experimental": true,
28636
- "parameters": [
28637
- {
28638
- "name": "enable",
28639
- "type": "boolean"
28640
- }
28641
- ]
28642
- },
28643
- {
28644
- "name": "sendPendingAttributionReports",
28645
- "description": "Sends all pending Attribution Reports immediately, regardless of their\nscheduled report time.",
28646
- "experimental": true,
28647
- "returns": [
28648
- {
28649
- "name": "numSent",
28650
- "description": "The number of reports that were sent.",
28651
- "type": "integer"
28652
- }
28653
- ]
28654
- },
28655
28003
  {
28656
28004
  "name": "getRelatedWebsiteSets",
28657
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.",
@@ -29013,105 +28361,6 @@
29013
28361
  "type": "string"
29014
28362
  }
29015
28363
  ]
29016
- },
29017
- {
29018
- "name": "attributionReportingSourceRegistered",
29019
- "experimental": true,
29020
- "parameters": [
29021
- {
29022
- "name": "registration",
29023
- "$ref": "AttributionReportingSourceRegistration"
29024
- },
29025
- {
29026
- "name": "result",
29027
- "$ref": "AttributionReportingSourceRegistrationResult"
29028
- }
29029
- ]
29030
- },
29031
- {
29032
- "name": "attributionReportingTriggerRegistered",
29033
- "experimental": true,
29034
- "parameters": [
29035
- {
29036
- "name": "registration",
29037
- "$ref": "AttributionReportingTriggerRegistration"
29038
- },
29039
- {
29040
- "name": "eventLevel",
29041
- "$ref": "AttributionReportingEventLevelResult"
29042
- },
29043
- {
29044
- "name": "aggregatable",
29045
- "$ref": "AttributionReportingAggregatableResult"
29046
- }
29047
- ]
29048
- },
29049
- {
29050
- "name": "attributionReportingReportSent",
29051
- "experimental": true,
29052
- "parameters": [
29053
- {
29054
- "name": "url",
29055
- "type": "string"
29056
- },
29057
- {
29058
- "name": "body",
29059
- "type": "object"
29060
- },
29061
- {
29062
- "name": "result",
29063
- "$ref": "AttributionReportingReportResult"
29064
- },
29065
- {
29066
- "name": "netError",
29067
- "description": "If result is `sent`, populated with net/HTTP status.",
29068
- "optional": true,
29069
- "type": "integer"
29070
- },
29071
- {
29072
- "name": "netErrorName",
29073
- "optional": true,
29074
- "type": "string"
29075
- },
29076
- {
29077
- "name": "httpStatusCode",
29078
- "optional": true,
29079
- "type": "integer"
29080
- }
29081
- ]
29082
- },
29083
- {
29084
- "name": "attributionReportingVerboseDebugReportSent",
29085
- "experimental": true,
29086
- "parameters": [
29087
- {
29088
- "name": "url",
29089
- "type": "string"
29090
- },
29091
- {
29092
- "name": "body",
29093
- "optional": true,
29094
- "type": "array",
29095
- "items": {
29096
- "type": "object"
29097
- }
29098
- },
29099
- {
29100
- "name": "netError",
29101
- "optional": true,
29102
- "type": "integer"
29103
- },
29104
- {
29105
- "name": "netErrorName",
29106
- "optional": true,
29107
- "type": "string"
29108
- },
29109
- {
29110
- "name": "httpStatusCode",
29111
- "optional": true,
29112
- "type": "integer"
29113
- }
29114
- ]
29115
28364
  }
29116
28365
  ]
29117
28366
  },
@@ -31524,6 +30773,10 @@
31524
30773
  {
31525
30774
  "name": "enable",
31526
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."
31527
30780
  }
31528
30781
  ],
31529
30782
  "events": [
@@ -31599,7 +30852,7 @@
31599
30852
  "name": "output",
31600
30853
  "description": "Output or error delivered as delivered to the agent. Missing if `status` is anything other than Success.",
31601
30854
  "optional": true,
31602
- "type": "object"
30855
+ "type": "any"
31603
30856
  },
31604
30857
  {
31605
30858
  "name": "errorText",