devtools-protocol 0.0.1177611 → 0.0.1181874
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.
@@ -993,7 +993,8 @@
|
|
993
993
|
"ExcludeInvalidSameParty",
|
994
994
|
"ExcludeSamePartyCrossPartyContext",
|
995
995
|
"ExcludeDomainNonASCII",
|
996
|
-
"ExcludeThirdPartyCookieBlockedInFirstPartySet"
|
996
|
+
"ExcludeThirdPartyCookieBlockedInFirstPartySet",
|
997
|
+
"ExcludeThirdPartyPhaseout"
|
997
998
|
]
|
998
999
|
},
|
999
1000
|
{
|
@@ -17446,6 +17447,13 @@
|
|
17446
17447
|
"ReturnAsBase64",
|
17447
17448
|
"ReturnAsStream"
|
17448
17449
|
]
|
17450
|
+
},
|
17451
|
+
{
|
17452
|
+
"name": "generateTaggedPDF",
|
17453
|
+
"description": "Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.",
|
17454
|
+
"experimental": true,
|
17455
|
+
"optional": true,
|
17456
|
+
"type": "boolean"
|
17449
17457
|
}
|
17450
17458
|
],
|
17451
17459
|
"returns": [
|
@@ -20016,7 +20024,8 @@
|
|
20016
20024
|
"destinationReportingLimitReached",
|
20017
20025
|
"destinationGlobalLimitReached",
|
20018
20026
|
"destinationBothLimitsReached",
|
20019
|
-
"reportingOriginsPerSiteLimitReached"
|
20027
|
+
"reportingOriginsPerSiteLimitReached",
|
20028
|
+
"exceedsMaxChannelCapacity"
|
20020
20029
|
]
|
20021
20030
|
}
|
20022
20031
|
],
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -483,6 +483,7 @@ experimental domain Audits
|
|
483
483
|
ExcludeSamePartyCrossPartyContext
|
484
484
|
ExcludeDomainNonASCII
|
485
485
|
ExcludeThirdPartyCookieBlockedInFirstPartySet
|
486
|
+
ExcludeThirdPartyPhaseout
|
486
487
|
|
487
488
|
type CookieWarningReason extends string
|
488
489
|
enum
|
@@ -8070,6 +8071,8 @@ domain Page
|
|
8070
8071
|
experimental optional enum transferMode
|
8071
8072
|
ReturnAsBase64
|
8072
8073
|
ReturnAsStream
|
8074
|
+
# Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.
|
8075
|
+
experimental optional boolean generateTaggedPDF
|
8073
8076
|
returns
|
8074
8077
|
# Base64-encoded pdf data. Empty if |returnAsStream| is specified.
|
8075
8078
|
binary data
|
@@ -9720,6 +9723,7 @@ experimental domain Storage
|
|
9720
9723
|
destinationGlobalLimitReached
|
9721
9724
|
destinationBothLimitsReached
|
9722
9725
|
reportingOriginsPerSiteLimitReached
|
9726
|
+
exceedsMaxChannelCapacity
|
9723
9727
|
|
9724
9728
|
# TODO(crbug.com/1458532): Add other Attribution Reporting events, e.g.
|
9725
9729
|
# trigger registration.
|
package/types/protocol.d.ts
CHANGED
@@ -3276,7 +3276,7 @@ export namespace Protocol {
|
|
3276
3276
|
frameId: Page.FrameId;
|
3277
3277
|
}
|
3278
3278
|
|
3279
|
-
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet');
|
3279
|
+
export type CookieExclusionReason = ('ExcludeSameSiteUnspecifiedTreatedAsLax' | 'ExcludeSameSiteNoneInsecure' | 'ExcludeSameSiteLax' | 'ExcludeSameSiteStrict' | 'ExcludeInvalidSameParty' | 'ExcludeSamePartyCrossPartyContext' | 'ExcludeDomainNonASCII' | 'ExcludeThirdPartyCookieBlockedInFirstPartySet' | 'ExcludeThirdPartyPhaseout');
|
3280
3280
|
|
3281
3281
|
export type CookieWarningReason = ('WarnSameSiteUnspecifiedCrossSiteContext' | 'WarnSameSiteNoneInsecure' | 'WarnSameSiteUnspecifiedLaxAllowUnsafe' | 'WarnSameSiteStrictLaxDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeStrict' | 'WarnSameSiteStrictCrossDowngradeLax' | 'WarnSameSiteLaxCrossDowngradeStrict' | 'WarnSameSiteLaxCrossDowngradeLax' | 'WarnAttributeValueExceedsMaxSize' | 'WarnDomainNonASCII' | 'WarnThirdPartyPhaseout');
|
3282
3282
|
|
@@ -13584,6 +13584,10 @@ export namespace Protocol {
|
|
13584
13584
|
* return as stream (PrintToPDFRequestTransferMode enum)
|
13585
13585
|
*/
|
13586
13586
|
transferMode?: ('ReturnAsBase64' | 'ReturnAsStream');
|
13587
|
+
/**
|
13588
|
+
* Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.
|
13589
|
+
*/
|
13590
|
+
generateTaggedPDF?: boolean;
|
13587
13591
|
}
|
13588
13592
|
|
13589
13593
|
export interface PrintToPDFResponse {
|
@@ -15077,7 +15081,7 @@ export namespace Protocol {
|
|
15077
15081
|
debugKey?: UnsignedInt64AsBase10;
|
15078
15082
|
}
|
15079
15083
|
|
15080
|
-
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached');
|
15084
|
+
export type AttributionReportingSourceRegistrationResult = ('success' | 'internalError' | 'insufficientSourceCapacity' | 'insufficientUniqueDestinationCapacity' | 'excessiveReportingOrigins' | 'prohibitedByBrowserPolicy' | 'successNoised' | 'destinationReportingLimitReached' | 'destinationGlobalLimitReached' | 'destinationBothLimitsReached' | 'reportingOriginsPerSiteLimitReached' | 'exceedsMaxChannelCapacity');
|
15081
15085
|
|
15082
15086
|
export interface GetStorageKeyForFrameRequest {
|
15083
15087
|
frameId: Page.FrameId;
|