lighthouse 11.2.0-dev.20231018 → 11.2.0-dev.20231020

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.
@@ -2657,6 +2657,9 @@
2657
2657
  "core/lib/lh-error.js | urlInvalid": {
2658
2658
  "message": "T̂h́ê ÚR̂Ĺ ŷóû h́âv́ê ṕr̂óv̂íd̂éd̂ áp̂ṕêár̂ś t̂ó b̂é îńv̂ál̂íd̂."
2659
2659
  },
2660
+ "core/lib/navigation-error.js | warningStatusCode": {
2661
+ "message": "L̂íĝh́t̂h́ôúŝé ŵáŝ ún̂áb̂ĺê t́ô ŕêĺîáb̂ĺŷ ĺôád̂ t́ĥé p̂áĝé ŷóû ŕêq́ûéŝt́êd́. M̂ák̂é ŝúr̂é ŷóû ár̂é t̂éŝt́îńĝ t́ĥé ĉór̂ŕêćt̂ ÚR̂Ĺ âńd̂ t́ĥát̂ t́ĥé ŝér̂v́êŕ îś p̂ŕôṕêŕl̂ý r̂éŝṕôńd̂ín̂ǵ t̂ó âĺl̂ ŕêq́ûéŝt́ŝ. (Śt̂át̂úŝ ćôd́ê: {errorCode})"
2662
+ },
2660
2663
  "core/lib/navigation-error.js | warningXhtml": {
2661
2664
  "message": "T̂h́ê ṕâǵê ḾÎḾÊ t́ŷṕê íŝ X́ĤT́M̂Ĺ: L̂íĝh́t̂h́ôúŝé d̂óêś n̂ót̂ éx̂ṕl̂íĉít̂ĺŷ śûṕp̂ór̂t́ t̂h́îś d̂óĉúm̂én̂t́ t̂ýp̂é"
2662
2665
  },
@@ -37,6 +37,7 @@ Array [
37
37
  "bounceTrackingIssueDetails",
38
38
  "clientHintIssueDetails",
39
39
  "contentSecurityPolicyIssueDetails",
40
+ "cookieDeprecationMetadataIssueDetails",
40
41
  "cookieIssueDetails",
41
42
  "corsIssueDetails",
42
43
  "deprecationIssueDetails",
@@ -579,6 +579,7 @@ declare module Artifacts {
579
579
  bounceTrackingIssue: Crdp.Audits.BounceTrackingIssueDetails[];
580
580
  clientHintIssue: Crdp.Audits.ClientHintIssueDetails[];
581
581
  contentSecurityPolicyIssue: Crdp.Audits.ContentSecurityPolicyIssueDetails[];
582
+ cookieDeprecationMetadataIssue: Crdp.Audits.CookieDeprecationMetadataIssueDetails[],
582
583
  corsIssue: Crdp.Audits.CorsIssueDetails[];
583
584
  deprecationIssue: Crdp.Audits.DeprecationIssueDetails[];
584
585
  federatedAuthRequestIssue: Crdp.Audits.FederatedAuthRequestIssueDetails[],
@@ -25,5 +25,9 @@ declare module 'rxjs' {
25
25
  export const delay: any;
26
26
  export const startWith: any;
27
27
  export const switchMap: any;
28
+ export const bufferCount: any;
29
+ export const concatMap: any;
30
+ export const lastValueFrom: any;
31
+ export const takeUntil: any;
28
32
  }
29
33
 
@@ -114,6 +114,9 @@ export type ScreenEmulationSettings = {
114
114
  blankPage?: string;
115
115
  /** Disables collection of the full page screenshot, which can be rather large and possibly leave the page in an undesirable state. */
116
116
  disableFullPageScreenshot?: boolean;
117
+
118
+ /** Disables failing on 404 status code, and instead issues a warning */
119
+ ignoreStatusCode?: boolean;
117
120
  }
118
121
 
119
122
  export interface ConfigSettings extends Required<SharedFlagsSettings> {