devtools-protocol 0.0.1232444 → 0.0.1233758
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.
@@ -1109,6 +1109,7 @@
|
|
1109
1109
|
"Script",
|
1110
1110
|
"ServiceWorker",
|
1111
1111
|
"SharedWorker",
|
1112
|
+
"SpeculationRules",
|
1112
1113
|
"Stylesheet",
|
1113
1114
|
"Track",
|
1114
1115
|
"Video",
|
@@ -24434,7 +24435,8 @@
|
|
24434
24435
|
"PrefetchFailedNetError",
|
24435
24436
|
"PrefetchFailedNon2XX",
|
24436
24437
|
"PrefetchFailedPerPageLimitExceeded",
|
24437
|
-
"
|
24438
|
+
"PrefetchEvictedAfterCandidateRemoved",
|
24439
|
+
"PrefetchEvictedForNewerPrefetch",
|
24438
24440
|
"PrefetchHeldback",
|
24439
24441
|
"PrefetchIneligibleRetryAfter",
|
24440
24442
|
"PrefetchIsPrivacyDecoy",
|
package/package.json
CHANGED
package/pdl/browser_protocol.pdl
CHANGED
@@ -554,6 +554,7 @@ experimental domain Audits
|
|
554
554
|
Script
|
555
555
|
ServiceWorker
|
556
556
|
SharedWorker
|
557
|
+
SpeculationRules
|
557
558
|
Stylesheet
|
558
559
|
Track
|
559
560
|
Video
|
@@ -11576,7 +11577,8 @@ experimental domain Preload
|
|
11576
11577
|
PrefetchFailedNetError
|
11577
11578
|
PrefetchFailedNon2XX
|
11578
11579
|
PrefetchFailedPerPageLimitExceeded
|
11579
|
-
|
11580
|
+
PrefetchEvictedAfterCandidateRemoved
|
11581
|
+
PrefetchEvictedForNewerPrefetch
|
11580
11582
|
PrefetchHeldback
|
11581
11583
|
# A previous prefetch to the origin got a HTTP 503 response with an
|
11582
11584
|
# Retry-After header that has no elapsed yet.
|
package/types/protocol.d.ts
CHANGED
@@ -3291,7 +3291,7 @@ export namespace Protocol {
|
|
3291
3291
|
|
3292
3292
|
export type MixedContentResolutionStatus = ('MixedContentBlocked' | 'MixedContentAutomaticallyUpgraded' | 'MixedContentWarning');
|
3293
3293
|
|
3294
|
-
export type MixedContentResourceType = ('AttributionSrc' | 'Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
|
3294
|
+
export type MixedContentResourceType = ('AttributionSrc' | 'Audio' | 'Beacon' | 'CSPReport' | 'Download' | 'EventSource' | 'Favicon' | 'Font' | 'Form' | 'Frame' | 'Image' | 'Import' | 'Manifest' | 'Ping' | 'PluginData' | 'PluginResource' | 'Prefetch' | 'Resource' | 'Script' | 'ServiceWorker' | 'SharedWorker' | 'SpeculationRules' | 'Stylesheet' | 'Track' | 'Video' | 'Worker' | 'XMLHttpRequest' | 'XSLT');
|
3295
3295
|
|
3296
3296
|
export interface MixedContentIssueDetails {
|
3297
3297
|
/**
|
@@ -17716,7 +17716,7 @@ export namespace Protocol {
|
|
17716
17716
|
* TODO(https://crbug.com/1384419): revisit the list of PrefetchStatus and
|
17717
17717
|
* filter out the ones that aren't necessary to the developers.
|
17718
17718
|
*/
|
17719
|
-
export type PrefetchStatus = ('PrefetchAllowed' | 'PrefetchFailedIneligibleRedirect' | 'PrefetchFailedInvalidRedirect' | 'PrefetchFailedMIMENotSupported' | 'PrefetchFailedNetError' | 'PrefetchFailedNon2XX' | 'PrefetchFailedPerPageLimitExceeded' | '
|
17719
|
+
export type PrefetchStatus = ('PrefetchAllowed' | 'PrefetchFailedIneligibleRedirect' | 'PrefetchFailedInvalidRedirect' | 'PrefetchFailedMIMENotSupported' | 'PrefetchFailedNetError' | 'PrefetchFailedNon2XX' | 'PrefetchFailedPerPageLimitExceeded' | 'PrefetchEvictedAfterCandidateRemoved' | 'PrefetchEvictedForNewerPrefetch' | 'PrefetchHeldback' | 'PrefetchIneligibleRetryAfter' | 'PrefetchIsPrivacyDecoy' | 'PrefetchIsStale' | 'PrefetchNotEligibleBrowserContextOffTheRecord' | 'PrefetchNotEligibleDataSaverEnabled' | 'PrefetchNotEligibleExistingProxy' | 'PrefetchNotEligibleHostIsNonUnique' | 'PrefetchNotEligibleNonDefaultStoragePartition' | 'PrefetchNotEligibleSameSiteCrossOriginPrefetchRequiredProxy' | 'PrefetchNotEligibleSchemeIsNotHttps' | 'PrefetchNotEligibleUserHasCookies' | 'PrefetchNotEligibleUserHasServiceWorker' | 'PrefetchNotEligibleBatterySaverEnabled' | 'PrefetchNotEligiblePreloadingDisabled' | 'PrefetchNotFinishedInTime' | 'PrefetchNotStarted' | 'PrefetchNotUsedCookiesChanged' | 'PrefetchProxyNotAvailable' | 'PrefetchResponseUsed' | 'PrefetchSuccessfulButNotUsed' | 'PrefetchNotUsedProbeFailed');
|
17720
17720
|
|
17721
17721
|
/**
|
17722
17722
|
* Information of headers to be displayed when the header mismatch occurred.
|