Skip to content

Commit

Permalink
Roll protocol to r1279463
Browse files Browse the repository at this point in the history
  • Loading branch information
devtools-bot committed Mar 28, 2024
1 parent 6a229aa commit 409429c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 18 deletions.
30 changes: 15 additions & 15 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@


## Roll protocol to r1279463 — _2024-03-28T04:25:51.000Z_
###### Diff: [`6a229aa...b813677`](https://github.com/ChromeDevTools/devtools-protocol/compare/6a229aa...b813677)

```diff
@@ browser_protocol.pdl:10237 @@ experimental domain Storage
destinationBothLimitsReached
reportingOriginsPerSiteLimitReached
exceedsMaxChannelCapacity
+ exceedsMaxTriggerStateCardinality

experimental event attributionReportingSourceRegistered
parameters
```

## Roll protocol to r1275388 — _2024-03-20T04:26:38.000Z_
###### Diff: [`8241e6c...cf7df3d`](https://github.com/ChromeDevTools/devtools-protocol/compare/8241e6c...cf7df3d)
###### Diff: [`8241e6c...6a229aa`](https://github.com/ChromeDevTools/devtools-protocol/compare/8241e6c...6a229aa)

```diff
@@ browser_protocol.pdl:10148 @@ experimental domain Storage
Expand Down Expand Up @@ -11585,18 +11599,4 @@ index 09c420e..bd277eb 100644
InvalidAllowMethodsPreflightResponse
InvalidAllowHeadersPreflightResponse
MethodDisallowedByPreflightResponse
```

## Roll protocol to r944179 — _2021-11-22T19:15:40.000Z_
###### Diff: [`15f524c...47ce494`](https://github.com/ChromeDevTools/devtools-protocol/compare/15f524c...47ce494)

```diff
@@ browser_protocol.pdl:8930 @@ domain Target
# Proxy bypass list, similar to the one passed to --proxy-bypass-list
optional string proxyBypassList
# An optional list of origins to grant unlimited cross-origin access to.
+ # Parts of the URL other than those constituting origin are ignored.
optional array of string originsWithUniversalNetworkAccess

returns
```
3 changes: 2 additions & 1 deletion json/browser_protocol.json
Original file line number Diff line number Diff line change
Expand Up @@ -20924,7 +20924,8 @@
"destinationGlobalLimitReached",
"destinationBothLimitsReached",
"reportingOriginsPerSiteLimitReached",
"exceedsMaxChannelCapacity"
"exceedsMaxChannelCapacity",
"exceedsMaxTriggerStateCardinality"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "devtools-protocol",
"version": "0.0.1275388",
"version": "0.0.1279463",
"description": "The Chrome DevTools Protocol JSON",
"repository": "https://github.com/ChromeDevTools/devtools-protocol",
"author": "The Chromium Authors",
Expand Down
1 change: 1 addition & 0 deletions pdl/browser_protocol.pdl
Original file line number Diff line number Diff line change
Expand Up @@ -10237,6 +10237,7 @@ experimental domain Storage
destinationBothLimitsReached
reportingOriginsPerSiteLimitReached
exceedsMaxChannelCapacity
exceedsMaxTriggerStateCardinality

experimental event attributionReportingSourceRegistered
parameters
Expand Down
2 changes: 1 addition & 1 deletion types/protocol.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15593,7 +15593,7 @@ export namespace Protocol {
triggerDataMatching: AttributionReportingTriggerDataMatching;
}

export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity' | 'exceedsMaxTriggerStateCardinality');

export type AttributionReportingSourceRegistrationTimeConfig = ('include' | 'exclude');

Expand Down

0 comments on commit 409429c

Please sign in to comment.